TEST 123 testing
h1b_2018 = read.csv(file = "./data/dataset.csv")
## this is a test to read and open the dataset
## I created a folder in our project called "data"
## then inside it I downloaded the dataset and called it "dataset.csv"
## then inside it I downloaded the dataset and called it "dataset.csv"
####select the 16 variables which we are interested in
h1b_18_filter = h1b_2018 %>%
janitor::clean_names() %>%
select(case_number, visa_class, case_status, employer_name, employer_country, employer_city, employer_state,
naics_code, soc_code, soc_name, total_workers, employment_start_date, employment_end_date, full_time_position,
prevailing_wage, pw_unit_of_pay, worksite_city, worksite_state, h1b_dependent) %>%
filter(case_status == "CERTIFIED",
visa_class == "H-1B",
employer_country == "UNITED STATES OF AMERICA") %>%
select(-visa_class, -case_status, -employer_country)
library(ggplot2)
library(plotly)
h1b_18_filter%>%
group_by(employer_state) %>%
summarize(state_n = n())
## # A tibble: 55 x 2
## employer_state state_n
## <fct> <int>
## 1 AK 74
## 2 AL 1177
## 3 AR 2531
## 4 AZ 3842
## 5 CA 95700
## 6 CO 3208
## 7 CT 5142
## 8 DC 1706
## 9 DE 2370
## 10 FL 16738
## # ... with 45 more rows
h1b_location =
h1b_18_filter %>%
select(case_number, employer_city, employer_state, worksite_city, worksite_state)
h1b_employer_50 = h1b_location %>%
filter(!employer_state %in% c("DC", "GU", "MP", "PR", "VI")) %>%
group_by(employer_state) %>%
summarize(employer_number = n()) %>%
rename("state" = "employer_state")
h1b_worksite_50 = h1b_location %>%
filter(!worksite_state %in% c("DC", "GU", "MH", "MP", "PR", "VI")) %>%
group_by(worksite_state) %>%
summarize(worksite_number = n()) %>%
rename("state" = "worksite_state")
h1b_location_data_big =
full_join(h1b_employer_50, h1b_worksite_50, by = "state") %>%
filter(worksite_number >= 2000 | employer_number >= 2000)
## Warning: Column `state` joining factors with different levels, coercing to
## character vector
h1b_location_data_small =
full_join(h1b_employer_50, h1b_worksite_50, by = "state") %>%
filter(worksite_number < 2000 & employer_number < 2000) %>%
mutate(employer_number = sum(employer_number),
worksite_number = sum(worksite_number)) %>%
mutate(state = "Others") %>%
select(state, employer_number, worksite_number)
## Warning: Column `state` joining factors with different levels, coercing to
## character vector
others = unique(h1b_location_data_small)
h1b_location_data =
bind_rows(h1b_location_data_big , others)
h1b_location_data %>%
mutate(state = fct_reorder(state, worksite_number)) %>%
<<<<<<< HEAD
plot_ly(x = ~state, y = ~employer_number, type = 'bar', name = 'headquater location') %>%
add_trace(y = ~worksite_number, name = 'work location') %>%
layout(yaxis = list(title = 'Count'), barmode = 'group', legend = list(x = 0.1, y = 0.9))
=======
plot_ly(x = ~state, y = ~employer_number, type = 'bar', name = 'headquater location') %>%
add_trace(y = ~worksite_number, name = 'work location') %>%
layout(yaxis = list(title = 'Count'), barmode = 'group', legend = list(x = 0.1, y = 0.9))
state_ws =
h1b_2018 %>%
group_by(worksite_state) %>%
summarize(n = n())
state_ws$hover <- with(state_ws, paste("State", worksite_state, "<br>", "Number", n))
g2 <- list(
scope = 'usa',
projection = list(type = 'albers usa'),
showlakes = TRUE,
lakecolor = toRGB('white')
)
map_2 <- plot_geo(state_ws, locationmode = 'USA-states') %>%
add_trace(
z = ~n, text = ~hover, locations = ~worksite_state,
color = ~n, colors = 'Greens'
) %>%
colorbar(title = "H1b Case Number") %>%
layout(
title = '2018 US H1b by worksite State',
geo = g2
)
map_2
state_number =
h1b_2018 %>%
group_by(employer_state) %>%
summarize(n = n())
state_number$hover <- with(state_number, paste("State", employer_state, "<br>", "Number", n))
l <- list(color = toRGB("white"), width = 2)
g <- list(
scope = 'usa',
projection = list(type = 'albers usa'),
showlakes = TRUE,
lakecolor = toRGB('white')
)
p <- plot_geo(state_number, locationmode = 'USA-states') %>%
add_trace(
z = ~n, text = ~hover, locations = ~employer_state,
color = ~n, colors = 'Purples'
) %>%
colorbar(title = "Millions USD") %>%
layout(
title = '2018 US H1b by State',
geo = g
)
p
<<<<<<< HEAD
h1b_location =
h1b_18_filter %>%
select(case_number, employer_city, employer_state, worksite_city, worksite_state)
h1b_location_50 = h1b_location %>%
filter(employer_state != c("DC", "GU", "MP", "PR", "VI"))
## Warning in `!=.default`(employer_state, c("DC", "GU", "MP", "PR", "VI")):
## longer object length is not a multiple of shorter object length
## Warning in is.na(e1) | is.na(e2): longer object length is not a multiple of
## shorter object length
h1b_location_commonwealth = h1b_location %>%
filter(employer_state == c("DC", "GU", "MP", "PR", "VI"))
## Warning in `==.default`(employer_state, c("DC", "GU", "MP", "PR", "VI")):
## longer object length is not a multiple of shorter object length
## Warning in `==.default`(employer_state, c("DC", "GU", "MP", "PR", "VI")):
## longer object length is not a multiple of shorter object length
h1b_location_50 %>%
group_by(employer_state) %>%
summarize(n = n()) %>%
mutate(employer_state = fct_reorder(employer_state, n)) %>%
plot_ly(x = ~employer_state, y = ~n, color = ~employer_state, type = "bar")
## Warning in RColorBrewer::brewer.pal(N, "Set2"): n too large, allowed maximum for palette Set2 is 8
## Returning the palette you asked for with that many colors
## Warning in RColorBrewer::brewer.pal(N, "Set2"): n too large, allowed maximum for palette Set2 is 8
## Returning the palette you asked for with that many colors
h1b_location_commonwealth %>%
group_by(employer_state) %>%
=======
##Graph showing top 10 cities with H1b cases in California state (worksite)
city_ca =
h1b_2018 %>%
filter(worksite_state == 'CA') %>%
group_by(worksite_city) %>%
>>>>>>> 85f70cb7244f7ab6fa2c4ee2931851de7c6549bd
summarize(n = n()) %>%
filter(min_rank(desc(n)) <= 10)
city_ca %>%
mutate(worksite_city = fct_reorder(worksite_city, n)) %>%
plot_ly(x = ~worksite_city, y = ~n, color = ~worksite_city, type = "bar")
## Warning in RColorBrewer::brewer.pal(N, "Set2"): n too large, allowed maximum for palette Set2 is 8
## Returning the palette you asked for with that many colors
## Warning in RColorBrewer::brewer.pal(N, "Set2"): n too large, allowed maximum for palette Set2 is 8
## Returning the palette you asked for with that many colors
<<<<<<< HEAD
=======
h1b_soc = h1b_18_filter %>%
select(case_number, employer_name, naics_code, soc_code, soc_name, total_workers, employment_start_date, employment_end_date, full_time_position)
h1b_soc_con = h1b_soc %>%
select(employer_name, total_workers) %>%
group_by(employer_name) %>%
summarize(total = n()) %>%
arrange(desc(total)) %>%
top_n(15)
## Selecting by total
h1b_soc_con
## # A tibble: 15 x 2
## employer_name total
## <fct> <int>
## 1 DELOITTE CONSULTING LLP 15596
## 2 TATA CONSULTANCY SERVICES LIMITED 14489
## 3 INFOSYS LIMITED 11547
## 4 COGNIZANT TECHNOLOGY SOLUTIONS US CORP 10189
## 5 ERNST & YOUNG U.S. LLP 6760
## 6 ACCENTURE LLP 6092
## 7 WIPRO LIMITED 6077
## 8 TECH MAHINDRA (AMERICAS),INC. 5831
## 9 CAPGEMINI AMERICA INC 5594
## 10 MICROSOFT CORPORATION 5417
## 11 GOOGLE LLC 4599
## 12 IBM CORPORATION 4033
## 13 AMAZON.COM SERVICES, INC. 3704
## 14 SYNTEL INC 3125
## 15 LARSEN & TOUBRO INFOTECH LIMITED 2988
h1b_soc_con %>%
ggplot(aes(x = reorder(employer_name, total), y = total)) +
geom_bar(stat = 'identity') +
coord_flip() +
labs(x = 'Companies', y = 'Total Workers',
title = 'Top 15 companies who has the most H1B Visa Workers')
Regrouping SOC codes broadly - use bls website as source
h1b_soc_ind = h1b_soc %>%
select(soc_code) %>%
mutate(soc_code_new = str_remove_all(soc_code, '-'),
soc_code_new = as.integer(soc_code_new)) %>%
na.omit() %>%
mutate(soc_code_gen = case_when(
soc_code_new >= 110000 & soc_code_new < 120000 ~ "Management",
soc_code_new >= 130000 & soc_code_new < 140000 ~"Business, Finance",
soc_code_new >= 150000 & soc_code_new < 160000 ~ "Computer, Math",
soc_code_new >= 170000 & soc_code_new < 180000 ~ "Architecture, Engineer",
soc_code_new >= 190000 & soc_code_new < 200000 ~ "Life, Physcial, Social Science",
soc_code_new >= 210000 & soc_code_new < 220000 ~ "Social Service",
soc_code_new >= 230000 & soc_code_new < 240000 ~ "Legal",
soc_code_new >= 250000 & soc_code_new < 260000 ~ "Education, Training",
soc_code_new >= 270000 & soc_code_new < 280000 ~ "Media, Design",
soc_code_new >= 290000 & soc_code_new < 300000 ~ "Healthcare Practitioner",
soc_code_new >= 410000 & soc_code_new < 420000 ~ "Sales",
TRUE ~ "Others")) %>%
mutate(soc_code_gen = as.factor(soc_code_gen))
## Warning: NAs introduced by coercion
h1b_soc_ind
## soc_code soc_code_new soc_code_gen
## 1 11-3021 113021 Management
## 2 15-1132 151132 Computer, Math
## 3 15-1143 151143 Computer, Math
## 4 13-1111 131111 Business, Finance
## 5 15-1132 151132 Computer, Math
## 6 11-9041 119041 Management
## 7 15-1142 151142 Computer, Math
## 8 15-1199 151199 Computer, Math
## 9 15-1132 151132 Computer, Math
## 10 13-1081 131081 Business, Finance
## 11 15-1132 151132 Computer, Math
## 12 15-1132 151132 Computer, Math
## 13 13-2011 132011 Business, Finance
## 14 15-1132 151132 Computer, Math
## 15 15-1133 151133 Computer, Math
## 16 15-1132 151132 Computer, Math
## 17 17-2071 172071 Architecture, Engineer
## 18 15-1132 151132 Computer, Math
## 19 11-2022 112022 Management
## 20 15-1132 151132 Computer, Math
## 21 29-1063 291063 Healthcare Practitioner
## 22 15-1132 151132 Computer, Math
## 23 15-1121 151121 Computer, Math
## 24 15-1133 151133 Computer, Math
## 25 15-1132 151132 Computer, Math
## 26 15-1132 151132 Computer, Math
## 27 15-1132 151132 Computer, Math
## 28 15-1132 151132 Computer, Math
## 29 15-1132 151132 Computer, Math
## 30 15-1132 151132 Computer, Math
## 31 13-2011 132011 Business, Finance
## 32 11-3021 113021 Management
## 33 15-1132 151132 Computer, Math
## 34 15-1199 151199 Computer, Math
## 35 15-1132 151132 Computer, Math
## 36 19-3011 193011 Life, Physcial, Social Science
## 37 15-1132 151132 Computer, Math
## 38 15-2031 152031 Computer, Math
## 39 29-1021 291021 Healthcare Practitioner
## 40 15-1132 151132 Computer, Math
## 41 15-1132 151132 Computer, Math
## 42 15-1142 151142 Computer, Math
## 43 15-1132 151132 Computer, Math
## 44 15-1199 151199 Computer, Math
## 45 15-1132 151132 Computer, Math
## 46 27-2022 272022 Media, Design
## 47 17-2141 172141 Architecture, Engineer
## 48 15-1121 151121 Computer, Math
## 49 15-1121 151121 Computer, Math
## 50 15-1132 151132 Computer, Math
## 51 27-3022 273022 Media, Design
## 52 15-2031 152031 Computer, Math
## 53 11-3051 113051 Management
## 54 13-2011 132011 Business, Finance
## 55 15-1133 151133 Computer, Math
## 56 15-1199 151199 Computer, Math
## 57 15-1142 151142 Computer, Math
## 58 15-1132 151132 Computer, Math
## 59 15-1131 151131 Computer, Math
## 60 15-1132 151132 Computer, Math
## 61 17-2072 172072 Architecture, Engineer
## 62 15-1132 151132 Computer, Math
## 63 15-1132 151132 Computer, Math
## 64 15-1199 151199 Computer, Math
## 65 15-1142 151142 Computer, Math
## 66 15-1141 151141 Computer, Math
## 67 15-1121 151121 Computer, Math
## 68 15-1132 151132 Computer, Math
## 69 15-1141 151141 Computer, Math
## 70 15-2041 152041 Computer, Math
## 71 15-1132 151132 Computer, Math
## 72 15-1199 151199 Computer, Math
## 73 15-1132 151132 Computer, Math
## 74 11-9013 119013 Management
## 75 15-1132 151132 Computer, Math
## 76 15-1199 151199 Computer, Math
## 77 15-1199 151199 Computer, Math
## 78 13-1111 131111 Business, Finance
## 79 15-1199 151199 Computer, Math
## 80 15-1132 151132 Computer, Math
## 81 15-1132 151132 Computer, Math
## 82 13-2051 132051 Business, Finance
## 83 19-2012 192012 Life, Physcial, Social Science
## 84 15-1133 151133 Computer, Math
## 85 15-1131 151131 Computer, Math
## 86 15-1132 151132 Computer, Math
## 87 13-1161 131161 Business, Finance
## 88 15-1133 151133 Computer, Math
## 89 13-2011 132011 Business, Finance
## 90 19-1042 191042 Life, Physcial, Social Science
## 91 15-1132 151132 Computer, Math
## 92 17-2141 172141 Architecture, Engineer
## 93 15-1121 151121 Computer, Math
## 94 15-1132 151132 Computer, Math
## 95 15-1121 151121 Computer, Math
## 96 15-1199 151199 Computer, Math
## 97 11-3021 113021 Management
## 98 21-1013 211013 Social Service
## 99 15-1141 151141 Computer, Math
## 100 15-1121 151121 Computer, Math
## 101 15-1121 151121 Computer, Math
## 102 15-1132 151132 Computer, Math
## 103 15-1121 151121 Computer, Math
## 104 15-1132 151132 Computer, Math
## 105 15-1132 151132 Computer, Math
## 106 15-1132 151132 Computer, Math
## 107 15-1132 151132 Computer, Math
## 108 15-1132 151132 Computer, Math
## 109 15-1132 151132 Computer, Math
## 110 13-1111 131111 Business, Finance
## 111 11-3021 113021 Management
## 112 15-1132 151132 Computer, Math
## 113 15-1199 151199 Computer, Math
## 114 15-1131 151131 Computer, Math
## 115 17-2071 172071 Architecture, Engineer
## 116 11-9013 119013 Management
## 117 15-1134 151134 Computer, Math
## 118 15-1142 151142 Computer, Math
## 119 11-3021 113021 Management
## 120 15-2031 152031 Computer, Math
## 121 15-1132 151132 Computer, Math
## 122 15-1131 151131 Computer, Math
## 123 15-1141 151141 Computer, Math
## 124 15-1132 151132 Computer, Math
## 125 15-1132 151132 Computer, Math
## 126 17-2061 172061 Architecture, Engineer
## 127 15-1131 151131 Computer, Math
## 128 15-1121 151121 Computer, Math
## 129 13-2099 132099 Business, Finance
## 130 15-1132 151132 Computer, Math
## 131 15-1199 151199 Computer, Math
## 132 15-1199 151199 Computer, Math
## 133 15-1132 151132 Computer, Math
## 134 19-1042 191042 Life, Physcial, Social Science
## 135 15-1132 151132 Computer, Math
## 136 43-9111 439111 Others
## 137 13-2051 132051 Business, Finance
## 138 13-2099 132099 Business, Finance
## 139 15-1199 151199 Computer, Math
## 140 13-1111 131111 Business, Finance
## 141 15-1133 151133 Computer, Math
## 142 15-1199 151199 Computer, Math
## 143 15-1132 151132 Computer, Math
## 144 15-1132 151132 Computer, Math
## 145 15-2031 152031 Computer, Math
## 146 15-1133 151133 Computer, Math
## 147 15-1132 151132 Computer, Math
## 148 17-2051 172051 Architecture, Engineer
## 149 13-1161 131161 Business, Finance
## 150 15-1121 151121 Computer, Math
## 151 15-1131 151131 Computer, Math
## 152 15-1142 151142 Computer, Math
## 153 11-1021 111021 Management
## 154 49-9062 499062 Others
## 155 15-1142 151142 Computer, Math
## 156 15-1132 151132 Computer, Math
## 157 15-1132 151132 Computer, Math
## 158 17-2199 172199 Architecture, Engineer
## 159 13-1151 131151 Business, Finance
## 160 15-1132 151132 Computer, Math
## 161 13-1111 131111 Business, Finance
## 162 15-1199 151199 Computer, Math
## 163 15-1132 151132 Computer, Math
## 164 15-1132 151132 Computer, Math
## 165 15-1199 151199 Computer, Math
## 166 13-2051 132051 Business, Finance
## 167 15-1132 151132 Computer, Math
## 168 15-1132 151132 Computer, Math
## 169 29-1021 291021 Healthcare Practitioner
## 170 15-1131 151131 Computer, Math
## 171 15-1133 151133 Computer, Math
## 172 15-1132 151132 Computer, Math
## 173 15-1142 151142 Computer, Math
## 174 15-1121 151121 Computer, Math
## 175 13-2011 132011 Business, Finance
## 176 29-1062 291062 Healthcare Practitioner
## 177 15-1121 151121 Computer, Math
## 178 15-1132 151132 Computer, Math
## 179 15-1141 151141 Computer, Math
## 180 15-1121 151121 Computer, Math
## 181 15-1121 151121 Computer, Math
## 182 15-1122 151122 Computer, Math
## 183 15-1132 151132 Computer, Math
## 184 15-1132 151132 Computer, Math
## 185 15-1131 151131 Computer, Math
## 186 15-1121 151121 Computer, Math
## 187 29-1123 291123 Healthcare Practitioner
## 188 15-1132 151132 Computer, Math
## 189 15-1132 151132 Computer, Math
## 190 15-1132 151132 Computer, Math
## 191 15-1132 151132 Computer, Math
## 192 43-9111 439111 Others
## 193 13-2051 132051 Business, Finance
## 194 13-1161 131161 Business, Finance
## 195 13-1081 131081 Business, Finance
## 196 15-1121 151121 Computer, Math
## 197 15-1132 151132 Computer, Math
## 198 17-2072 172072 Architecture, Engineer
## 199 13-1161 131161 Business, Finance
## 200 27-1011 271011 Media, Design
## 201 15-1132 151132 Computer, Math
## 202 15-1132 151132 Computer, Math
## 203 15-1141 151141 Computer, Math
## 204 15-1132 151132 Computer, Math
## 205 15-1133 151133 Computer, Math
## 206 15-1141 151141 Computer, Math
## 207 13-1111 131111 Business, Finance
## 208 15-1199 151199 Computer, Math
## 209 15-1199 151199 Computer, Math
## 210 17-2131 172131 Architecture, Engineer
## 211 13-1111 131111 Business, Finance
## 212 27-1021 271021 Media, Design
## 213 15-1133 151133 Computer, Math
## 214 15-1121 151121 Computer, Math
## 215 13-1141 131141 Business, Finance
## 216 15-1134 151134 Computer, Math
## 217 17-2072 172072 Architecture, Engineer
## 218 27-3022 273022 Media, Design
## 219 15-1199 151199 Computer, Math
## 220 15-1121 151121 Computer, Math
## 221 15-1121 151121 Computer, Math
## 222 15-1132 151132 Computer, Math
## 223 13-2051 132051 Business, Finance
## 224 15-1121 151121 Computer, Math
## 225 29-1122 291122 Healthcare Practitioner
## 226 15-1121 151121 Computer, Math
## 227 13-2051 132051 Business, Finance
## 228 15-1199 151199 Computer, Math
## 229 15-1132 151132 Computer, Math
## 230 15-1199 151199 Computer, Math
## 231 15-1133 151133 Computer, Math
## 232 15-1152 151152 Computer, Math
## 233 13-1111 131111 Business, Finance
## 234 15-1199 151199 Computer, Math
## 235 15-1121 151121 Computer, Math
## 236 15-1132 151132 Computer, Math
## 237 15-1132 151132 Computer, Math
## 238 15-1132 151132 Computer, Math
## 239 15-1132 151132 Computer, Math
## 240 17-1012 171012 Architecture, Engineer
## 241 29-2011 292011 Healthcare Practitioner
## 242 15-1142 151142 Computer, Math
## 243 15-1121 151121 Computer, Math
## 244 15-1132 151132 Computer, Math
## 245 15-2031 152031 Computer, Math
## 246 15-1133 151133 Computer, Math
## 247 13-1111 131111 Business, Finance
## 248 15-1141 151141 Computer, Math
## 249 13-1111 131111 Business, Finance
## 250 15-2031 152031 Computer, Math
## 251 13-2051 132051 Business, Finance
## 252 15-1131 151131 Computer, Math
## 253 15-1133 151133 Computer, Math
## 254 17-2061 172061 Architecture, Engineer
## 255 15-1199 151199 Computer, Math
## 256 15-1132 151132 Computer, Math
## 257 15-1132 151132 Computer, Math
## 258 15-1132 151132 Computer, Math
## 259 15-1132 151132 Computer, Math
## 260 17-2072 172072 Architecture, Engineer
## 261 13-1161 131161 Business, Finance
## 262 11-3061 113061 Management
## 263 15-1132 151132 Computer, Math
## 264 15-1132 151132 Computer, Math
## 265 15-1121 151121 Computer, Math
## 266 29-1123 291123 Healthcare Practitioner
## 267 15-1132 151132 Computer, Math
## 268 15-1121 151121 Computer, Math
## 269 17-2072 172072 Architecture, Engineer
## 270 15-1131 151131 Computer, Math
## 271 15-1132 151132 Computer, Math
## 272 15-1199 151199 Computer, Math
## 273 15-1141 151141 Computer, Math
## 274 15-1121 151121 Computer, Math
## 275 15-1199 151199 Computer, Math
## 276 15-1132 151132 Computer, Math
## 277 15-1132 151132 Computer, Math
## 278 15-1142 151142 Computer, Math
## 279 15-1121 151121 Computer, Math
## 280 15-1133 151133 Computer, Math
## 281 15-1132 151132 Computer, Math
## 282 15-1199 151199 Computer, Math
## 283 15-1132 151132 Computer, Math
## 284 17-2141 172141 Architecture, Engineer
## 285 15-1121 151121 Computer, Math
## 286 19-4061 194061 Life, Physcial, Social Science
## 287 15-1132 151132 Computer, Math
## 288 15-1132 151132 Computer, Math
## 289 15-1132 151132 Computer, Math
## 290 17-2112 172112 Architecture, Engineer
## 291 15-1132 151132 Computer, Math
## 292 15-1132 151132 Computer, Math
## 293 15-1111 151111 Computer, Math
## 294 15-1133 151133 Computer, Math
## 295 15-1132 151132 Computer, Math
## 296 15-1132 151132 Computer, Math
## 297 15-2031 152031 Computer, Math
## 298 15-1132 151132 Computer, Math
## 299 15-1133 151133 Computer, Math
## 300 17-2051 172051 Architecture, Engineer
## 301 11-1021 111021 Management
## 302 15-1121 151121 Computer, Math
## 303 15-1132 151132 Computer, Math
## 304 15-1132 151132 Computer, Math
## 305 17-2081 172081 Architecture, Engineer
## 306 15-1121 151121 Computer, Math
## 307 17-2072 172072 Architecture, Engineer
## 308 15-2031 152031 Computer, Math
## 309 15-1132 151132 Computer, Math
## 310 15-1199 151199 Computer, Math
## 311 15-1199 151199 Computer, Math
## 312 25-1071 251071 Education, Training
## 313 19-2099 192099 Life, Physcial, Social Science
## 314 15-1131 151131 Computer, Math
## 315 15-1122 151122 Computer, Math
## 316 19-1029 191029 Life, Physcial, Social Science
## 317 17-2112 172112 Architecture, Engineer
## 318 15-1132 151132 Computer, Math
## 319 15-1132 151132 Computer, Math
## 320 25-2031 252031 Education, Training
## 321 13-2051 132051 Business, Finance
## 322 17-2071 172071 Architecture, Engineer
## 323 15-1199 151199 Computer, Math
## 324 15-1121 151121 Computer, Math
## 325 17-2141 172141 Architecture, Engineer
## 326 15-1121 151121 Computer, Math
## 327 15-1131 151131 Computer, Math
## 328 17-2061 172061 Architecture, Engineer
## 329 15-1132 151132 Computer, Math
## 330 15-1132 151132 Computer, Math
## 331 15-1131 151131 Computer, Math
## 332 15-1199 151199 Computer, Math
## 333 15-1132 151132 Computer, Math
## 334 15-1121 151121 Computer, Math
## 335 11-9041 119041 Management
## 336 15-1121 151121 Computer, Math
## 337 29-1063 291063 Healthcare Practitioner
## 338 15-1132 151132 Computer, Math
## 339 15-1199 151199 Computer, Math
## 340 13-1161 131161 Business, Finance
## 341 15-1121 151121 Computer, Math
## 342 19-1042 191042 Life, Physcial, Social Science
## 343 17-1011 171011 Architecture, Engineer
## 344 15-1199 151199 Computer, Math
## 345 13-1111 131111 Business, Finance
## 346 15-1131 151131 Computer, Math
## 347 15-1132 151132 Computer, Math
## 348 13-1111 131111 Business, Finance
## 349 29-1069 291069 Healthcare Practitioner
## 350 17-1011 171011 Architecture, Engineer
## 351 15-1132 151132 Computer, Math
## 352 15-1131 151131 Computer, Math
## 353 15-1141 151141 Computer, Math
## 354 15-1132 151132 Computer, Math
## 355 13-1161 131161 Business, Finance
## 356 15-1132 151132 Computer, Math
## 357 27-1029 271029 Media, Design
## 358 11-2022 112022 Management
## 359 17-1011 171011 Architecture, Engineer
## 360 13-2099 132099 Business, Finance
## 361 13-1081 131081 Business, Finance
## 362 15-1134 151134 Computer, Math
## 363 19-1011 191011 Life, Physcial, Social Science
## 364 15-1199 151199 Computer, Math
## 365 15-1133 151133 Computer, Math
## 366 15-1143 151143 Computer, Math
## 367 15-1199 151199 Computer, Math
## 368 15-1132 151132 Computer, Math
## 369 15-1132 151132 Computer, Math
## 370 15-1132 151132 Computer, Math
## 371 17-2072 172072 Architecture, Engineer
## 372 15-1199 151199 Computer, Math
## 373 17-2051 172051 Architecture, Engineer
## 374 15-1132 151132 Computer, Math
## 375 17-2141 172141 Architecture, Engineer
## 376 15-1132 151132 Computer, Math
## 377 15-1132 151132 Computer, Math
## 378 15-1142 151142 Computer, Math
## 379 15-1121 151121 Computer, Math
## 380 15-1199 151199 Computer, Math
## 381 15-1121 151121 Computer, Math
## 382 19-4021 194021 Life, Physcial, Social Science
## 383 15-1199 151199 Computer, Math
## 384 15-1121 151121 Computer, Math
## 385 15-1121 151121 Computer, Math
## 386 13-2011 132011 Business, Finance
## 387 15-2041 152041 Computer, Math
## 388 15-1199 151199 Computer, Math
## 389 15-2011 152011 Computer, Math
## 390 15-1121 151121 Computer, Math
## 391 25-1011 251011 Education, Training
## 392 17-2112 172112 Architecture, Engineer
## 393 15-1121 151121 Computer, Math
## 394 15-1122 151122 Computer, Math
## 395 15-1132 151132 Computer, Math
## 396 13-1111 131111 Business, Finance
## 397 15-1199 151199 Computer, Math
## 398 15-1143 151143 Computer, Math
## 399 15-1199 151199 Computer, Math
## 400 15-1132 151132 Computer, Math
## 401 15-1132 151132 Computer, Math
## 402 15-1132 151132 Computer, Math
## 403 19-1042 191042 Life, Physcial, Social Science
## 404 15-1141 151141 Computer, Math
## 405 27-1022 271022 Media, Design
## 406 15-1132 151132 Computer, Math
## 407 23-1011 231011 Legal
## 408 15-1199 151199 Computer, Math
## 409 13-1199 131199 Business, Finance
## 410 19-1042 191042 Life, Physcial, Social Science
## 411 15-2031 152031 Computer, Math
## 412 15-1132 151132 Computer, Math
## 413 13-1051 131051 Business, Finance
## 414 15-1121 151121 Computer, Math
## 415 13-1151 131151 Business, Finance
## 416 21-1012 211012 Social Service
## 417 15-1132 151132 Computer, Math
## 418 15-1132 151132 Computer, Math
## 419 15-1132 151132 Computer, Math
## 420 15-1132 151132 Computer, Math
## 421 15-1121 151121 Computer, Math
## 422 15-1132 151132 Computer, Math
## 423 15-2031 152031 Computer, Math
## 424 15-1142 151142 Computer, Math
## 425 15-1199 151199 Computer, Math
## 426 13-2099 132099 Business, Finance
## 427 15-2041 152041 Computer, Math
## 428 15-1199 151199 Computer, Math
## 429 15-1132 151132 Computer, Math
## 430 15-1199 151199 Computer, Math
## 431 15-2031 152031 Computer, Math
## 432 15-1121 151121 Computer, Math
## 433 15-1121 151121 Computer, Math
## 434 29-1021 291021 Healthcare Practitioner
## 435 25-1066 251066 Education, Training
## 436 29-1021 291021 Healthcare Practitioner
## 437 15-1132 151132 Computer, Math
## 438 15-1141 151141 Computer, Math
## 439 15-1121 151121 Computer, Math
## 440 15-2031 152031 Computer, Math
## 441 13-1111 131111 Business, Finance
## 442 15-1132 151132 Computer, Math
## 443 15-1132 151132 Computer, Math
## 444 15-1132 151132 Computer, Math
## 445 15-1132 151132 Computer, Math
## 446 15-1132 151132 Computer, Math
## 447 15-1132 151132 Computer, Math
## 448 15-1199 151199 Computer, Math
## 449 15-1132 151132 Computer, Math
## 450 27-1014 271014 Media, Design
## 451 23-1011 231011 Legal
## 452 15-1199 151199 Computer, Math
## 453 15-1132 151132 Computer, Math
## 454 15-1132 151132 Computer, Math
## 455 15-1132 151132 Computer, Math
## 456 15-1132 151132 Computer, Math
## 457 15-1132 151132 Computer, Math
## 458 19-2031 192031 Life, Physcial, Social Science
## 459 15-1133 151133 Computer, Math
## 460 15-1132 151132 Computer, Math
## 461 29-1069 291069 Healthcare Practitioner
## 462 15-1199 151199 Computer, Math
## 463 15-1132 151132 Computer, Math
## 464 13-2011 132011 Business, Finance
## 465 11-2021 112021 Management
## 466 13-2011 132011 Business, Finance
## 467 15-1199 151199 Computer, Math
## 468 13-1111 131111 Business, Finance
## 469 17-2071 172071 Architecture, Engineer
## 470 15-1132 151132 Computer, Math
## 471 15-1132 151132 Computer, Math
## 472 15-1132 151132 Computer, Math
## 473 15-1132 151132 Computer, Math
## 474 15-1199 151199 Computer, Math
## 475 19-3011 193011 Life, Physcial, Social Science
## 476 15-1132 151132 Computer, Math
## 477 15-1132 151132 Computer, Math
## 478 15-1141 151141 Computer, Math
## 479 15-1132 151132 Computer, Math
## 480 15-1131 151131 Computer, Math
## 481 15-1121 151121 Computer, Math
## 482 17-2071 172071 Architecture, Engineer
## 483 15-1131 151131 Computer, Math
## 484 17-2112 172112 Architecture, Engineer
## 485 19-2041 192041 Life, Physcial, Social Science
## 486 15-1132 151132 Computer, Math
## 487 13-1111 131111 Business, Finance
## 488 13-1051 131051 Business, Finance
## 489 27-2022 272022 Media, Design
## 490 11-3021 113021 Management
## 491 15-2031 152031 Computer, Math
## 492 17-2112 172112 Architecture, Engineer
## 493 13-1111 131111 Business, Finance
## 494 15-1132 151132 Computer, Math
## 495 15-1121 151121 Computer, Math
## 496 11-3021 113021 Management
## 497 15-1132 151132 Computer, Math
## 498 15-1131 151131 Computer, Math
## 499 15-1132 151132 Computer, Math
## 500 15-1132 151132 Computer, Math
## 501 13-2051 132051 Business, Finance
## 502 15-1132 151132 Computer, Math
## 503 15-1132 151132 Computer, Math
## 504 15-1121 151121 Computer, Math
## 505 15-1132 151132 Computer, Math
## 506 15-1132 151132 Computer, Math
## 507 15-1199 151199 Computer, Math
## 508 15-1132 151132 Computer, Math
## 509 13-1023 131023 Business, Finance
## 510 15-1132 151132 Computer, Math
## 511 13-1111 131111 Business, Finance
## 512 15-1199 151199 Computer, Math
## 513 15-1132 151132 Computer, Math
## 514 15-1132 151132 Computer, Math
## 515 15-1121 151121 Computer, Math
## 516 15-1132 151132 Computer, Math
## 517 41-9031 419031 Sales
## 518 15-1121 151121 Computer, Math
## 519 11-3021 113021 Management
## 520 13-1161 131161 Business, Finance
## 521 15-1132 151132 Computer, Math
## 522 15-1141 151141 Computer, Math
## 523 15-1132 151132 Computer, Math
## 524 15-1132 151132 Computer, Math
## 525 13-1161 131161 Business, Finance
## 526 13-1111 131111 Business, Finance
## 527 15-1132 151132 Computer, Math
## 528 15-1133 151133 Computer, Math
## 529 15-1132 151132 Computer, Math
## 530 15-1134 151134 Computer, Math
## 531 15-1121 151121 Computer, Math
## 532 15-1132 151132 Computer, Math
## 533 15-1132 151132 Computer, Math
## 534 15-1132 151132 Computer, Math
## 535 15-1132 151132 Computer, Math
## 536 17-2199 172199 Architecture, Engineer
## 537 17-2031 172031 Architecture, Engineer
## 538 27-3022 273022 Media, Design
## 539 15-1143 151143 Computer, Math
## 540 17-2071 172071 Architecture, Engineer
## 541 15-1141 151141 Computer, Math
## 542 15-1199 151199 Computer, Math
## 543 15-1132 151132 Computer, Math
## 544 15-1132 151132 Computer, Math
## 545 15-1132 151132 Computer, Math
## 546 15-1199 151199 Computer, Math
## 547 29-1065 291065 Healthcare Practitioner
## 548 19-2032 192032 Life, Physcial, Social Science
## 549 15-1132 151132 Computer, Math
## 550 19-1013 191013 Life, Physcial, Social Science
## 551 15-1121 151121 Computer, Math
## 552 15-2031 152031 Computer, Math
## 553 15-2031 152031 Computer, Math
## 554 29-2011 292011 Healthcare Practitioner
## 555 15-1132 151132 Computer, Math
## 556 15-1121 151121 Computer, Math
## 557 15-1131 151131 Computer, Math
## 558 19-1042 191042 Life, Physcial, Social Science
## 559 15-1132 151132 Computer, Math
## 560 15-1132 151132 Computer, Math
## 561 15-1132 151132 Computer, Math
## 562 15-1132 151132 Computer, Math
## 563 27-3031 273031 Media, Design
## 564 15-1131 151131 Computer, Math
## 565 11-9111 119111 Management
## 566 15-1111 151111 Computer, Math
## 567 15-1121 151121 Computer, Math
## 568 13-2051 132051 Business, Finance
## 569 15-2031 152031 Computer, Math
## 570 41-9031 419031 Sales
## 571 15-1132 151132 Computer, Math
## 572 15-1121 151121 Computer, Math
## 573 15-2041 152041 Computer, Math
## 574 27-1021 271021 Media, Design
## 575 15-1132 151132 Computer, Math
## 576 19-1029 191029 Life, Physcial, Social Science
## 577 15-1132 151132 Computer, Math
## 578 15-1133 151133 Computer, Math
## 579 15-1199 151199 Computer, Math
## 580 15-1133 151133 Computer, Math
## 581 15-1121 151121 Computer, Math
## 582 25-2052 252052 Education, Training
## 583 15-1132 151132 Computer, Math
## 584 15-1132 151132 Computer, Math
## 585 15-1132 151132 Computer, Math
## 586 13-2011 132011 Business, Finance
## 587 15-1121 151121 Computer, Math
## 588 15-1121 151121 Computer, Math
## 589 29-1011 291011 Healthcare Practitioner
## 590 15-1133 151133 Computer, Math
## 591 15-1132 151132 Computer, Math
## 592 15-1199 151199 Computer, Math
## 593 15-1132 151132 Computer, Math
## 594 15-1121 151121 Computer, Math
## 595 13-1111 131111 Business, Finance
## 596 15-1132 151132 Computer, Math
## 597 15-1132 151132 Computer, Math
## 598 15-1132 151132 Computer, Math
## 599 15-1142 151142 Computer, Math
## 600 15-1132 151132 Computer, Math
## 601 19-1021 191021 Life, Physcial, Social Science
## 602 17-2141 172141 Architecture, Engineer
## 603 15-1132 151132 Computer, Math
## 604 13-2011 132011 Business, Finance
## 605 15-1121 151121 Computer, Math
## 606 15-1142 151142 Computer, Math
## 607 15-2031 152031 Computer, Math
## 608 15-1132 151132 Computer, Math
## 609 15-1132 151132 Computer, Math
## 610 15-1121 151121 Computer, Math
## 611 15-1131 151131 Computer, Math
## 612 19-2012 192012 Life, Physcial, Social Science
## 613 17-2051 172051 Architecture, Engineer
## 614 15-1199 151199 Computer, Math
## 615 15-1132 151132 Computer, Math
## 616 17-2071 172071 Architecture, Engineer
## 617 43-9111 439111 Others
## 618 25-1071 251071 Education, Training
## 619 15-2021 152021 Computer, Math
## 620 15-1132 151132 Computer, Math
## 621 15-1199 151199 Computer, Math
## 622 15-1121 151121 Computer, Math
## 623 15-1121 151121 Computer, Math
## 624 15-2041 152041 Computer, Math
## 625 13-1111 131111 Business, Finance
## 626 15-1132 151132 Computer, Math
## 627 19-1021 191021 Life, Physcial, Social Science
## 628 15-1132 151132 Computer, Math
## 629 15-1121 151121 Computer, Math
## 630 15-1121 151121 Computer, Math
## 631 15-1121 151121 Computer, Math
## 632 29-1063 291063 Healthcare Practitioner
## 633 11-3021 113021 Management
## 634 15-1122 151122 Computer, Math
## 635 15-1199 151199 Computer, Math
## 636 15-1199 151199 Computer, Math
## 637 15-1121 151121 Computer, Math
## 638 15-1133 151133 Computer, Math
## 639 15-2041 152041 Computer, Math
## 640 15-1132 151132 Computer, Math
## 641 17-2199 172199 Architecture, Engineer
## 642 15-1132 151132 Computer, Math
## 643 15-1121 151121 Computer, Math
## 644 15-1132 151132 Computer, Math
## 645 15-1133 151133 Computer, Math
## 646 15-1142 151142 Computer, Math
## 647 13-1111 131111 Business, Finance
## 648 15-1132 151132 Computer, Math
## 649 17-2141 172141 Architecture, Engineer
## 650 15-1199 151199 Computer, Math
## 651 15-1142 151142 Computer, Math
## 652 15-1132 151132 Computer, Math
## 653 15-1121 151121 Computer, Math
## 654 13-1111 131111 Business, Finance
## 655 15-1121 151121 Computer, Math
## 656 15-1134 151134 Computer, Math
## 657 17-2141 172141 Architecture, Engineer
## 658 15-1199 151199 Computer, Math
## 659 15-1132 151132 Computer, Math
## 660 15-1121 151121 Computer, Math
## 661 15-1132 151132 Computer, Math
## 662 15-1132 151132 Computer, Math
## 663 15-1132 151132 Computer, Math
## 664 17-2141 172141 Architecture, Engineer
## 665 19-1021 191021 Life, Physcial, Social Science
## 666 15-1199 151199 Computer, Math
## 667 15-1132 151132 Computer, Math
## 668 15-1132 151132 Computer, Math
## 669 15-1132 151132 Computer, Math
## 670 17-2141 172141 Architecture, Engineer
## 671 15-1132 151132 Computer, Math
## 672 11-3021 113021 Management
## 673 15-1132 151132 Computer, Math
## 674 15-1199 151199 Computer, Math
## 675 15-1132 151132 Computer, Math
## 676 15-1132 151132 Computer, Math
## 677 15-1132 151132 Computer, Math
## 678 15-1132 151132 Computer, Math
## 679 19-1029 191029 Life, Physcial, Social Science
## 680 41-9031 419031 Sales
## 681 15-1199 151199 Computer, Math
## 682 15-1132 151132 Computer, Math
## 683 11-9041 119041 Management
## 684 15-1132 151132 Computer, Math
## 685 15-1132 151132 Computer, Math
## 686 15-1132 151132 Computer, Math
## 687 15-1132 151132 Computer, Math
## 688 11-9199 119199 Management
## 689 15-1131 151131 Computer, Math
## 690 15-1121 151121 Computer, Math
## 691 15-1199 151199 Computer, Math
## 692 15-1132 151132 Computer, Math
## 693 13-2011 132011 Business, Finance
## 694 15-1132 151132 Computer, Math
## 695 15-1132 151132 Computer, Math
## 696 15-1199 151199 Computer, Math
## 697 15-1132 151132 Computer, Math
## 698 15-1121 151121 Computer, Math
## 699 15-1132 151132 Computer, Math
## 700 19-2042 192042 Life, Physcial, Social Science
## 701 15-1199 151199 Computer, Math
## 702 15-1199 151199 Computer, Math
## 703 15-1199 151199 Computer, Math
## 704 15-1121 151121 Computer, Math
## 705 15-1132 151132 Computer, Math
## 706 15-1132 151132 Computer, Math
## 707 15-1121 151121 Computer, Math
## 708 15-1121 151121 Computer, Math
## 709 15-2041 152041 Computer, Math
## 710 25-2012 252012 Education, Training
## 711 15-1132 151132 Computer, Math
## 712 15-1199 151199 Computer, Math
## 713 15-1133 151133 Computer, Math
## 714 13-1111 131111 Business, Finance
## 715 29-1063 291063 Healthcare Practitioner
## 716 15-1121 151121 Computer, Math
## 717 17-2071 172071 Architecture, Engineer
## 718 15-1132 151132 Computer, Math
## 719 15-1132 151132 Computer, Math
## 720 15-1132 151132 Computer, Math
## 721 25-1063 251063 Education, Training
## 722 29-1122 291122 Healthcare Practitioner
## 723 27-1014 271014 Media, Design
## 724 15-1132 151132 Computer, Math
## 725 17-2072 172072 Architecture, Engineer
## 726 25-1011 251011 Education, Training
## 727 15-1132 151132 Computer, Math
## 728 15-1199 151199 Computer, Math
## 729 17-2071 172071 Architecture, Engineer
## 730 15-1132 151132 Computer, Math
## 731 15-1199 151199 Computer, Math
## 732 13-2051 132051 Business, Finance
## 733 15-2021 152021 Computer, Math
## 734 11-9041 119041 Management
## 735 13-2099 132099 Business, Finance
## 736 15-1199 151199 Computer, Math
## 737 15-1132 151132 Computer, Math
## 738 15-1143 151143 Computer, Math
## 739 15-1121 151121 Computer, Math
## 740 15-1133 151133 Computer, Math
## 741 15-1121 151121 Computer, Math
## 742 15-1199 151199 Computer, Math
## 743 41-9031 419031 Sales
## 744 13-1111 131111 Business, Finance
## 745 15-1134 151134 Computer, Math
## 746 11-3021 113021 Management
## 747 15-1132 151132 Computer, Math
## 748 15-1142 151142 Computer, Math
## 749 13-1081 131081 Business, Finance
## 750 17-2072 172072 Architecture, Engineer
## 751 17-2141 172141 Architecture, Engineer
## 752 17-2071 172071 Architecture, Engineer
## 753 19-2043 192043 Life, Physcial, Social Science
## 754 15-1132 151132 Computer, Math
## 755 15-1132 151132 Computer, Math
## 756 11-2022 112022 Management
## 757 15-1132 151132 Computer, Math
## 758 15-1199 151199 Computer, Math
## 759 15-1132 151132 Computer, Math
## 760 15-2031 152031 Computer, Math
## 761 15-1132 151132 Computer, Math
## 762 15-1132 151132 Computer, Math
## 763 15-1199 151199 Computer, Math
## 764 15-1121 151121 Computer, Math
## 765 15-1133 151133 Computer, Math
## 766 19-3031 193031 Life, Physcial, Social Science
## 767 13-1041 131041 Business, Finance
## 768 15-1141 151141 Computer, Math
## 769 29-1123 291123 Healthcare Practitioner
## 770 15-1132 151132 Computer, Math
## 771 13-1081 131081 Business, Finance
## 772 15-1132 151132 Computer, Math
## 773 15-1034 151034 Computer, Math
## 774 15-1132 151132 Computer, Math
## 775 17-2051 172051 Architecture, Engineer
## 776 17-2071 172071 Architecture, Engineer
## 777 17-2141 172141 Architecture, Engineer
## 778 15-1131 151131 Computer, Math
## 779 11-3021 113021 Management
## 780 15-1132 151132 Computer, Math
## 781 15-1132 151132 Computer, Math
## 782 25-9031 259031 Education, Training
## 783 15-1132 151132 Computer, Math
## 784 15-1199 151199 Computer, Math
## 785 27-3031 273031 Media, Design
## 786 13-2011 132011 Business, Finance
## 787 15-1132 151132 Computer, Math
## 788 15-1121 151121 Computer, Math
## 789 15-2041 152041 Computer, Math
## 790 17-2141 172141 Architecture, Engineer
## 791 11-9121 119121 Management
## 792 17-3029 173029 Architecture, Engineer
## 793 15-1121 151121 Computer, Math
## 794 15-1199 151199 Computer, Math
## 795 15-1121 151121 Computer, Math
## 796 15-1199 151199 Computer, Math
## 797 23-2011 232011 Legal
## 798 29-1062 291062 Healthcare Practitioner
## 799 15-1132 151132 Computer, Math
## 800 11-3021 113021 Management
## 801 15-1121 151121 Computer, Math
## 802 19-2043 192043 Life, Physcial, Social Science
## 803 17-2199 172199 Architecture, Engineer
## 804 15-1121 151121 Computer, Math
## 805 15-1132 151132 Computer, Math
## 806 17-2141 172141 Architecture, Engineer
## 807 15-1133 151133 Computer, Math
## 808 15-1199 151199 Computer, Math
## 809 19-1042 191042 Life, Physcial, Social Science
## 810 15-1131 151131 Computer, Math
## 811 15-1132 151132 Computer, Math
## 812 15-2031 152031 Computer, Math
## 813 15-1132 151132 Computer, Math
## 814 15-1133 151133 Computer, Math
## 815 17-2071 172071 Architecture, Engineer
## 816 15-1132 151132 Computer, Math
## 817 15-1132 151132 Computer, Math
## 818 15-1121 151121 Computer, Math
## 819 15-1199 151199 Computer, Math
## 820 15-1133 151133 Computer, Math
## 821 15-1121 151121 Computer, Math
## 822 15-1132 151132 Computer, Math
## 823 15-1132 151132 Computer, Math
## 824 15-1132 151132 Computer, Math
## 825 15-1134 151134 Computer, Math
## 826 15-1131 151131 Computer, Math
## 827 17-2051 172051 Architecture, Engineer
## 828 25-2012 252012 Education, Training
## 829 17-1011 171011 Architecture, Engineer
## 830 15-1199 151199 Computer, Math
## 831 17-2051 172051 Architecture, Engineer
## 832 19-1021 191021 Life, Physcial, Social Science
## 833 29-1021 291021 Healthcare Practitioner
## 834 17-2071 172071 Architecture, Engineer
## 835 15-1121 151121 Computer, Math
## 836 15-1121 151121 Computer, Math
## 837 15-1121 151121 Computer, Math
## 838 15-2041 152041 Computer, Math
## 839 15-1199 151199 Computer, Math
## 840 15-1132 151132 Computer, Math
## 841 21-1022 211022 Social Service
## 842 15-1122 151122 Computer, Math
## 843 15-1132 151132 Computer, Math
## 844 25-1032 251032 Education, Training
## 845 15-1132 151132 Computer, Math
## 846 15-1141 151141 Computer, Math
## 847 17-2071 172071 Architecture, Engineer
## 848 17-2141 172141 Architecture, Engineer
## 849 15-1132 151132 Computer, Math
## 850 15-1141 151141 Computer, Math
## 851 15-1132 151132 Computer, Math
## 852 15-1131 151131 Computer, Math
## 853 17-2072 172072 Architecture, Engineer
## 854 15-1132 151132 Computer, Math
## 855 15-1132 151132 Computer, Math
## 856 15-1121 151121 Computer, Math
## 857 15-1132 151132 Computer, Math
## 858 15-1121 151121 Computer, Math
## 859 15-1132 151132 Computer, Math
## 860 13-1161 131161 Business, Finance
## 861 15-1133 151133 Computer, Math
## 862 17-2031 172031 Architecture, Engineer
## 863 15-1133 151133 Computer, Math
## 864 15-1121 151121 Computer, Math
## 865 11-2021 112021 Management
## 866 15-1199 151199 Computer, Math
## 867 15-1132 151132 Computer, Math
## 868 15-1199 151199 Computer, Math
## 869 15-1199 151199 Computer, Math
## 870 15-1133 151133 Computer, Math
## 871 15-1199 151199 Computer, Math
## 872 15-1132 151132 Computer, Math
## 873 15-1199 151199 Computer, Math
## 874 15-1133 151133 Computer, Math
## 875 15-1132 151132 Computer, Math
## 876 15-1132 151132 Computer, Math
## 877 15-1121 151121 Computer, Math
## 878 17-2071 172071 Architecture, Engineer
## 879 15-1132 151132 Computer, Math
## 880 15-1132 151132 Computer, Math
## 881 15-1132 151132 Computer, Math
## 882 15-1133 151133 Computer, Math
## 883 15-1199 151199 Computer, Math
## 884 19-1042 191042 Life, Physcial, Social Science
## 885 15-1132 151132 Computer, Math
## 886 15-1199 151199 Computer, Math
## 887 15-1132 151132 Computer, Math
## 888 15-1133 151133 Computer, Math
## 889 15-1131 151131 Computer, Math
## 890 15-1121 151121 Computer, Math
## 891 15-1132 151132 Computer, Math
## 892 13-2051 132051 Business, Finance
## 893 13-2051 132051 Business, Finance
## 894 17-2112 172112 Architecture, Engineer
## 895 15-1132 151132 Computer, Math
## 896 15-1132 151132 Computer, Math
## 897 15-1132 151132 Computer, Math
## 898 17-2051 172051 Architecture, Engineer
## 899 15-1142 151142 Computer, Math
## 900 15-1132 151132 Computer, Math
## 901 15-1132 151132 Computer, Math
## 902 17-2071 172071 Architecture, Engineer
## 903 25-1062 251062 Education, Training
## 904 15-1132 151132 Computer, Math
## 905 15-1132 151132 Computer, Math
## 906 15-1199 151199 Computer, Math
## 907 13-2011 132011 Business, Finance
## 908 15-1132 151132 Computer, Math
## 909 13-1111 131111 Business, Finance
## 910 15-1132 151132 Computer, Math
## 911 15-1121 151121 Computer, Math
## 912 15-1199 151199 Computer, Math
## 913 15-2031 152031 Computer, Math
## 914 15-1122 151122 Computer, Math
## 915 13-1161 131161 Business, Finance
## 916 19-1029 191029 Life, Physcial, Social Science
## 917 15-1132 151132 Computer, Math
## 918 15-1132 151132 Computer, Math
## 919 11-3021 113021 Management
## 920 15-1121 151121 Computer, Math
## 921 13-1161 131161 Business, Finance
## 922 17-2141 172141 Architecture, Engineer
## 923 15-1132 151132 Computer, Math
## 924 17-2072 172072 Architecture, Engineer
## 925 17-1011 171011 Architecture, Engineer
## 926 13-2011 132011 Business, Finance
## 927 15-1132 151132 Computer, Math
## 928 29-1069 291069 Healthcare Practitioner
## 929 11-2021 112021 Management
## 930 13-2051 132051 Business, Finance
## 931 11-2021 112021 Management
## 932 15-1121 151121 Computer, Math
## 933 15-1132 151132 Computer, Math
## 934 29-1069 291069 Healthcare Practitioner
## 935 15-2031 152031 Computer, Math
## 936 25-1011 251011 Education, Training
## 937 15-2041 152041 Computer, Math
## 938 15-1141 151141 Computer, Math
## 939 15-1132 151132 Computer, Math
## 940 17-2071 172071 Architecture, Engineer
## 941 29-1021 291021 Healthcare Practitioner
## 942 19-1029 191029 Life, Physcial, Social Science
## 943 15-1132 151132 Computer, Math
## 944 15-1121 151121 Computer, Math
## 945 15-1132 151132 Computer, Math
## 946 15-1199 151199 Computer, Math
## 947 15-1141 151141 Computer, Math
## 948 11-9021 119021 Management
## 949 15-1132 151132 Computer, Math
## 950 15-1121 151121 Computer, Math
## 951 13-1051 131051 Business, Finance
## 952 15-1132 151132 Computer, Math
## 953 17-1012 171012 Architecture, Engineer
## 954 15-1143 151143 Computer, Math
## 955 13-1081 131081 Business, Finance
## 956 15-1132 151132 Computer, Math
## 957 15-1199 151199 Computer, Math
## 958 15-1132 151132 Computer, Math
## 959 15-1199 151199 Computer, Math
## 960 15-1132 151132 Computer, Math
## 961 19-1021 191021 Life, Physcial, Social Science
## 962 15-1132 151132 Computer, Math
## 963 11-3021 113021 Management
## 964 15-1141 151141 Computer, Math
## 965 25-1011 251011 Education, Training
## 966 15-1121 151121 Computer, Math
## 967 29-2011 292011 Healthcare Practitioner
## 968 13-1161 131161 Business, Finance
## 969 15-1199 151199 Computer, Math
## 970 19-2031 192031 Life, Physcial, Social Science
## 971 15-1141 151141 Computer, Math
## 972 13-2031 132031 Business, Finance
## 973 15-1132 151132 Computer, Math
## 974 15-1132 151132 Computer, Math
## 975 25-1065 251065 Education, Training
## 976 13-2051 132051 Business, Finance
## 977 13-2011 132011 Business, Finance
## 978 15-2031 152031 Computer, Math
## 979 15-1132 151132 Computer, Math
## 980 15-1132 151132 Computer, Math
## 981 15-1132 151132 Computer, Math
## 982 15-1133 151133 Computer, Math
## 983 15-1199 151199 Computer, Math
## 984 15-1132 151132 Computer, Math
## 985 15-1132 151132 Computer, Math
## 986 15-1199 151199 Computer, Math
## 987 15-1199 151199 Computer, Math
## 988 17-2051 172051 Architecture, Engineer
## 989 25-2021 252021 Education, Training
## 990 17-2141 172141 Architecture, Engineer
## 991 15-1199 151199 Computer, Math
## 992 15-1132 151132 Computer, Math
## 993 15-1199 151199 Computer, Math
## 994 15-1142 151142 Computer, Math
## 995 29-1065 291065 Healthcare Practitioner
## 996 15-1132 151132 Computer, Math
## 997 15-2041 152041 Computer, Math
## 998 15-1199 151199 Computer, Math
## 999 27-2022 272022 Media, Design
## 1000 15-1132 151132 Computer, Math
## 1001 15-1132 151132 Computer, Math
## 1002 15-1133 151133 Computer, Math
## 1003 13-1071 131071 Business, Finance
## 1004 15-1132 151132 Computer, Math
## 1005 15-1199 151199 Computer, Math
## 1006 15-1121 151121 Computer, Math
## 1007 15-1132 151132 Computer, Math
## 1008 17-2141 172141 Architecture, Engineer
## 1009 15-2041 152041 Computer, Math
## 1010 15-1132 151132 Computer, Math
## 1011 15-1133 151133 Computer, Math
## 1012 41-3031 413031 Sales
## 1013 15-1199 151199 Computer, Math
## 1014 17-2061 172061 Architecture, Engineer
## 1015 15-1141 151141 Computer, Math
## 1016 17-2141 172141 Architecture, Engineer
## 1017 15-1132 151132 Computer, Math
## 1018 15-1142 151142 Computer, Math
## 1019 11-3121 113121 Management
## 1020 15-1132 151132 Computer, Math
## 1021 17-2051 172051 Architecture, Engineer
## 1022 15-1132 151132 Computer, Math
## 1023 29-1063 291063 Healthcare Practitioner
## 1024 15-1141 151141 Computer, Math
## 1025 13-1111 131111 Business, Finance
## 1026 17-1011 171011 Architecture, Engineer
## 1027 15-1142 151142 Computer, Math
## 1028 25-2022 252022 Education, Training
## 1029 15-1132 151132 Computer, Math
## 1030 15-1121 151121 Computer, Math
## 1031 15-1132 151132 Computer, Math
## 1032 15-1132 151132 Computer, Math
## 1033 15-1132 151132 Computer, Math
## 1034 13-1111 131111 Business, Finance
## 1035 15-1131 151131 Computer, Math
## 1036 15-1034 151034 Computer, Math
## 1037 13-2011 132011 Business, Finance
## 1038 15-1199 151199 Computer, Math
## 1039 15-2041 152041 Computer, Math
## 1040 15-1199 151199 Computer, Math
## 1041 15-1132 151132 Computer, Math
## 1042 15-1199 151199 Computer, Math
## 1043 15-1121 151121 Computer, Math
## 1044 15-1131 151131 Computer, Math
## 1045 15-1121 151121 Computer, Math
## 1046 15-1132 151132 Computer, Math
## 1047 15-1133 151133 Computer, Math
## 1048 15-1132 151132 Computer, Math
## 1049 13-2051 132051 Business, Finance
## 1050 15-1131 151131 Computer, Math
## 1051 29-1123 291123 Healthcare Practitioner
## 1052 15-1199 151199 Computer, Math
## 1053 13-1111 131111 Business, Finance
## 1054 15-1132 151132 Computer, Math
## 1055 15-1132 151132 Computer, Math
## 1056 13-1161 131161 Business, Finance
## 1057 15-1151 151151 Computer, Math
## 1058 15-2031 152031 Computer, Math
## 1059 15-1132 151132 Computer, Math
## 1060 15-1121 151121 Computer, Math
## 1061 19-3032 193032 Life, Physcial, Social Science
## 1062 15-1132 151132 Computer, Math
## 1063 15-1132 151132 Computer, Math
## 1064 15-1199 151199 Computer, Math
## 1065 15-1132 151132 Computer, Math
## 1066 15-1132 151132 Computer, Math
## 1067 15-1122 151122 Computer, Math
## 1068 15-1132 151132 Computer, Math
## 1069 11-2021 112021 Management
## 1070 15-1132 151132 Computer, Math
## 1071 13-1111 131111 Business, Finance
## 1072 15-1132 151132 Computer, Math
## 1073 15-1121 151121 Computer, Math
## 1074 15-1132 151132 Computer, Math
## 1075 15-1133 151133 Computer, Math
## 1076 15-1199 151199 Computer, Math
## 1077 15-1199 151199 Computer, Math
## 1078 15-1132 151132 Computer, Math
## 1079 15-1142 151142 Computer, Math
## 1080 15-1121 151121 Computer, Math
## 1081 15-1132 151132 Computer, Math
## 1082 15-1131 151131 Computer, Math
## 1083 15-1132 151132 Computer, Math
## 1084 11-3021 113021 Management
## 1085 15-1132 151132 Computer, Math
## 1086 17-2041 172041 Architecture, Engineer
## 1087 15-1121 151121 Computer, Math
## 1088 29-1131 291131 Healthcare Practitioner
## 1089 27-1021 271021 Media, Design
## 1090 15-1199 151199 Computer, Math
## 1091 15-1034 151034 Computer, Math
## 1092 15-1132 151132 Computer, Math
## 1093 15-1132 151132 Computer, Math
## 1094 19-1021 191021 Life, Physcial, Social Science
## 1095 15-1132 151132 Computer, Math
## 1096 13-2011 132011 Business, Finance
## 1097 13-1111 131111 Business, Finance
## 1098 15-1132 151132 Computer, Math
## 1099 29-1069 291069 Healthcare Practitioner
## 1100 15-1199 151199 Computer, Math
## 1101 15-1132 151132 Computer, Math
## 1102 15-1132 151132 Computer, Math
## 1103 15-1199 151199 Computer, Math
## 1104 15-1121 151121 Computer, Math
## 1105 15-1121 151121 Computer, Math
## 1106 13-1161 131161 Business, Finance
## 1107 15-2041 152041 Computer, Math
## 1108 15-1132 151132 Computer, Math
## 1109 17-2051 172051 Architecture, Engineer
## 1110 25-2031 252031 Education, Training
## 1111 41-9031 419031 Sales
## 1112 15-1121 151121 Computer, Math
## 1113 17-2051 172051 Architecture, Engineer
## 1114 17-2071 172071 Architecture, Engineer
## 1115 15-1131 151131 Computer, Math
## 1116 17-2112 172112 Architecture, Engineer
## 1117 13-2011 132011 Business, Finance
## 1118 15-1121 151121 Computer, Math
## 1119 15-1132 151132 Computer, Math
## 1120 17-2141 172141 Architecture, Engineer
## 1121 15-1132 151132 Computer, Math
## 1122 15-1199 151199 Computer, Math
## 1123 15-2041 152041 Computer, Math
## 1124 15-1132 151132 Computer, Math
## 1125 19-2031 192031 Life, Physcial, Social Science
## 1126 15-2041 152041 Computer, Math
## 1127 15-1199 151199 Computer, Math
## 1128 15-2031 152031 Computer, Math
## 1129 15-1132 151132 Computer, Math
## 1130 15-1132 151132 Computer, Math
## 1131 15-1132 151132 Computer, Math
## 1132 15-1132 151132 Computer, Math
## 1133 15-1132 151132 Computer, Math
## 1134 15-1132 151132 Computer, Math
## 1135 15-1121 151121 Computer, Math
## 1136 15-1132 151132 Computer, Math
## 1137 13-1111 131111 Business, Finance
## 1138 15-1132 151132 Computer, Math
## 1139 15-1132 151132 Computer, Math
## 1140 15-1121 151121 Computer, Math
## 1141 29-1066 291066 Healthcare Practitioner
## 1142 11-3051 113051 Management
## 1143 15-1132 151132 Computer, Math
## 1144 15-1121 151121 Computer, Math
## 1145 15-1132 151132 Computer, Math
## 1146 25-1022 251022 Education, Training
## 1147 15-1132 151132 Computer, Math
## 1148 15-1131 151131 Computer, Math
## 1149 15-1133 151133 Computer, Math
## 1150 19-2012 192012 Life, Physcial, Social Science
## 1151 31-9099 319099 Others
## 1152 15-2031 152031 Computer, Math
## 1153 15-1131 151131 Computer, Math
## 1154 15-1121 151121 Computer, Math
## 1155 15-1199 151199 Computer, Math
## 1156 15-1132 151132 Computer, Math
## 1157 13-1111 131111 Business, Finance
## 1158 15-1132 151132 Computer, Math
## 1159 11-9021 119021 Management
## 1160 15-1121 151121 Computer, Math
## 1161 17-2072 172072 Architecture, Engineer
## 1162 15-1199 151199 Computer, Math
## 1163 15-2031 152031 Computer, Math
## 1164 11-9041 119041 Management
## 1165 15-1133 151133 Computer, Math
## 1166 15-1132 151132 Computer, Math
## 1167 15-1121 151121 Computer, Math
## 1168 19-3099 193099 Life, Physcial, Social Science
## 1169 15-2041 152041 Computer, Math
## 1170 15-1121 151121 Computer, Math
## 1171 15-2011 152011 Computer, Math
## 1172 29-1062 291062 Healthcare Practitioner
## 1173 15-1199 151199 Computer, Math
## 1174 19-4021 194021 Life, Physcial, Social Science
## 1175 15-1132 151132 Computer, Math
## 1176 15-1132 151132 Computer, Math
## 1177 15-1121 151121 Computer, Math
## 1178 15-1121 151121 Computer, Math
## 1179 15-1133 151133 Computer, Math
## 1180 15-1199 151199 Computer, Math
## 1181 29-1171 291171 Healthcare Practitioner
## 1182 15-1132 151132 Computer, Math
## 1183 15-1121 151121 Computer, Math
## 1184 15-1121 151121 Computer, Math
## 1185 15-1133 151133 Computer, Math
## 1186 15-1132 151132 Computer, Math
## 1187 29-1069 291069 Healthcare Practitioner
## 1188 15-1132 151132 Computer, Math
## 1189 15-1132 151132 Computer, Math
## 1190 11-3021 113021 Management
## 1191 15-1132 151132 Computer, Math
## 1192 19-2031 192031 Life, Physcial, Social Science
## 1193 17-3029 173029 Architecture, Engineer
## 1194 15-1132 151132 Computer, Math
## 1195 15-1131 151131 Computer, Math
## 1196 15-1143 151143 Computer, Math
## 1197 19-1029 191029 Life, Physcial, Social Science
## 1198 15-1121 151121 Computer, Math
## 1199 13-2051 132051 Business, Finance
## 1200 17-2112 172112 Architecture, Engineer
## 1201 15-1132 151132 Computer, Math
## 1202 15-1121 151121 Computer, Math
## 1203 15-1132 151132 Computer, Math
## 1204 15-1132 151132 Computer, Math
## 1205 15-1121 151121 Computer, Math
## 1206 15-1199 151199 Computer, Math
## 1207 15-1132 151132 Computer, Math
## 1208 15-1121 151121 Computer, Math
## 1209 17-2141 172141 Architecture, Engineer
## 1210 15-1132 151132 Computer, Math
## 1211 15-1132 151132 Computer, Math
## 1212 15-1132 151132 Computer, Math
## 1213 15-1121 151121 Computer, Math
## 1214 15-1199 151199 Computer, Math
## 1215 15-1132 151132 Computer, Math
## 1216 15-1121 151121 Computer, Math
## 1217 15-1132 151132 Computer, Math
## 1218 15-1199 151199 Computer, Math
## 1219 15-1121 151121 Computer, Math
## 1220 15-1134 151134 Computer, Math
## 1221 15-1131 151131 Computer, Math
## 1222 15-1132 151132 Computer, Math
## 1223 15-1199 151199 Computer, Math
## 1224 15-1133 151133 Computer, Math
## 1225 15-1121 151121 Computer, Math
## 1226 15-1133 151133 Computer, Math
## 1227 17-2061 172061 Architecture, Engineer
## 1228 15-1199 151199 Computer, Math
## 1229 17-2071 172071 Architecture, Engineer
## 1230 17-2031 172031 Architecture, Engineer
## 1231 13-2051 132051 Business, Finance
## 1232 15-1132 151132 Computer, Math
## 1233 15-1132 151132 Computer, Math
## 1234 11-9199 119199 Management
## 1235 15-1121 151121 Computer, Math
## 1236 13-1081 131081 Business, Finance
## 1237 15-1132 151132 Computer, Math
## 1238 17-2199 172199 Architecture, Engineer
## 1239 19-1042 191042 Life, Physcial, Social Science
## 1240 17-2199 172199 Architecture, Engineer
## 1241 15-1121 151121 Computer, Math
## 1242 29-1041 291041 Healthcare Practitioner
## 1243 15-1132 151132 Computer, Math
## 1244 15-1199 151199 Computer, Math
## 1245 15-1132 151132 Computer, Math
## 1246 15-1132 151132 Computer, Math
## 1247 13-1161 131161 Business, Finance
## 1248 13-1111 131111 Business, Finance
## 1249 15-1131 151131 Computer, Math
## 1250 15-1121 151121 Computer, Math
## 1251 17-2141 172141 Architecture, Engineer
## 1252 15-1132 151132 Computer, Math
## 1253 15-1121 151121 Computer, Math
## 1254 15-2031 152031 Computer, Math
## 1255 15-1132 151132 Computer, Math
## 1256 15-1132 151132 Computer, Math
## 1257 15-1134 151134 Computer, Math
## 1258 15-1199 151199 Computer, Math
## 1259 15-2031 152031 Computer, Math
## 1260 15-1121 151121 Computer, Math
## 1261 15-1199 151199 Computer, Math
## 1262 15-1121 151121 Computer, Math
## 1263 15-1199 151199 Computer, Math
## 1264 29-1069 291069 Healthcare Practitioner
## 1265 15-1132 151132 Computer, Math
## 1266 17-2051 172051 Architecture, Engineer
## 1267 15-1132 151132 Computer, Math
## 1268 15-1132 151132 Computer, Math
## 1269 25-2059 252059 Education, Training
## 1270 15-1132 151132 Computer, Math
## 1271 17-2051 172051 Architecture, Engineer
## 1272 15-1121 151121 Computer, Math
## 1273 17-2072 172072 Architecture, Engineer
## 1274 11-9033 119033 Management
## 1275 15-1133 151133 Computer, Math
## 1276 15-1199 151199 Computer, Math
## 1277 15-1132 151132 Computer, Math
## 1278 17-2199 172199 Architecture, Engineer
## 1279 15-1132 151132 Computer, Math
## 1280 15-1133 151133 Computer, Math
## 1281 15-1132 151132 Computer, Math
## 1282 15-1132 151132 Computer, Math
## 1283 29-1069 291069 Healthcare Practitioner
## 1284 13-1111 131111 Business, Finance
## 1285 15-1132 151132 Computer, Math
## 1286 15-1132 151132 Computer, Math
## 1287 15-2041 152041 Computer, Math
## 1288 13-1161 131161 Business, Finance
## 1289 29-9099 299099 Healthcare Practitioner
## 1290 15-1121 151121 Computer, Math
## 1291 15-1142 151142 Computer, Math
## 1292 15-1199 151199 Computer, Math
## 1293 13-2031 132031 Business, Finance
## 1294 15-1121 151121 Computer, Math
## 1295 15-1132 151132 Computer, Math
## 1296 13-1161 131161 Business, Finance
## 1297 15-1133 151133 Computer, Math
## 1298 15-1121 151121 Computer, Math
## 1299 15-1132 151132 Computer, Math
## 1300 15-1132 151132 Computer, Math
## 1301 15-1132 151132 Computer, Math
## 1302 15-1131 151131 Computer, Math
## 1303 15-1141 151141 Computer, Math
## 1304 15-1199 151199 Computer, Math
## 1305 15-1111 151111 Computer, Math
## 1306 15-1132 151132 Computer, Math
## 1307 15-1133 151133 Computer, Math
## 1308 15-1199 151199 Computer, Math
## 1309 15-1132 151132 Computer, Math
## 1310 15-1121 151121 Computer, Math
## 1311 29-1123 291123 Healthcare Practitioner
## 1312 13-1111 131111 Business, Finance
## 1313 15-1132 151132 Computer, Math
## 1314 15-1132 151132 Computer, Math
## 1315 17-2112 172112 Architecture, Engineer
## 1316 15-1132 151132 Computer, Math
## 1317 15-1199 151199 Computer, Math
## 1318 13-2011 132011 Business, Finance
## 1319 15-1132 151132 Computer, Math
## 1320 15-1132 151132 Computer, Math
## 1321 15-1132 151132 Computer, Math
## 1322 27-1011 271011 Media, Design
## 1323 17-2071 172071 Architecture, Engineer
## 1324 15-1199 151199 Computer, Math
## 1325 15-1132 151132 Computer, Math
## 1326 15-1131 151131 Computer, Math
## 1327 15-1132 151132 Computer, Math
## 1328 15-1141 151141 Computer, Math
## 1329 15-1121 151121 Computer, Math
## 1330 13-1161 131161 Business, Finance
## 1331 15-1142 151142 Computer, Math
## 1332 17-2199 172199 Architecture, Engineer
## 1333 11-1011 111011 Management
## 1334 15-1121 151121 Computer, Math
## 1335 17-2051 172051 Architecture, Engineer
## 1336 15-1132 151132 Computer, Math
## 1337 15-1199 151199 Computer, Math
## 1338 15-1132 151132 Computer, Math
## 1339 13-1041 131041 Business, Finance
## 1340 15-1132 151132 Computer, Math
## 1341 13-1111 131111 Business, Finance
## 1342 13-2051 132051 Business, Finance
## 1343 15-1131 151131 Computer, Math
## 1344 17-3011 173011 Architecture, Engineer
## 1345 15-2041 152041 Computer, Math
## 1346 15-2011 152011 Computer, Math
## 1347 15-1199 151199 Computer, Math
## 1348 15-1134 151134 Computer, Math
## 1349 15-1132 151132 Computer, Math
## 1350 15-1121 151121 Computer, Math
## 1351 15-1132 151132 Computer, Math
## 1352 13-2011 132011 Business, Finance
## 1353 13-2011 132011 Business, Finance
## 1354 15-1121 151121 Computer, Math
## 1355 15-1132 151132 Computer, Math
## 1356 27-3042 273042 Media, Design
## 1357 15-1131 151131 Computer, Math
## 1358 15-1132 151132 Computer, Math
## 1359 15-1121 151121 Computer, Math
## 1360 15-1143 151143 Computer, Math
## 1361 15-2031 152031 Computer, Math
## 1362 13-1111 131111 Business, Finance
## 1363 15-1132 151132 Computer, Math
## 1364 15-1121 151121 Computer, Math
## 1365 15-1133 151133 Computer, Math
## 1366 15-1132 151132 Computer, Math
## 1367 15-1132 151132 Computer, Math
## 1368 15-1121 151121 Computer, Math
## 1369 25-1122 251122 Education, Training
## 1370 15-1133 151133 Computer, Math
## 1371 13-1111 131111 Business, Finance
## 1372 15-1132 151132 Computer, Math
## 1373 29-9099 299099 Healthcare Practitioner
## 1374 15-1131 151131 Computer, Math
## 1375 15-1199 151199 Computer, Math
## 1376 17-2072 172072 Architecture, Engineer
## 1377 25-2021 252021 Education, Training
## 1378 15-1133 151133 Computer, Math
## 1379 15-1132 151132 Computer, Math
## 1380 15-1132 151132 Computer, Math
## 1381 15-1199.01 151199 Computer, Math
## 1382 13-1111 131111 Business, Finance
## 1383 15-1132 151132 Computer, Math
## 1384 15-1132 151132 Computer, Math
## 1385 13-1041 131041 Business, Finance
## 1386 15-1199 151199 Computer, Math
## 1387 15-1132 151132 Computer, Math
## 1388 15-1121 151121 Computer, Math
## 1389 15-1122 151122 Computer, Math
## 1390 13-1081 131081 Business, Finance
## 1391 15-1133 151133 Computer, Math
## 1392 15-1121 151121 Computer, Math
## 1393 15-1121 151121 Computer, Math
## 1394 15-1133 151133 Computer, Math
## 1395 15-1133 151133 Computer, Math
## 1396 15-1132 151132 Computer, Math
## 1397 15-1199 151199 Computer, Math
## 1398 13-1111 131111 Business, Finance
## 1399 15-1133 151133 Computer, Math
## 1400 15-1132 151132 Computer, Math
## 1401 27-3042 273042 Media, Design
## 1402 15-1132 151132 Computer, Math
## 1403 15-2031 152031 Computer, Math
## 1404 15-1111 151111 Computer, Math
## 1405 15-1121 151121 Computer, Math
## 1406 13-1111 131111 Business, Finance
## 1407 15-1132 151132 Computer, Math
## 1408 15-1199 151199 Computer, Math
## 1409 15-1199 151199 Computer, Math
## 1410 19-1042 191042 Life, Physcial, Social Science
## 1411 15-1132 151132 Computer, Math
## 1412 15-1132 151132 Computer, Math
## 1413 15-1131 151131 Computer, Math
## 1414 15-2031 152031 Computer, Math
## 1415 25-2054 252054 Education, Training
## 1416 19-1042 191042 Life, Physcial, Social Science
## 1417 15-2041 152041 Computer, Math
## 1418 15-1132 151132 Computer, Math
## 1419 17-2141 172141 Architecture, Engineer
## 1420 15-1132 151132 Computer, Math
## 1421 19-1042 191042 Life, Physcial, Social Science
## 1422 15-1132 151132 Computer, Math
## 1423 11-9041 119041 Management
## 1424 15-1132 151132 Computer, Math
## 1425 15-1121 151121 Computer, Math
## 1426 15-1199 151199 Computer, Math
## 1427 15-1122 151122 Computer, Math
## 1428 15-1133 151133 Computer, Math
## 1429 27-1021 271021 Media, Design
## 1430 15-1132 151132 Computer, Math
## 1431 17-2141 172141 Architecture, Engineer
## 1432 15-1134 151134 Computer, Math
## 1433 15-1141 151141 Computer, Math
## 1434 15-1131 151131 Computer, Math
## 1435 15-1199 151199 Computer, Math
## 1436 13-2051 132051 Business, Finance
## 1437 13-1161 131161 Business, Finance
## 1438 15-1132 151132 Computer, Math
## 1439 15-1199 151199 Computer, Math
## 1440 15-1121 151121 Computer, Math
## 1441 15-1132 151132 Computer, Math
## 1442 15-1132 151132 Computer, Math
## 1443 15-1132 151132 Computer, Math
## 1444 15-2031 152031 Computer, Math
## 1445 19-1029 191029 Life, Physcial, Social Science
## 1446 15-1132 151132 Computer, Math
## 1447 17-2072 172072 Architecture, Engineer
## 1448 15-1132 151132 Computer, Math
## 1449 15-1134 151134 Computer, Math
## 1450 19-2031 192031 Life, Physcial, Social Science
## 1451 15-1133 151133 Computer, Math
## 1452 15-1133 151133 Computer, Math
## 1453 15-1133 151133 Computer, Math
## 1454 17-2141 172141 Architecture, Engineer
## 1455 15-1133 151133 Computer, Math
## 1456 15-1132 151132 Computer, Math
## 1457 15-1199 151199 Computer, Math
## 1458 15-1141 151141 Computer, Math
## 1459 15-1131 151131 Computer, Math
## 1460 15-1132 151132 Computer, Math
## 1461 15-1132 151132 Computer, Math
## 1462 17-2112 172112 Architecture, Engineer
## 1463 15-1132 151132 Computer, Math
## 1464 15-1131 151131 Computer, Math
## 1465 15-1131 151131 Computer, Math
## 1466 15-1199 151199 Computer, Math
## 1467 11-9041 119041 Management
## 1468 15-1132 151132 Computer, Math
## 1469 15-1199 151199 Computer, Math
## 1470 15-1199 151199 Computer, Math
## 1471 15-1132 151132 Computer, Math
## 1472 17-2071 172071 Architecture, Engineer
## 1473 15-1199 151199 Computer, Math
## 1474 15-1133 151133 Computer, Math
## 1475 17-2141 172141 Architecture, Engineer
## 1476 23-1011 231011 Legal
## 1477 29-2011 292011 Healthcare Practitioner
## 1478 15-1199 151199 Computer, Math
## 1479 15-1199 151199 Computer, Math
## 1480 15-1121 151121 Computer, Math
## 1481 15-1132 151132 Computer, Math
## 1482 15-1199 151199 Computer, Math
## 1483 15-1199 151199 Computer, Math
## 1484 15-1132 151132 Computer, Math
## 1485 15-1121 151121 Computer, Math
## 1486 15-1131 151131 Computer, Math
## 1487 15-1132 151132 Computer, Math
## 1488 13-1081 131081 Business, Finance
## 1489 13-2051 132051 Business, Finance
## 1490 15-1121 151121 Computer, Math
## 1491 15-1132 151132 Computer, Math
## 1492 15-1141 151141 Computer, Math
## 1493 13-1111 131111 Business, Finance
## 1494 15-1121 151121 Computer, Math
## 1495 15-1133 151133 Computer, Math
## 1496 15-2031 152031 Computer, Math
## 1497 17-2199 172199 Architecture, Engineer
## 1498 15-1132 151132 Computer, Math
## 1499 13-1081 131081 Business, Finance
## 1500 15-1132 151132 Computer, Math
## 1501 15-1141 151141 Computer, Math
## 1502 15-1121 151121 Computer, Math
## 1503 15-1199 151199 Computer, Math
## 1504 23-1011 231011 Legal
## 1505 19-2042 192042 Life, Physcial, Social Science
## 1506 17-2071 172071 Architecture, Engineer
## 1507 19-1022 191022 Life, Physcial, Social Science
## 1508 15-1132 151132 Computer, Math
## 1509 15-1132 151132 Computer, Math
## 1510 17-2051 172051 Architecture, Engineer
## 1511 15-2031 152031 Computer, Math
## 1512 15-1132 151132 Computer, Math
## 1513 15-1121 151121 Computer, Math
## 1514 15-1131 151131 Computer, Math
## 1515 15-1121 151121 Computer, Math
## 1516 13-1071 131071 Business, Finance
## 1517 15-1132 151132 Computer, Math
## 1518 15-1132 151132 Computer, Math
## 1519 15-1132 151132 Computer, Math
## 1520 13-1041 131041 Business, Finance
## 1521 25-2012 252012 Education, Training
## 1522 15-1132 151132 Computer, Math
## 1523 15-1199 151199 Computer, Math
## 1524 15-1133 151133 Computer, Math
## 1525 15-1132 151132 Computer, Math
## 1526 17-2141 172141 Architecture, Engineer
## 1527 15-1121 151121 Computer, Math
## 1528 15-1132 151132 Computer, Math
## 1529 15-1199 151199 Computer, Math
## 1530 15-1199 151199 Computer, Math
## 1531 15-1132 151132 Computer, Math
## 1532 15-1132 151132 Computer, Math
## 1533 15-1199 151199 Computer, Math
## 1534 15-1132 151132 Computer, Math
## 1535 15-1199 151199 Computer, Math
## 1536 15-1132 151132 Computer, Math
## 1537 19-1042 191042 Life, Physcial, Social Science
## 1538 25-3099 253099 Education, Training
## 1539 15-1199 151199 Computer, Math
## 1540 15-1132 151132 Computer, Math
## 1541 15-1132 151132 Computer, Math
## 1542 15-1131 151131 Computer, Math
## 1543 15-1199 151199 Computer, Math
## 1544 13-2011 132011 Business, Finance
## 1545 23-2011 232011 Legal
## 1546 15-1121 151121 Computer, Math
## 1547 15-1132 151132 Computer, Math
## 1548 15-1199 151199 Computer, Math
## 1549 19-1042 191042 Life, Physcial, Social Science
## 1550 15-1133 151133 Computer, Math
## 1551 15-1199 151199 Computer, Math
## 1552 15-1131 151131 Computer, Math
## 1553 15-1199 151199 Computer, Math
## 1554 15-1132 151132 Computer, Math
## 1555 15-1121 151121 Computer, Math
## 1556 17-2072 172072 Architecture, Engineer
## 1557 15-1132 151132 Computer, Math
## 1558 15-1132 151132 Computer, Math
## 1559 15-1132 151132 Computer, Math
## 1560 15-1132 151132 Computer, Math
## 1561 15-1142 151142 Computer, Math
## 1562 19-2012 192012 Life, Physcial, Social Science
## 1563 15-1199 151199 Computer, Math
## 1564 15-1132 151132 Computer, Math
## 1565 13-2041 132041 Business, Finance
## 1566 15-1199 151199 Computer, Math
## 1567 15-1199 151199 Computer, Math
## 1568 11-3021 113021 Management
## 1569 15-1199 151199 Computer, Math
## 1570 29-1051 291051 Healthcare Practitioner
## 1571 15-1121 151121 Computer, Math
## 1572 15-1199 151199 Computer, Math
## 1573 15-1132 151132 Computer, Math
## 1574 15-1141 151141 Computer, Math
## 1575 15-1132 151132 Computer, Math
## 1576 15-1132 151132 Computer, Math
## 1577 15-1121 151121 Computer, Math
## 1578 15-1132 151132 Computer, Math
## 1579 15-1131 151131 Computer, Math
## 1580 15-1131 151131 Computer, Math
## 1581 15-1132 151132 Computer, Math
## 1582 41-9031 419031 Sales
## 1583 15-1132 151132 Computer, Math
## 1584 17-2071 172071 Architecture, Engineer
## 1585 15-1132 151132 Computer, Math
## 1586 17-2141 172141 Architecture, Engineer
## 1587 15-2041 152041 Computer, Math
## 1588 13-1111 131111 Business, Finance
## 1589 25-1124 251124 Education, Training
## 1590 15-1121 151121 Computer, Math
## 1591 15-1132 151132 Computer, Math
## 1592 15-1132 151132 Computer, Math
## 1593 13-1161 131161 Business, Finance
## 1594 15-2031 152031 Computer, Math
## 1595 15-1199 151199 Computer, Math
## 1596 15-1131 151131 Computer, Math
## 1597 15-1121 151121 Computer, Math
## 1598 15-1132 151132 Computer, Math
## 1599 17-2199 172199 Architecture, Engineer
## 1600 15-1132 151132 Computer, Math
## 1601 11-9031 119031 Management
## 1602 15-1132 151132 Computer, Math
## 1603 11-3021 113021 Management
## 1604 15-1199 151199 Computer, Math
## 1605 15-1121 151121 Computer, Math
## 1606 15-1132 151132 Computer, Math
## 1607 19-2012 192012 Life, Physcial, Social Science
## 1608 15-1132 151132 Computer, Math
## 1609 17-2071 172071 Architecture, Engineer
## 1610 15-2031 152031 Computer, Math
## 1611 15-1132 151132 Computer, Math
## 1612 15-1132 151132 Computer, Math
## 1613 25-1124 251124 Education, Training
## 1614 15-2031 152031 Computer, Math
## 1615 29-1064 291064 Healthcare Practitioner
## 1616 15-1121 151121 Computer, Math
## 1617 11-2011 112011 Management
## 1618 15-1132 151132 Computer, Math
## 1619 15-2031 152031 Computer, Math
## 1620 15-1121 151121 Computer, Math
## 1621 29-1063 291063 Healthcare Practitioner
## 1622 15-1131 151131 Computer, Math
## 1623 15-1131 151131 Computer, Math
## 1624 15-1132 151132 Computer, Math
## 1625 15-1132 151132 Computer, Math
## 1626 19-1021 191021 Life, Physcial, Social Science
## 1627 13-1111 131111 Business, Finance
## 1628 15-1121 151121 Computer, Math
## 1629 15-1199 151199 Computer, Math
## 1630 15-1121 151121 Computer, Math
## 1631 15-1199 151199 Computer, Math
## 1632 19-3099 193099 Life, Physcial, Social Science
## 1633 15-1199 151199 Computer, Math
## 1634 17-2112 172112 Architecture, Engineer
## 1635 15-1132 151132 Computer, Math
## 1636 15-1131 151131 Computer, Math
## 1637 15-1132 151132 Computer, Math
## 1638 29-1069 291069 Healthcare Practitioner
## 1639 13-1081 131081 Business, Finance
## 1640 15-1132 151132 Computer, Math
## 1641 17-2072 172072 Architecture, Engineer
## 1642 15-1132 151132 Computer, Math
## 1643 15-1121 151121 Computer, Math
## 1644 15-1199 151199 Computer, Math
## 1645 15-1131 151131 Computer, Math
## 1646 15-1199 151199 Computer, Math
## 1647 15-1199 151199 Computer, Math
## 1648 15-1132 151132 Computer, Math
## 1649 11-9041 119041 Management
## 1650 11-9041 119041 Management
## 1651 15-2041 152041 Computer, Math
## 1652 15-1132 151132 Computer, Math
## 1653 15-1132 151132 Computer, Math
## 1654 15-2031 152031 Computer, Math
## 1655 15-2031 152031 Computer, Math
## 1656 25-1071 251071 Education, Training
## 1657 15-1199 151199 Computer, Math
## 1658 15-1199 151199 Computer, Math
## 1659 15-1121 151121 Computer, Math
## 1660 15-1132 151132 Computer, Math
## 1661 15-1121 151121 Computer, Math
## 1662 15-1132 151132 Computer, Math
## 1663 17-1012 171012 Architecture, Engineer
## 1664 15-1132 151132 Computer, Math
## 1665 11-3021 113021 Management
## 1666 19-1042 191042 Life, Physcial, Social Science
## 1667 27-3042 273042 Media, Design
## 1668 15-1199 151199 Computer, Math
## 1669 15-2031 152031 Computer, Math
## 1670 15-1132 151132 Computer, Math
## 1671 15-1131 151131 Computer, Math
## 1672 15-1132 151132 Computer, Math
## 1673 15-1132 151132 Computer, Math
## 1674 13-1111 131111 Business, Finance
## 1675 15-1132 151132 Computer, Math
## 1676 15-1199 151199 Computer, Math
## 1677 15-2041 152041 Computer, Math
## 1678 15-1121 151121 Computer, Math
## 1679 15-1132 151132 Computer, Math
## 1680 15-1121 151121 Computer, Math
## 1681 15-1132 151132 Computer, Math
## 1682 15-1199 151199 Computer, Math
## 1683 15-1131 151131 Computer, Math
## 1684 15-1132 151132 Computer, Math
## 1685 17-2171 172171 Architecture, Engineer
## 1686 29-1127 291127 Healthcare Practitioner
## 1687 15-1199 151199 Computer, Math
## 1688 15-1132 151132 Computer, Math
## 1689 15-1199 151199 Computer, Math
## 1690 15-1122 151122 Computer, Math
## 1691 15-1131 151131 Computer, Math
## 1692 15-1132 151132 Computer, Math
## 1693 25-1011 251011 Education, Training
## 1694 15-1199 151199 Computer, Math
## 1695 13-2011 132011 Business, Finance
## 1696 15-1199 151199 Computer, Math
## 1697 15-1121 151121 Computer, Math
## 1698 25-1021 251021 Education, Training
## 1699 15-1132 151132 Computer, Math
## 1700 15-1132 151132 Computer, Math
## 1701 15-2031 152031 Computer, Math
## 1702 15-1132 151132 Computer, Math
## 1703 13-1111 131111 Business, Finance
## 1704 15-1132 151132 Computer, Math
## 1705 17-2051 172051 Architecture, Engineer
## 1706 15-1131 151131 Computer, Math
## 1707 15-1199 151199 Computer, Math
## 1708 27-1022 271022 Media, Design
## 1709 15-1131 151131 Computer, Math
## 1710 15-1121 151121 Computer, Math
## 1711 11-1011 111011 Management
## 1712 19-2032 192032 Life, Physcial, Social Science
## 1713 25-1113 251113 Education, Training
## 1714 15-1132 151132 Computer, Math
## 1715 13-2051 132051 Business, Finance
## 1716 15-1142 151142 Computer, Math
## 1717 15-1121 151121 Computer, Math
## 1718 15-1122 151122 Computer, Math
## 1719 27-3091 273091 Media, Design
## 1720 15-1121 151121 Computer, Math
## 1721 15-1132 151132 Computer, Math
## 1722 15-2031 152031 Computer, Math
## 1723 13-1051 131051 Business, Finance
## 1724 19-1042 191042 Life, Physcial, Social Science
## 1725 15-1132 151132 Computer, Math
## 1726 19-1012 191012 Life, Physcial, Social Science
## 1727 15-1121 151121 Computer, Math
## 1728 29-1021 291021 Healthcare Practitioner
## 1729 15-1132 151132 Computer, Math
## 1730 15-1132 151132 Computer, Math
## 1731 15-1132 151132 Computer, Math
## 1732 15-1132 151132 Computer, Math
## 1733 13-2011 132011 Business, Finance
## 1734 15-1131 151131 Computer, Math
## 1735 15-1132 151132 Computer, Math
## 1736 15-1132 151132 Computer, Math
## 1737 29-1171 291171 Healthcare Practitioner
## 1738 17-2071 172071 Architecture, Engineer
## 1739 15-1132 151132 Computer, Math
## 1740 17-1011 171011 Architecture, Engineer
## 1741 15-1132 151132 Computer, Math
## 1742 15-1199 151199 Computer, Math
## 1743 15-1131 151131 Computer, Math
## 1744 29-1199 291199 Healthcare Practitioner
## 1745 19-1029 191029 Life, Physcial, Social Science
## 1746 15-1132 151132 Computer, Math
## 1747 29-1069 291069 Healthcare Practitioner
## 1748 15-1121 151121 Computer, Math
## 1749 15-1133 151133 Computer, Math
## 1750 25-9031 259031 Education, Training
## 1751 25-1081 251081 Education, Training
## 1752 15-1131 151131 Computer, Math
## 1753 15-1132 151132 Computer, Math
## 1754 15-1132 151132 Computer, Math
## 1755 15-1141 151141 Computer, Math
## 1756 15-1132 151132 Computer, Math
## 1757 15-1199 151199 Computer, Math
## 1758 19-1021 191021 Life, Physcial, Social Science
## 1759 11-2021 112021 Management
## 1760 15-1132 151132 Computer, Math
## 1761 27-1021 271021 Media, Design
## 1762 15-1199 151199 Computer, Math
## 1763 15-1132 151132 Computer, Math
## 1764 15-1132 151132 Computer, Math
## 1765 15-1121 151121 Computer, Math
## 1766 15-1121 151121 Computer, Math
## 1767 19-1042 191042 Life, Physcial, Social Science
## 1768 15-1121 151121 Computer, Math
## 1769 17-2071 172071 Architecture, Engineer
## 1770 15-1132 151132 Computer, Math
## 1771 41-3031 413031 Sales
## 1772 15-1199 151199 Computer, Math
## 1773 15-1133 151133 Computer, Math
## 1774 15-1121 151121 Computer, Math
## 1775 15-1132 151132 Computer, Math
## 1776 15-1133 151133 Computer, Math
## 1777 15-1132 151132 Computer, Math
## 1778 15-1132 151132 Computer, Math
## 1779 15-1132 151132 Computer, Math
## 1780 15-1199 151199 Computer, Math
## 1781 29-1065 291065 Healthcare Practitioner
## 1782 15-1134 151134 Computer, Math
## 1783 29-1021 291021 Healthcare Practitioner
## 1784 15-1132 151132 Computer, Math
## 1785 13-1161 131161 Business, Finance
## 1786 15-1121 151121 Computer, Math
## 1787 29-1069 291069 Healthcare Practitioner
## 1788 15-1199 151199 Computer, Math
## 1789 13-1199 131199 Business, Finance
## 1790 13-2051 132051 Business, Finance
## 1791 13-1161 131161 Business, Finance
## 1792 15-1131 151131 Computer, Math
## 1793 15-1121 151121 Computer, Math
## 1794 17-2141 172141 Architecture, Engineer
## 1795 11-3021 113021 Management
## 1796 15-1199 151199 Computer, Math
## 1797 15-1121 151121 Computer, Math
## 1798 15-1132 151132 Computer, Math
## 1799 15-1134 151134 Computer, Math
## 1800 15-1132 151132 Computer, Math
## 1801 15-1133 151133 Computer, Math
## 1802 15-1199 151199 Computer, Math
## 1803 17-2051 172051 Architecture, Engineer
## 1804 29-1021 291021 Healthcare Practitioner
## 1805 15-1132 151132 Computer, Math
## 1806 15-1199 151199 Computer, Math
## 1807 15-1121 151121 Computer, Math
## 1808 15-1121 151121 Computer, Math
## 1809 29-1127 291127 Healthcare Practitioner
## 1810 13-1051 131051 Business, Finance
## 1811 13-2051 132051 Business, Finance
## 1812 15-1132 151132 Computer, Math
## 1813 15-1121 151121 Computer, Math
## 1814 13-1111 131111 Business, Finance
## 1815 15-1132 151132 Computer, Math
## 1816 15-1133 151133 Computer, Math
## 1817 15-1131 151131 Computer, Math
## 1818 23-1011 231011 Legal
## 1819 15-1132 151132 Computer, Math
## 1820 15-1132 151132 Computer, Math
## 1821 17-2199 172199 Architecture, Engineer
## 1822 19-1021 191021 Life, Physcial, Social Science
## 1823 11-3051 113051 Management
## 1824 15-1142 151142 Computer, Math
## 1825 15-1131 151131 Computer, Math
## 1826 25-1071 251071 Education, Training
## 1827 15-1132 151132 Computer, Math
## 1828 13-1071 131071 Business, Finance
## 1829 15-1199 151199 Computer, Math
## 1830 15-1132 151132 Computer, Math
## 1831 15-1141 151141 Computer, Math
## 1832 25-9031 259031 Education, Training
## 1833 15-1121 151121 Computer, Math
## 1834 15-1121 151121 Computer, Math
## 1835 15-1199 151199 Computer, Math
## 1836 15-1132 151132 Computer, Math
## 1837 15-1141 151141 Computer, Math
## 1838 15-1132 151132 Computer, Math
## 1839 15-1132 151132 Computer, Math
## 1840 15-1132 151132 Computer, Math
## 1841 15-1111 151111 Computer, Math
## 1842 15-1132 151132 Computer, Math
## 1843 29-1123 291123 Healthcare Practitioner
## 1844 15-1132 151132 Computer, Math
## 1845 15-1132 151132 Computer, Math
## 1846 15-2031 152031 Computer, Math
## 1847 15-1132 151132 Computer, Math
## 1848 17-2051 172051 Architecture, Engineer
## 1849 15-1121 151121 Computer, Math
## 1850 15-1132 151132 Computer, Math
## 1851 15-1131 151131 Computer, Math
## 1852 15-1132 151132 Computer, Math
## 1853 15-1121 151121 Computer, Math
## 1854 15-1132 151132 Computer, Math
## 1855 15-1121 151121 Computer, Math
## 1856 15-1131 151131 Computer, Math
## 1857 25-1071 251071 Education, Training
## 1858 15-1132 151132 Computer, Math
## 1859 15-1121 151121 Computer, Math
## 1860 15-1131 151131 Computer, Math
## 1861 15-1199 151199 Computer, Math
## 1862 29-9099 299099 Healthcare Practitioner
## 1863 15-1199 151199 Computer, Math
## 1864 15-1121 151121 Computer, Math
## 1865 15-1132 151132 Computer, Math
## 1866 13-1111 131111 Business, Finance
## 1867 13-1111 131111 Business, Finance
## 1868 19-3011 193011 Life, Physcial, Social Science
## 1869 15-1132 151132 Computer, Math
## 1870 19-1021 191021 Life, Physcial, Social Science
## 1871 13-1161 131161 Business, Finance
## 1872 13-2011 132011 Business, Finance
## 1873 13-2011 132011 Business, Finance
## 1874 15-2031 152031 Computer, Math
## 1875 15-1199 151199 Computer, Math
## 1876 29-9099 299099 Healthcare Practitioner
## 1877 27-1021 271021 Media, Design
## 1878 15-1199 151199 Computer, Math
## 1879 15-1131 151131 Computer, Math
## 1880 15-1199 151199 Computer, Math
## 1881 15-1132 151132 Computer, Math
## 1882 13-1081 131081 Business, Finance
## 1883 15-1121 151121 Computer, Math
## 1884 25-1021 251021 Education, Training
## 1885 15-1132 151132 Computer, Math
## 1886 19-2031 192031 Life, Physcial, Social Science
## 1887 15-1134 151134 Computer, Math
## 1888 15-1132 151132 Computer, Math
## 1889 15-1132 151132 Computer, Math
## 1890 17-2071 172071 Architecture, Engineer
## 1891 13-1161 131161 Business, Finance
## 1892 17-2131 172131 Architecture, Engineer
## 1893 15-1132 151132 Computer, Math
## 1894 11-2021 112021 Management
## 1895 15-1132 151132 Computer, Math
## 1896 15-1132 151132 Computer, Math
## 1897 15-2031 152031 Computer, Math
## 1898 29-1065 291065 Healthcare Practitioner
## 1899 15-1132 151132 Computer, Math
## 1900 15-1132 151132 Computer, Math
## 1901 15-1141 151141 Computer, Math
## 1902 15-1199 151199 Computer, Math
## 1903 15-1131 151131 Computer, Math
## 1904 15-1132 151132 Computer, Math
## 1905 15-1132 151132 Computer, Math
## 1906 15-1121 151121 Computer, Math
## 1907 25-1032 251032 Education, Training
## 1908 15-1132 151132 Computer, Math
## 1909 15-1132 151132 Computer, Math
## 1910 15-1131 151131 Computer, Math
## 1911 15-1199 151199 Computer, Math
## 1912 15-1132 151132 Computer, Math
## 1913 19-2032 192032 Life, Physcial, Social Science
## 1914 15-1132 151132 Computer, Math
## 1915 15-1133 151133 Computer, Math
## 1916 15-1121 151121 Computer, Math
## 1917 15-1132 151132 Computer, Math
## 1918 15-2031 152031 Computer, Math
## 1919 15-1199 151199 Computer, Math
## 1920 13-1161 131161 Business, Finance
## 1921 15-1199 151199 Computer, Math
## 1922 15-1133 151133 Computer, Math
## 1923 15-1132 151132 Computer, Math
## 1924 15-1132 151132 Computer, Math
## 1925 15-1132 151132 Computer, Math
## 1926 15-1121 151121 Computer, Math
## 1927 15-1111 151111 Computer, Math
## 1928 15-1132 151132 Computer, Math
## 1929 15-1199 151199 Computer, Math
## 1930 15-2031 152031 Computer, Math
## 1931 15-1132 151132 Computer, Math
## 1932 15-1131 151131 Computer, Math
## 1933 29-1062 291062 Healthcare Practitioner
## 1934 15-1132 151132 Computer, Math
## 1935 15-1121 151121 Computer, Math
## 1936 15-1199 151199 Computer, Math
## 1937 15-1133 151133 Computer, Math
## 1938 15-1131 151131 Computer, Math
## 1939 15-1132 151132 Computer, Math
## 1940 15-1199 151199 Computer, Math
## 1941 15-1132 151132 Computer, Math
## 1942 15-1122 151122 Computer, Math
## 1943 13-2051 132051 Business, Finance
## 1944 17-2141 172141 Architecture, Engineer
## 1945 15-1142 151142 Computer, Math
## 1946 15-1132 151132 Computer, Math
## 1947 15-1132 151132 Computer, Math
## 1948 13-2011 132011 Business, Finance
## 1949 15-2031 152031 Computer, Math
## 1950 11-3071 113071 Management
## 1951 15-1132 151132 Computer, Math
## 1952 17-2072 172072 Architecture, Engineer
## 1953 15-1142 151142 Computer, Math
## 1954 11-3021 113021 Management
## 1955 15-1132 151132 Computer, Math
## 1956 15-1121 151121 Computer, Math
## 1957 17-2072 172072 Architecture, Engineer
## 1958 15-1121 151121 Computer, Math
## 1959 15-1132 151132 Computer, Math
## 1960 15-1132 151132 Computer, Math
## 1961 11-9013 119013 Management
## 1962 15-1199 151199 Computer, Math
## 1963 15-1132 151132 Computer, Math
## 1964 15-1132 151132 Computer, Math
## 1965 15-1132 151132 Computer, Math
## 1966 15-1142 151142 Computer, Math
## 1967 19-2031 192031 Life, Physcial, Social Science
## 1968 15-1131 151131 Computer, Math
## 1969 15-1132 151132 Computer, Math
## 1970 15-1199 151199 Computer, Math
## 1971 15-1132 151132 Computer, Math
## 1972 15-1132 151132 Computer, Math
## 1973 15-1132 151132 Computer, Math
## 1974 15-1121 151121 Computer, Math
## 1975 13-1161 131161 Business, Finance
## 1976 15-1132 151132 Computer, Math
## 1977 29-9099 299099 Healthcare Practitioner
## 1978 29-1127 291127 Healthcare Practitioner
## 1979 15-1132 151132 Computer, Math
## 1980 15-1142 151142 Computer, Math
## 1981 15-1132 151132 Computer, Math
## 1982 15-1132 151132 Computer, Math
## 1983 15-1132 151132 Computer, Math
## 1984 15-1132 151132 Computer, Math
## 1985 13-1081 131081 Business, Finance
## 1986 15-1121 151121 Computer, Math
## 1987 15-1199 151199 Computer, Math
## 1988 15-1199 151199 Computer, Math
## 1989 15-1199 151199 Computer, Math
## 1990 15-1132 151132 Computer, Math
## 1991 15-1133 151133 Computer, Math
## 1992 15-1132 151132 Computer, Math
## 1993 15-1132 151132 Computer, Math
## 1994 15-1121 151121 Computer, Math
## 1995 15-1132 151132 Computer, Math
## 1996 15-2031 152031 Computer, Math
## 1997 15-1121 151121 Computer, Math
## 1998 15-1142 151142 Computer, Math
## 1999 17-3011 173011 Architecture, Engineer
## 2000 15-1132 151132 Computer, Math
## 2001 15-1133 151133 Computer, Math
## 2002 15-1132 151132 Computer, Math
## 2003 15-1142 151142 Computer, Math
## 2004 15-1199 151199 Computer, Math
## 2005 15-1121 151121 Computer, Math
## 2006 15-1141 151141 Computer, Math
## 2007 15-1132 151132 Computer, Math
## 2008 15-1121 151121 Computer, Math
## 2009 15-1132 151132 Computer, Math
## 2010 15-1132 151132 Computer, Math
## 2011 11-9121 119121 Management
## 2012 15-1199 151199 Computer, Math
## 2013 15-1122 151122 Computer, Math
## 2014 15-1132 151132 Computer, Math
## 2015 19-1013 191013 Life, Physcial, Social Science
## 2016 15-1121 151121 Computer, Math
## 2017 15-1121 151121 Computer, Math
## 2018 15-1132 151132 Computer, Math
## 2019 15-1121 151121 Computer, Math
## 2020 15-1152 151152 Computer, Math
## 2021 13-2051 132051 Business, Finance
## 2022 15-1122 151122 Computer, Math
## 2023 15-1199 151199 Computer, Math
## 2024 13-2051 132051 Business, Finance
## 2025 15-1199 151199 Computer, Math
## 2026 15-1132 151132 Computer, Math
## 2027 17-2072 172072 Architecture, Engineer
## 2028 15-1121 151121 Computer, Math
## 2029 13-2011 132011 Business, Finance
## 2030 15-1132 151132 Computer, Math
## 2031 15-1132 151132 Computer, Math
## 2032 17-2112 172112 Architecture, Engineer
## 2033 15-1132 151132 Computer, Math
## 2034 15-1132 151132 Computer, Math
## 2035 15-1141 151141 Computer, Math
## 2036 15-1199 151199 Computer, Math
## 2037 17-2131 172131 Architecture, Engineer
## 2038 15-1132 151132 Computer, Math
## 2039 15-1199 151199 Computer, Math
## 2040 11-3071 113071 Management
## 2041 15-1141 151141 Computer, Math
## 2042 15-1132 151132 Computer, Math
## 2043 15-1132 151132 Computer, Math
## 2044 15-1132 151132 Computer, Math
## 2045 17-2141 172141 Architecture, Engineer
## 2046 15-1121 151121 Computer, Math
## 2047 15-1133 151133 Computer, Math
## 2048 15-1132 151132 Computer, Math
## 2049 15-1132 151132 Computer, Math
## 2050 15-1111 151111 Computer, Math
## 2051 15-1132 151132 Computer, Math
## 2052 17-2112 172112 Architecture, Engineer
## 2053 15-1121 151121 Computer, Math
## 2054 15-1132 151132 Computer, Math
## 2055 15-1132 151132 Computer, Math
## 2056 13-2011 132011 Business, Finance
## 2057 17-2072 172072 Architecture, Engineer
## 2058 15-1132 151132 Computer, Math
## 2059 13-2051 132051 Business, Finance
## 2060 15-1199 151199 Computer, Math
## 2061 15-1121 151121 Computer, Math
## 2062 15-1199 151199 Computer, Math
## 2063 15-1141 151141 Computer, Math
## 2064 11-3071 113071 Management
## 2065 15-1132 151132 Computer, Math
## 2066 13-2011 132011 Business, Finance
## 2067 15-1132 151132 Computer, Math
## 2068 15-1132 151132 Computer, Math
## 2069 15-1131 151131 Computer, Math
## 2070 13-1111 131111 Business, Finance
## 2071 15-1132 151132 Computer, Math
## 2072 15-2041 152041 Computer, Math
## 2073 29-2011 292011 Healthcare Practitioner
## 2074 15-1121 151121 Computer, Math
## 2075 15-1121 151121 Computer, Math
## 2076 15-1132 151132 Computer, Math
## 2077 15-1142 151142 Computer, Math
## 2078 15-1132 151132 Computer, Math
## 2079 15-1199 151199 Computer, Math
## 2080 13-1161 131161 Business, Finance
## 2081 15-1132 151132 Computer, Math
## 2082 15-1199 151199 Computer, Math
## 2083 15-1199 151199 Computer, Math
## 2084 19-3041 193041 Life, Physcial, Social Science
## 2085 15-1132 151132 Computer, Math
## 2086 15-1132 151132 Computer, Math
## 2087 17-2141 172141 Architecture, Engineer
## 2088 17-2144 172144 Architecture, Engineer
## 2089 19-2012 192012 Life, Physcial, Social Science
## 2090 17-2051 172051 Architecture, Engineer
## 2091 15-1132 151132 Computer, Math
## 2092 13-1075 131075 Business, Finance
## 2093 15-1133 151133 Computer, Math
## 2094 15-1133 151133 Computer, Math
## 2095 29-1127 291127 Healthcare Practitioner
## 2096 15-1131 151131 Computer, Math
## 2097 15-1132 151132 Computer, Math
## 2098 15-1133 151133 Computer, Math
## 2099 15-1132 151132 Computer, Math
## 2100 11-3021 113021 Management
## 2101 11-3031 113031 Management
## 2102 15-1132 151132 Computer, Math
## 2103 19-4021 194021 Life, Physcial, Social Science
## 2104 25-3011 253011 Education, Training
## 2105 15-1132 151132 Computer, Math
## 2106 15-1133 151133 Computer, Math
## 2107 15-1132 151132 Computer, Math
## 2108 15-1132 151132 Computer, Math
## 2109 15-1141 151141 Computer, Math
## 2110 17-2071 172071 Architecture, Engineer
## 2111 13-1111 131111 Business, Finance
## 2112 19-1029 191029 Life, Physcial, Social Science
## 2113 15-1034 151034 Computer, Math
## 2114 15-1132 151132 Computer, Math
## 2115 15-1132 151132 Computer, Math
## 2116 15-2031 152031 Computer, Math
## 2117 11-9111 119111 Management
## 2118 15-1121 151121 Computer, Math
## 2119 29-1069 291069 Healthcare Practitioner
## 2120 15-1199 151199 Computer, Math
## 2121 15-1121 151121 Computer, Math
## 2122 15-1132 151132 Computer, Math
## 2123 13-1023 131023 Business, Finance
## 2124 11-2022 112022 Management
## 2125 13-1161 131161 Business, Finance
## 2126 15-1132 151132 Computer, Math
## 2127 17-2141 172141 Architecture, Engineer
## 2128 15-2031 152031 Computer, Math
## 2129 15-1132 151132 Computer, Math
## 2130 15-1199 151199 Computer, Math
## 2131 15-1132 151132 Computer, Math
## 2132 15-1132 151132 Computer, Math
## 2133 15-1132 151132 Computer, Math
## 2134 15-1121 151121 Computer, Math
## 2135 15-1142 151142 Computer, Math
## 2136 15-1142 151142 Computer, Math
## 2137 15-1132 151132 Computer, Math
## 2138 15-1132 151132 Computer, Math
## 2139 15-1199 151199 Computer, Math
## 2140 15-1141 151141 Computer, Math
## 2141 17-2051 172051 Architecture, Engineer
## 2142 15-1132 151132 Computer, Math
## 2143 15-1133 151133 Computer, Math
## 2144 15-1132 151132 Computer, Math
## 2145 15-1121 151121 Computer, Math
## 2146 17-2112 172112 Architecture, Engineer
## 2147 15-1121 151121 Computer, Math
## 2148 15-1132 151132 Computer, Math
## 2149 15-1132 151132 Computer, Math
## 2150 15-1133 151133 Computer, Math
## 2151 15-1132 151132 Computer, Math
## 2152 15-1121 151121 Computer, Math
## 2153 15-1132 151132 Computer, Math
## 2154 15-1199 151199 Computer, Math
## 2155 15-1143 151143 Computer, Math
## 2156 15-1132 151132 Computer, Math
## 2157 15-1132 151132 Computer, Math
## 2158 15-1199 151199 Computer, Math
## 2159 15-1132 151132 Computer, Math
## 2160 15-1141 151141 Computer, Math
## 2161 15-1132 151132 Computer, Math
## 2162 15-1121 151121 Computer, Math
## 2163 15-1121 151121 Computer, Math
## 2164 13-2051 132051 Business, Finance
## 2165 15-1199 151199 Computer, Math
## 2166 15-1132 151132 Computer, Math
## 2167 15-1132 151132 Computer, Math
## 2168 15-1199 151199 Computer, Math
## 2169 15-1199 151199 Computer, Math
## 2170 13-1111 131111 Business, Finance
## 2171 15-1132 151132 Computer, Math
## 2172 15-1132 151132 Computer, Math
## 2173 15-1132 151132 Computer, Math
## 2174 29-2011 292011 Healthcare Practitioner
## 2175 25-1052 251052 Education, Training
## 2176 17-2072 172072 Architecture, Engineer
## 2177 21-1023 211023 Social Service
## 2178 15-1132 151132 Computer, Math
## 2179 15-1199 151199 Computer, Math
## 2180 15-1132 151132 Computer, Math
## 2181 15-1132 151132 Computer, Math
## 2182 25-2021 252021 Education, Training
## 2183 15-1132 151132 Computer, Math
## 2184 15-1132 151132 Computer, Math
## 2185 15-1121 151121 Computer, Math
## 2186 15-1132 151132 Computer, Math
## 2187 15-1133 151133 Computer, Math
## 2188 17-2112 172112 Architecture, Engineer
## 2189 15-1141 151141 Computer, Math
## 2190 11-3021 113021 Management
## 2191 11-3021 113021 Management
## 2192 15-1132 151132 Computer, Math
## 2193 29-1069 291069 Healthcare Practitioner
## 2194 15-1132 151132 Computer, Math
## 2195 15-1133 151133 Computer, Math
## 2196 15-1199 151199 Computer, Math
## 2197 17-2141 172141 Architecture, Engineer
## 2198 15-1131 151131 Computer, Math
## 2199 15-1132 151132 Computer, Math
## 2200 15-1132 151132 Computer, Math
## 2201 15-1121 151121 Computer, Math
## 2202 15-1121 151121 Computer, Math
## 2203 13-1111 131111 Business, Finance
## 2204 15-2031 152031 Computer, Math
## 2205 17-2141 172141 Architecture, Engineer
## 2206 15-1121 151121 Computer, Math
## 2207 15-1199 151199 Computer, Math
## 2208 25-2054 252054 Education, Training
## 2209 15-1132 151132 Computer, Math
## 2210 13-1051 131051 Business, Finance
## 2211 15-1132 151132 Computer, Math
## 2212 17-2141 172141 Architecture, Engineer
## 2213 13-2011 132011 Business, Finance
## 2214 15-1121 151121 Computer, Math
## 2215 15-1132 151132 Computer, Math
## 2216 11-2022 112022 Management
## 2217 15-1199 151199 Computer, Math
## 2218 15-1121 151121 Computer, Math
## 2219 11-3071 113071 Management
## 2220 15-1121 151121 Computer, Math
## 2221 11-1021 111021 Management
## 2222 29-1064 291064 Healthcare Practitioner
## 2223 15-1133 151133 Computer, Math
## 2224 15-1121 151121 Computer, Math
## 2225 15-1132 151132 Computer, Math
## 2226 15-1132 151132 Computer, Math
## 2227 13-1081 131081 Business, Finance
## 2228 21-1013 211013 Social Service
## 2229 15-1133 151133 Computer, Math
## 2230 15-1121 151121 Computer, Math
## 2231 15-1133 151133 Computer, Math
## 2232 29-1065 291065 Healthcare Practitioner
## 2233 25-1071 251071 Education, Training
## 2234 13-2051 132051 Business, Finance
## 2235 15-1199 151199 Computer, Math
## 2236 11-3021 113021 Management
## 2237 15-1134 151134 Computer, Math
## 2238 15-1199 151199 Computer, Math
## 2239 17-2072 172072 Architecture, Engineer
## 2240 15-1132 151132 Computer, Math
## 2241 15-1132 151132 Computer, Math
## 2242 13-1111 131111 Business, Finance
## 2243 15-1141 151141 Computer, Math
## 2244 15-1132 151132 Computer, Math
## 2245 15-1121 151121 Computer, Math
## 2246 15-1199 151199 Computer, Math
## 2247 25-1032 251032 Education, Training
## 2248 15-1199 151199 Computer, Math
## 2249 15-1132 151132 Computer, Math
## 2250 15-1132 151132 Computer, Math
## 2251 25-1071 251071 Education, Training
## 2252 29-1123 291123 Healthcare Practitioner
## 2253 15-1132 151132 Computer, Math
## 2254 15-1132 151132 Computer, Math
## 2255 15-1121 151121 Computer, Math
## 2256 15-1133 151133 Computer, Math
## 2257 15-1132 151132 Computer, Math
## 2258 15-1132 151132 Computer, Math
## 2259 15-1133 151133 Computer, Math
## 2260 15-2031 152031 Computer, Math
## 2261 17-2072 172072 Architecture, Engineer
## 2262 15-1132 151132 Computer, Math
## 2263 15-1131 151131 Computer, Math
## 2264 15-1121 151121 Computer, Math
## 2265 15-1121 151121 Computer, Math
## 2266 17-2081 172081 Architecture, Engineer
## 2267 15-1121 151121 Computer, Math
## 2268 15-1131 151131 Computer, Math
## 2269 15-1132 151132 Computer, Math
## 2270 15-1132 151132 Computer, Math
## 2271 15-1134 151134 Computer, Math
## 2272 15-2031 152031 Computer, Math
## 2273 15-1199 151199 Computer, Math
## 2274 15-1132 151132 Computer, Math
## 2275 29-1051 291051 Healthcare Practitioner
## 2276 15-1199 151199 Computer, Math
## 2277 15-1132 151132 Computer, Math
## 2278 15-1199 151199 Computer, Math
## 2279 15-1142 151142 Computer, Math
## 2280 25-1032 251032 Education, Training
## 2281 15-2041 152041 Computer, Math
## 2282 15-1199 151199 Computer, Math
## 2283 15-1132 151132 Computer, Math
## 2284 15-1121 151121 Computer, Math
## 2285 13-2051 132051 Business, Finance
## 2286 19-4021 194021 Life, Physcial, Social Science
## 2287 25-1122 251122 Education, Training
## 2288 15-1132 151132 Computer, Math
## 2289 15-1121 151121 Computer, Math
## 2290 15-1132 151132 Computer, Math
## 2291 15-1132 151132 Computer, Math
## 2292 15-1121 151121 Computer, Math
## 2293 15-2031 152031 Computer, Math
## 2294 15-1121 151121 Computer, Math
## 2295 29-1131 291131 Healthcare Practitioner
## 2296 15-1132 151132 Computer, Math
## 2297 15-1131 151131 Computer, Math
## 2298 15-1111 151111 Computer, Math
## 2299 15-1199 151199 Computer, Math
## 2300 15-1133 151133 Computer, Math
## 2301 13-2031 132031 Business, Finance
## 2302 17-2112 172112 Architecture, Engineer
## 2303 15-1142 151142 Computer, Math
## 2304 13-2051 132051 Business, Finance
## 2305 15-1132 151132 Computer, Math
## 2306 19-1042 191042 Life, Physcial, Social Science
## 2307 15-1199 151199 Computer, Math
## 2308 15-1132 151132 Computer, Math
## 2309 15-1131 151131 Computer, Math
## 2310 17-2112 172112 Architecture, Engineer
## 2311 15-1199 151199 Computer, Math
## 2312 11-2021 112021 Management
## 2313 15-1121 151121 Computer, Math
## 2314 13-1022 131022 Business, Finance
## 2315 15-1132 151132 Computer, Math
## 2316 15-1132 151132 Computer, Math
## 2317 15-1132 151132 Computer, Math
## 2318 15-1199 151199 Computer, Math
## 2319 15-1132 151132 Computer, Math
## 2320 17-2051 172051 Architecture, Engineer
## 2321 13-2031 132031 Business, Finance
## 2322 15-1132 151132 Computer, Math
## 2323 15-1132 151132 Computer, Math
## 2324 13-1111 131111 Business, Finance
## 2325 11-3031 113031 Management
## 2326 29-1069 291069 Healthcare Practitioner
## 2327 15-1141 151141 Computer, Math
## 2328 41-9031 419031 Sales
## 2329 13-1111 131111 Business, Finance
## 2330 15-1132 151132 Computer, Math
## 2331 15-1121 151121 Computer, Math
## 2332 17-2112 172112 Architecture, Engineer
## 2333 15-1121 151121 Computer, Math
## 2334 29-1063 291063 Healthcare Practitioner
## 2335 15-1132 151132 Computer, Math
## 2336 13-1111 131111 Business, Finance
## 2337 15-1132 151132 Computer, Math
## 2338 15-1132 151132 Computer, Math
## 2339 13-1111 131111 Business, Finance
## 2340 41-9031 419031 Sales
## 2341 15-1121 151121 Computer, Math
## 2342 15-1132 151132 Computer, Math
## 2343 15-1132 151132 Computer, Math
## 2344 15-1199 151199 Computer, Math
## 2345 15-1132 151132 Computer, Math
## 2346 15-1132 151132 Computer, Math
## 2347 19-2031 192031 Life, Physcial, Social Science
## 2348 15-1132 151132 Computer, Math
## 2349 15-1141 151141 Computer, Math
## 2350 15-1199 151199 Computer, Math
## 2351 13-1071 131071 Business, Finance
## 2352 25-1124 251124 Education, Training
## 2353 15-1121 151121 Computer, Math
## 2354 13-2011 132011 Business, Finance
## 2355 15-1132 151132 Computer, Math
## 2356 15-1132 151132 Computer, Math
## 2357 23-1011 231011 Legal
## 2358 15-1132 151132 Computer, Math
## 2359 15-1121 151121 Computer, Math
## 2360 15-1199 151199 Computer, Math
## 2361 15-1121 151121 Computer, Math
## 2362 13-1151 131151 Business, Finance
## 2363 25-1071 251071 Education, Training
## 2364 15-1132 151132 Computer, Math
## 2365 15-1132 151132 Computer, Math
## 2366 15-1131 151131 Computer, Math
## 2367 15-1132 151132 Computer, Math
## 2368 15-1132 151132 Computer, Math
## 2369 13-2011 132011 Business, Finance
## 2370 15-1131 151131 Computer, Math
## 2371 15-1132 151132 Computer, Math
## 2372 19-1021 191021 Life, Physcial, Social Science
## 2373 15-1121 151121 Computer, Math
## 2374 15-1133 151133 Computer, Math
## 2375 15-1132 151132 Computer, Math
## 2376 15-1199 151199 Computer, Math
## 2377 15-1132 151132 Computer, Math
## 2378 15-1199 151199 Computer, Math
## 2379 15-1121 151121 Computer, Math
## 2380 17-2071 172071 Architecture, Engineer
## 2381 15-1121 151121 Computer, Math
## 2382 13-1111 131111 Business, Finance
## 2383 15-1143 151143 Computer, Math
## 2384 15-1121 151121 Computer, Math
## 2385 15-1132 151132 Computer, Math
## 2386 17-2071 172071 Architecture, Engineer
## 2387 13-1111 131111 Business, Finance
## 2388 11-9041 119041 Management
## 2389 15-1121 151121 Computer, Math
## 2390 15-1132 151132 Computer, Math
## 2391 15-1132 151132 Computer, Math
## 2392 15-1199 151199 Computer, Math
## 2393 15-2031 152031 Computer, Math
## 2394 15-1121 151121 Computer, Math
## 2395 29-1069 291069 Healthcare Practitioner
## 2396 15-1133 151133 Computer, Math
## 2397 15-1132 151132 Computer, Math
## 2398 15-1132 151132 Computer, Math
## 2399 15-1132 151132 Computer, Math
## 2400 15-1133 151133 Computer, Math
## 2401 15-1133 151133 Computer, Math
## 2402 27-3031 273031 Media, Design
## 2403 15-1132 151132 Computer, Math
## 2404 13-1111 131111 Business, Finance
## 2405 15-1121 151121 Computer, Math
## 2406 15-1121 151121 Computer, Math
## 2407 15-1132 151132 Computer, Math
## 2408 15-2041 152041 Computer, Math
## 2409 15-1199 151199 Computer, Math
## 2410 15-1132 151132 Computer, Math
## 2411 15-1133 151133 Computer, Math
## 2412 15-1132 151132 Computer, Math
## 2413 15-1132 151132 Computer, Math
## 2414 15-1132 151132 Computer, Math
## 2415 13-2011 132011 Business, Finance
## 2416 15-1132 151132 Computer, Math
## 2417 15-1132 151132 Computer, Math
## 2418 15-1132 151132 Computer, Math
## 2419 13-1071 131071 Business, Finance
## 2420 15-1132 151132 Computer, Math
## 2421 15-1199 151199 Computer, Math
## 2422 15-1142 151142 Computer, Math
## 2423 15-1133 151133 Computer, Math
## 2424 15-1141 151141 Computer, Math
## 2425 13-2051 132051 Business, Finance
## 2426 11-3021 113021 Management
## 2427 15-1199 151199 Computer, Math
## 2428 13-1111 131111 Business, Finance
## 2429 15-2031 152031 Computer, Math
## 2430 15-1132 151132 Computer, Math
## 2431 15-1132 151132 Computer, Math
## 2432 25-1071 251071 Education, Training
## 2433 15-1121 151121 Computer, Math
## 2434 15-1133 151133 Computer, Math
## 2435 15-1121 151121 Computer, Math
## 2436 15-1121 151121 Computer, Math
## 2437 15-2041 152041 Computer, Math
## 2438 15-1132 151132 Computer, Math
## 2439 15-1121 151121 Computer, Math
## 2440 15-1134 151134 Computer, Math
## 2441 15-1121 151121 Computer, Math
## 2442 11-3021 113021 Management
## 2443 15-1121 151121 Computer, Math
## 2444 15-1121 151121 Computer, Math
## 2445 13-2011 132011 Business, Finance
## 2446 13-1111 131111 Business, Finance
## 2447 17-2071 172071 Architecture, Engineer
## 2448 13-1161 131161 Business, Finance
## 2449 15-1133 151133 Computer, Math
## 2450 15-1199 151199 Computer, Math
## 2451 15-1132 151132 Computer, Math
## 2452 15-1132 151132 Computer, Math
## 2453 15-1132 151132 Computer, Math
## 2454 15-1132 151132 Computer, Math
## 2455 15-1132 151132 Computer, Math
## 2456 13-1111 131111 Business, Finance
## 2457 15-1132 151132 Computer, Math
## 2458 13-1081 131081 Business, Finance
## 2459 15-1199 151199 Computer, Math
## 2460 15-1132 151132 Computer, Math
## 2461 13-2011 132011 Business, Finance
## 2462 19-1042 191042 Life, Physcial, Social Science
## 2463 15-1199 151199 Computer, Math
## 2464 15-1131 151131 Computer, Math
## 2465 29-1051 291051 Healthcare Practitioner
## 2466 15-1142 151142 Computer, Math
## 2467 15-1132 151132 Computer, Math
## 2468 15-1132 151132 Computer, Math
## 2469 15-1121 151121 Computer, Math
## 2470 15-1199 151199 Computer, Math
## 2471 15-1132 151132 Computer, Math
## 2472 15-1121 151121 Computer, Math
## 2473 17-2071 172071 Architecture, Engineer
## 2474 15-1132 151132 Computer, Math
## 2475 15-1132 151132 Computer, Math
## 2476 15-1121 151121 Computer, Math
## 2477 17-2112 172112 Architecture, Engineer
## 2478 15-1122 151122 Computer, Math
## 2479 27-3031 273031 Media, Design
## 2480 15-1121 151121 Computer, Math
## 2481 15-1133 151133 Computer, Math
## 2482 15-1132 151132 Computer, Math
## 2483 13-2011 132011 Business, Finance
## 2484 15-1134 151134 Computer, Math
## 2485 15-1199 151199 Computer, Math
## 2486 15-1131 151131 Computer, Math
## 2487 15-1121 151121 Computer, Math
## 2488 15-1199 151199 Computer, Math
## 2489 15-1121 151121 Computer, Math
## 2490 15-1121 151121 Computer, Math
## 2491 19-2031 192031 Life, Physcial, Social Science
## 2492 29-1122 291122 Healthcare Practitioner
## 2493 15-1132 151132 Computer, Math
## 2494 15-1132 151132 Computer, Math
## 2495 15-1132 151132 Computer, Math
## 2496 15-1121 151121 Computer, Math
## 2497 13-1199 131199 Business, Finance
## 2498 15-1141 151141 Computer, Math
## 2499 15-1121 151121 Computer, Math
## 2500 15-1132 151132 Computer, Math
## 2501 15-1199 151199 Computer, Math
## 2502 15-1132 151132 Computer, Math
## 2503 13-1111 131111 Business, Finance
## 2504 15-1141 151141 Computer, Math
## 2505 15-1121 151121 Computer, Math
## 2506 27-1024 271024 Media, Design
## 2507 15-1132 151132 Computer, Math
## 2508 15-1199 151199 Computer, Math
## 2509 17-2051 172051 Architecture, Engineer
## 2510 15-1132 151132 Computer, Math
## 2511 13-2011 132011 Business, Finance
## 2512 15-1121 151121 Computer, Math
## 2513 15-1133 151133 Computer, Math
## 2514 15-1132 151132 Computer, Math
## 2515 25-1011 251011 Education, Training
## 2516 15-1121 151121 Computer, Math
## 2517 15-1199 151199 Computer, Math
## 2518 15-1132 151132 Computer, Math
## 2519 15-1132 151132 Computer, Math
## 2520 15-1133 151133 Computer, Math
## 2521 13-2011 132011 Business, Finance
## 2522 15-1132 151132 Computer, Math
## 2523 15-1121 151121 Computer, Math
## 2524 15-1199 151199 Computer, Math
## 2525 15-2031 152031 Computer, Math
## 2526 15-1121 151121 Computer, Math
## 2527 15-1132 151132 Computer, Math
## 2528 25-4021 254021 Education, Training
## 2529 15-1133 151133 Computer, Math
## 2530 15-1132 151132 Computer, Math
## 2531 15-1132 151132 Computer, Math
## 2532 17-2131 172131 Architecture, Engineer
## 2533 15-1132 151132 Computer, Math
## 2534 15-1199 151199 Computer, Math
## 2535 15-1121 151121 Computer, Math
## 2536 17-2131 172131 Architecture, Engineer
## 2537 15-1121 151121 Computer, Math
## 2538 15-1134 151134 Computer, Math
## 2539 15-1133 151133 Computer, Math
## 2540 15-1141 151141 Computer, Math
## 2541 15-2031 152031 Computer, Math
## 2542 15-1132 151132 Computer, Math
## 2543 15-1199 151199 Computer, Math
## 2544 15-1132 151132 Computer, Math
## 2545 15-1132 151132 Computer, Math
## 2546 13-2051 132051 Business, Finance
## 2547 15-1121 151121 Computer, Math
## 2548 13-1161 131161 Business, Finance
## 2549 15-1132 151132 Computer, Math
## 2550 15-1132 151132 Computer, Math
## 2551 15-1133 151133 Computer, Math
## 2552 13-2099 132099 Business, Finance
## 2553 15-1121 151121 Computer, Math
## 2554 15-1121 151121 Computer, Math
## 2555 15-1132 151132 Computer, Math
## 2556 15-1199 151199 Computer, Math
## 2557 15-1132 151132 Computer, Math
## 2558 15-1199 151199 Computer, Math
## 2559 15-1121 151121 Computer, Math
## 2560 13-2011 132011 Business, Finance
## 2561 17-2031 172031 Architecture, Engineer
## 2562 15-1132 151132 Computer, Math
## 2563 29-1123 291123 Healthcare Practitioner
## 2564 15-1142 151142 Computer, Math
## 2565 15-1132 151132 Computer, Math
## 2566 11-9021 119021 Management
## 2567 15-1133 151133 Computer, Math
## 2568 15-1132 151132 Computer, Math
## 2569 15-1121 151121 Computer, Math
## 2570 15-1131 151131 Computer, Math
## 2571 15-1132 151132 Computer, Math
## 2572 15-2031 152031 Computer, Math
## 2573 15-1121 151121 Computer, Math
## 2574 29-1029 291029 Healthcare Practitioner
## 2575 15-1133 151133 Computer, Math
## 2576 15-1199 151199 Computer, Math
## 2577 15-1121 151121 Computer, Math
## 2578 15-1199 151199 Computer, Math
## 2579 15-1121 151121 Computer, Math
## 2580 15-1132 151132 Computer, Math
## 2581 19-1021 191021 Life, Physcial, Social Science
## 2582 17-2072 172072 Architecture, Engineer
## 2583 15-1132 151132 Computer, Math
## 2584 29-1131 291131 Healthcare Practitioner
## 2585 15-1132 151132 Computer, Math
## 2586 15-1199 151199 Computer, Math
## 2587 15-1121 151121 Computer, Math
## 2588 15-2041 152041 Computer, Math
## 2589 15-1132 151132 Computer, Math
## 2590 15-1121 151121 Computer, Math
## 2591 15-1121 151121 Computer, Math
## 2592 21-1022 211022 Social Service
## 2593 15-1133 151133 Computer, Math
## 2594 15-1111 151111 Computer, Math
## 2595 15-1199 151199 Computer, Math
## 2596 15-1132 151132 Computer, Math
## 2597 13-2011 132011 Business, Finance
## 2598 15-1121 151121 Computer, Math
## 2599 11-3021 113021 Management
## 2600 15-1133 151133 Computer, Math
## 2601 15-1132 151132 Computer, Math
## 2602 15-1199 151199 Computer, Math
## 2603 17-2072 172072 Architecture, Engineer
## 2604 15-1122 151122 Computer, Math
## 2605 13-1111 131111 Business, Finance
## 2606 15-1132 151132 Computer, Math
## 2607 15-1132 151132 Computer, Math
## 2608 17-2199 172199 Architecture, Engineer
## 2609 15-1132 151132 Computer, Math
## 2610 15-2041 152041 Computer, Math
## 2611 15-1121 151121 Computer, Math
## 2612 15-1132 151132 Computer, Math
## 2613 29-2011 292011 Healthcare Practitioner
## 2614 15-1133 151133 Computer, Math
## 2615 15-1132 151132 Computer, Math
## 2616 15-1132 151132 Computer, Math
## 2617 15-1132 151132 Computer, Math
## 2618 15-1132 151132 Computer, Math
## 2619 15-1132 151132 Computer, Math
## 2620 15-1132 151132 Computer, Math
## 2621 15-1199 151199 Computer, Math
## 2622 15-1131 151131 Computer, Math
## 2623 15-1121 151121 Computer, Math
## 2624 15-2041 152041 Computer, Math
## 2625 15-1132 151132 Computer, Math
## 2626 15-1132 151132 Computer, Math
## 2627 15-1199 151199 Computer, Math
## 2628 15-1132 151132 Computer, Math
## 2629 15-1142 151142 Computer, Math
## 2630 15-1132 151132 Computer, Math
## 2631 15-1132 151132 Computer, Math
## 2632 13-2011 132011 Business, Finance
## 2633 17-2041 172041 Architecture, Engineer
## 2634 15-1199 151199 Computer, Math
## 2635 15-1132 151132 Computer, Math
## 2636 17-2072 172072 Architecture, Engineer
## 2637 15-1199 151199 Computer, Math
## 2638 15-1121 151121 Computer, Math
## 2639 15-1132 151132 Computer, Math
## 2640 15-1121 151121 Computer, Math
## 2641 15-1133 151133 Computer, Math
## 2642 13-2011 132011 Business, Finance
## 2643 15-1132 151132 Computer, Math
## 2644 17-1011 171011 Architecture, Engineer
## 2645 11-3021 113021 Management
## 2646 15-1132 151132 Computer, Math
## 2647 11-3021 113021 Management
## 2648 15-1133 151133 Computer, Math
## 2649 15-1132 151132 Computer, Math
## 2650 15-1121 151121 Computer, Math
## 2651 15-1121 151121 Computer, Math
## 2652 15-1132 151132 Computer, Math
## 2653 15-1132 151132 Computer, Math
## 2654 15-1132 151132 Computer, Math
## 2655 15-1131 151131 Computer, Math
## 2656 15-1132 151132 Computer, Math
## 2657 15-1121 151121 Computer, Math
## 2658 15-1133 151133 Computer, Math
## 2659 15-1132 151132 Computer, Math
## 2660 15-1132 151132 Computer, Math
## 2661 13-2051 132051 Business, Finance
## 2662 15-1132 151132 Computer, Math
## 2663 15-1121 151121 Computer, Math
## 2664 13-1111 131111 Business, Finance
## 2665 15-1132 151132 Computer, Math
## 2666 15-1121 151121 Computer, Math
## 2667 15-1132 151132 Computer, Math
## 2668 13-1111 131111 Business, Finance
## 2669 27-1025 271025 Media, Design
## 2670 13-1111 131111 Business, Finance
## 2671 15-1132 151132 Computer, Math
## 2672 17-2199 172199 Architecture, Engineer
## 2673 15-1132 151132 Computer, Math
## 2674 15-1133 151133 Computer, Math
## 2675 29-1069 291069 Healthcare Practitioner
## 2676 15-1121 151121 Computer, Math
## 2677 15-1121 151121 Computer, Math
## 2678 15-1132 151132 Computer, Math
## 2679 15-1121 151121 Computer, Math
## 2680 11-3031 113031 Management
## 2681 15-1132 151132 Computer, Math
## 2682 17-2141 172141 Architecture, Engineer
## 2683 15-1199 151199 Computer, Math
## 2684 13-1111 131111 Business, Finance
## 2685 15-1132 151132 Computer, Math
## 2686 15-1132 151132 Computer, Math
## 2687 29-2011 292011 Healthcare Practitioner
## 2688 17-2011 172011 Architecture, Engineer
## 2689 25-1111 251111 Education, Training
## 2690 15-1134 151134 Computer, Math
## 2691 15-1121 151121 Computer, Math
## 2692 15-1132 151132 Computer, Math
## 2693 41-9031 419031 Sales
## 2694 15-1132 151132 Computer, Math
## 2695 13-1111 131111 Business, Finance
## 2696 15-1132 151132 Computer, Math
## 2697 15-1132 151132 Computer, Math
## 2698 15-2041 152041 Computer, Math
## 2699 15-1132 151132 Computer, Math
## 2700 15-1121 151121 Computer, Math
## 2701 15-1132 151132 Computer, Math
## 2702 13-1111 131111 Business, Finance
## 2703 15-1132 151132 Computer, Math
## 2704 15-1132 151132 Computer, Math
## 2705 13-1151 131151 Business, Finance
## 2706 25-1081 251081 Education, Training
## 2707 13-2051 132051 Business, Finance
## 2708 15-1132 151132 Computer, Math
## 2709 13-1161 131161 Business, Finance
## 2710 13-1121 131121 Business, Finance
## 2711 15-1121 151121 Computer, Math
## 2712 15-1132 151132 Computer, Math
## 2713 11-3021 113021 Management
## 2714 13-1161 131161 Business, Finance
## 2715 15-1199 151199 Computer, Math
## 2716 15-1121 151121 Computer, Math
## 2717 17-2051 172051 Architecture, Engineer
## 2718 15-1132 151132 Computer, Math
## 2719 15-1132 151132 Computer, Math
## 2720 21-2011 212011 Social Service
## 2721 15-1131 151131 Computer, Math
## 2722 15-1133 151133 Computer, Math
## 2723 13-1081 131081 Business, Finance
## 2724 15-2031 152031 Computer, Math
## 2725 17-2061 172061 Architecture, Engineer
## 2726 15-1132 151132 Computer, Math
## 2727 15-2031 152031 Computer, Math
## 2728 29-2011 292011 Healthcare Practitioner
## 2729 15-2021 152021 Computer, Math
## 2730 15-1132 151132 Computer, Math
## 2731 13-1041 131041 Business, Finance
## 2732 11-2021 112021 Management
## 2733 15-1133 151133 Computer, Math
## 2734 15-1141 151141 Computer, Math
## 2735 15-1132 151132 Computer, Math
## 2736 15-1132 151132 Computer, Math
## 2737 25-9031 259031 Education, Training
## 2738 13-2011 132011 Business, Finance
## 2739 15-1132 151132 Computer, Math
## 2740 17-2141 172141 Architecture, Engineer
## 2741 13-2011 132011 Business, Finance
## 2742 15-1133 151133 Computer, Math
## 2743 15-1132 151132 Computer, Math
## 2744 17-2131 172131 Architecture, Engineer
## 2745 15-1199.01 151199 Computer, Math
## 2746 15-1134 151134 Computer, Math
## 2747 15-1199 151199 Computer, Math
## 2748 15-1141 151141 Computer, Math
## 2749 15-1141 151141 Computer, Math
## 2750 15-2041 152041 Computer, Math
## 2751 15-1121 151121 Computer, Math
## 2752 15-1199 151199 Computer, Math
## 2753 17-2131 172131 Architecture, Engineer
## 2754 13-1161 131161 Business, Finance
## 2755 17-2061 172061 Architecture, Engineer
## 2756 15-1141 151141 Computer, Math
## 2757 15-2031 152031 Computer, Math
## 2758 17-2171 172171 Architecture, Engineer
## 2759 15-1132 151132 Computer, Math
## 2760 15-1132 151132 Computer, Math
## 2761 17-2072 172072 Architecture, Engineer
## 2762 15-1133 151133 Computer, Math
## 2763 15-2031 152031 Computer, Math
## 2764 13-1041 131041 Business, Finance
## 2765 15-2031 152031 Computer, Math
## 2766 15-1199 151199 Computer, Math
## 2767 25-3021 253021 Education, Training
## 2768 15-1134 151134 Computer, Math
## 2769 19-4061 194061 Life, Physcial, Social Science
## 2770 15-1131 151131 Computer, Math
## 2771 15-1132 151132 Computer, Math
## 2772 15-1121 151121 Computer, Math
## 2773 15-1132 151132 Computer, Math
## 2774 15-1132 151132 Computer, Math
## 2775 15-1133 151133 Computer, Math
## 2776 15-1131 151131 Computer, Math
## 2777 19-1042 191042 Life, Physcial, Social Science
## 2778 15-1132 151132 Computer, Math
## 2779 11-2011 112011 Management
## 2780 15-1132 151132 Computer, Math
## 2781 15-1133 151133 Computer, Math
## 2782 15-1132 151132 Computer, Math
## 2783 11-3121 113121 Management
## 2784 15-1133 151133 Computer, Math
## 2785 15-1133 151133 Computer, Math
## 2786 15-1132 151132 Computer, Math
## 2787 15-1121 151121 Computer, Math
## 2788 15-1132 151132 Computer, Math
## 2789 43-9111 439111 Others
## 2790 15-1199 151199 Computer, Math
## 2791 15-1131 151131 Computer, Math
## 2792 29-1123 291123 Healthcare Practitioner
## 2793 15-1121 151121 Computer, Math
## 2794 13-2051 132051 Business, Finance
## 2795 15-1199 151199 Computer, Math
## 2796 15-1152 151152 Computer, Math
## 2797 15-1132 151132 Computer, Math
## 2798 15-1121 151121 Computer, Math
## 2799 21-1023 211023 Social Service
## 2800 15-1133 151133 Computer, Math
## 2801 13-1041 131041 Business, Finance
## 2802 15-1132 151132 Computer, Math
## 2803 11-3021 113021 Management
## 2804 15-1132 151132 Computer, Math
## 2805 15-1133 151133 Computer, Math
## 2806 15-1132 151132 Computer, Math
## 2807 15-1199 151199 Computer, Math
## 2808 15-1132 151132 Computer, Math
## 2809 15-1132 151132 Computer, Math
## 2810 15-2031 152031 Computer, Math
## 2811 15-1132 151132 Computer, Math
## 2812 15-1121 151121 Computer, Math
## 2813 15-1199 151199 Computer, Math
## 2814 15-1121 151121 Computer, Math
## 2815 19-3011 193011 Life, Physcial, Social Science
## 2816 15-2011 152011 Computer, Math
## 2817 13-2051 132051 Business, Finance
## 2818 15-1132 151132 Computer, Math
## 2819 15-1131 151131 Computer, Math
## 2820 15-1199 151199 Computer, Math
## 2821 15-1132 151132 Computer, Math
## 2822 25-3099 253099 Education, Training
## 2823 15-1131 151131 Computer, Math
## 2824 15-1121 151121 Computer, Math
## 2825 15-1132 151132 Computer, Math
## 2826 25-1011 251011 Education, Training
## 2827 15-1132 151132 Computer, Math
## 2828 15-1132 151132 Computer, Math
## 2829 27-1024 271024 Media, Design
## 2830 15-1142 151142 Computer, Math
## 2831 15-1132 151132 Computer, Math
## 2832 15-1121 151121 Computer, Math
## 2833 17-2072 172072 Architecture, Engineer
## 2834 29-2011 292011 Healthcare Practitioner
## 2835 15-1121 151121 Computer, Math
## 2836 15-1121 151121 Computer, Math
## 2837 15-1132 151132 Computer, Math
## 2838 15-1132 151132 Computer, Math
## 2839 15-1121 151121 Computer, Math
## 2840 15-1132 151132 Computer, Math
## 2841 19-4021 194021 Life, Physcial, Social Science
## 2842 15-1132 151132 Computer, Math
## 2843 13-2011 132011 Business, Finance
## 2844 15-1132 151132 Computer, Math
## 2845 17-2072 172072 Architecture, Engineer
## 2846 15-1132 151132 Computer, Math
## 2847 13-2099 132099 Business, Finance
## 2848 15-1132 151132 Computer, Math
## 2849 15-1132 151132 Computer, Math
## 2850 13-2051 132051 Business, Finance
## 2851 15-1199 151199 Computer, Math
## 2852 15-1132 151132 Computer, Math
## 2853 15-1132 151132 Computer, Math
## 2854 15-1121 151121 Computer, Math
## 2855 15-1132 151132 Computer, Math
## 2856 15-1132 151132 Computer, Math
## 2857 15-1132 151132 Computer, Math
## 2858 15-1131 151131 Computer, Math
## 2859 15-1121 151121 Computer, Math
## 2860 13-1161 131161 Business, Finance
## 2861 15-1121 151121 Computer, Math
## 2862 17-2072 172072 Architecture, Engineer
## 2863 25-1022 251022 Education, Training
## 2864 15-1132 151132 Computer, Math
## 2865 15-1132 151132 Computer, Math
## 2866 15-1132 151132 Computer, Math
## 2867 15-1132 151132 Computer, Math
## 2868 19-1029 191029 Life, Physcial, Social Science
## 2869 15-1132 151132 Computer, Math
## 2870 13-1161 131161 Business, Finance
## 2871 15-1132 151132 Computer, Math
## 2872 15-1132 151132 Computer, Math
## 2873 17-2141 172141 Architecture, Engineer
## 2874 15-1132 151132 Computer, Math
## 2875 11-3021 113021 Management
## 2876 15-1132 151132 Computer, Math
## 2877 15-1142 151142 Computer, Math
## 2878 29-1069 291069 Healthcare Practitioner
## 2879 17-2071 172071 Architecture, Engineer
## 2880 13-2011 132011 Business, Finance
## 2881 13-1161 131161 Business, Finance
## 2882 15-1131 151131 Computer, Math
## 2883 15-1132 151132 Computer, Math
## 2884 15-2041 152041 Computer, Math
## 2885 17-2112 172112 Architecture, Engineer
## 2886 13-1161 131161 Business, Finance
## 2887 15-1132 151132 Computer, Math
## 2888 19-2031 192031 Life, Physcial, Social Science
## 2889 13-1111 131111 Business, Finance
## 2890 15-1133 151133 Computer, Math
## 2891 15-1133 151133 Computer, Math
## 2892 17-2141 172141 Architecture, Engineer
## 2893 15-1141 151141 Computer, Math
## 2894 15-1132 151132 Computer, Math
## 2895 15-1132 151132 Computer, Math
## 2896 15-1199 151199 Computer, Math
## 2897 15-1132 151132 Computer, Math
## 2898 17-2141 172141 Architecture, Engineer
## 2899 15-1132 151132 Computer, Math
## 2900 15-1199 151199 Computer, Math
## 2901 15-1121 151121 Computer, Math
## 2902 15-1121 151121 Computer, Math
## 2903 15-1132 151132 Computer, Math
## 2904 15-1132 151132 Computer, Math
## 2905 15-1199 151199 Computer, Math
## 2906 15-1132 151132 Computer, Math
## 2907 15-1122 151122 Computer, Math
## 2908 15-1199 151199 Computer, Math
## 2909 15-1199 151199 Computer, Math
## 2910 15-1132 151132 Computer, Math
## 2911 19-4061 194061 Life, Physcial, Social Science
## 2912 15-2031 152031 Computer, Math
## 2913 15-1132 151132 Computer, Math
## 2914 15-1132 151132 Computer, Math
## 2915 13-1111 131111 Business, Finance
## 2916 17-2141 172141 Architecture, Engineer
## 2917 15-1199 151199 Computer, Math
## 2918 15-1133 151133 Computer, Math
## 2919 41-9031 419031 Sales
## 2920 15-1132 151132 Computer, Math
## 2921 15-1122 151122 Computer, Math
## 2922 27-3042 273042 Media, Design
## 2923 15-2041 152041 Computer, Math
## 2924 13-1161 131161 Business, Finance
## 2925 15-1132 151132 Computer, Math
## 2926 11-3031 113031 Management
## 2927 15-1121 151121 Computer, Math
## 2928 15-1132 151132 Computer, Math
## 2929 15-2031 152031 Computer, Math
## 2930 25-1071 251071 Education, Training
## 2931 15-1132 151132 Computer, Math
## 2932 15-1132 151132 Computer, Math
## 2933 15-1199 151199 Computer, Math
## 2934 15-1132 151132 Computer, Math
## 2935 11-1021 111021 Management
## 2936 15-1131 151131 Computer, Math
## 2937 15-1132 151132 Computer, Math
## 2938 15-1199 151199 Computer, Math
## 2939 13-1111 131111 Business, Finance
## 2940 15-1133 151133 Computer, Math
## 2941 15-1199 151199 Computer, Math
## 2942 15-1121 151121 Computer, Math
## 2943 15-1141 151141 Computer, Math
## 2944 15-1121 151121 Computer, Math
## 2945 23-1011 231011 Legal
## 2946 15-1132 151132 Computer, Math
## 2947 15-1132 151132 Computer, Math
## 2948 15-1132 151132 Computer, Math
## 2949 15-1199 151199 Computer, Math
## 2950 15-1121 151121 Computer, Math
## 2951 15-1132 151132 Computer, Math
## 2952 17-2081 172081 Architecture, Engineer
## 2953 15-1121 151121 Computer, Math
## 2954 15-2031 152031 Computer, Math
## 2955 15-1121 151121 Computer, Math
## 2956 15-2031 152031 Computer, Math
## 2957 15-1121 151121 Computer, Math
## 2958 15-1133 151133 Computer, Math
## 2959 15-1132 151132 Computer, Math
## 2960 15-1132 151132 Computer, Math
## 2961 13-2099 132099 Business, Finance
## 2962 15-1132 151132 Computer, Math
## 2963 15-1142 151142 Computer, Math
## 2964 15-1132 151132 Computer, Math
## 2965 15-1199 151199 Computer, Math
## 2966 15-1132 151132 Computer, Math
## 2967 15-1199 151199 Computer, Math
## 2968 15-1132 151132 Computer, Math
## 2969 19-1021 191021 Life, Physcial, Social Science
## 2970 15-1111 151111 Computer, Math
## 2971 15-1199 151199 Computer, Math
## 2972 15-1199 151199 Computer, Math
## 2973 17-2141 172141 Architecture, Engineer
## 2974 15-1199 151199 Computer, Math
## 2975 15-1132 151132 Computer, Math
## 2976 15-1199 151199 Computer, Math
## 2977 15-1132 151132 Computer, Math
## 2978 15-1152 151152 Computer, Math
## 2979 15-1132 151132 Computer, Math
## 2980 15-1132 151132 Computer, Math
## 2981 17-2071 172071 Architecture, Engineer
## 2982 15-1132 151132 Computer, Math
## 2983 15-2041 152041 Computer, Math
## 2984 15-1132 151132 Computer, Math
## 2985 17-2072 172072 Architecture, Engineer
## 2986 13-1111 131111 Business, Finance
## 2987 15-1132 151132 Computer, Math
## 2988 15-2031 152031 Computer, Math
## 2989 15-1199 151199 Computer, Math
## 2990 15-1132 151132 Computer, Math
## 2991 25-1041 251041 Education, Training
## 2992 15-1133 151133 Computer, Math
## 2993 15-1121 151121 Computer, Math
## 2994 27-1021 271021 Media, Design
## 2995 15-1199 151199 Computer, Math
## 2996 15-1142 151142 Computer, Math
## 2997 15-1132 151132 Computer, Math
## 2998 15-1132 151132 Computer, Math
## 2999 25-1032 251032 Education, Training
## 3000 15-1141 151141 Computer, Math
## 3001 19-2012 192012 Life, Physcial, Social Science
## 3002 15-1132 151132 Computer, Math
## 3003 15-1133 151133 Computer, Math
## 3004 15-1132 151132 Computer, Math
## 3005 15-1131 151131 Computer, Math
## 3006 13-2011 132011 Business, Finance
## 3007 15-1142 151142 Computer, Math
## 3008 15-1132 151132 Computer, Math
## 3009 17-2141 172141 Architecture, Engineer
## 3010 27-1021 271021 Media, Design
## 3011 15-1132 151132 Computer, Math
## 3012 15-1133 151133 Computer, Math
## 3013 15-1132 151132 Computer, Math
## 3014 15-1132 151132 Computer, Math
## 3015 15-1121 151121 Computer, Math
## 3016 15-1132 151132 Computer, Math
## 3017 15-1132 151132 Computer, Math
## 3018 15-1132 151132 Computer, Math
## 3019 27-3042 273042 Media, Design
## 3020 15-1132 151132 Computer, Math
## 3021 15-1131 151131 Computer, Math
## 3022 15-1121 151121 Computer, Math
## 3023 29-1141 291141 Healthcare Practitioner
## 3024 29-1065 291065 Healthcare Practitioner
## 3025 15-1131 151131 Computer, Math
## 3026 29-1069 291069 Healthcare Practitioner
## 3027 13-2011 132011 Business, Finance
## 3028 11-3031 113031 Management
## 3029 15-1132 151132 Computer, Math
## 3030 15-1132 151132 Computer, Math
## 3031 13-2031 132031 Business, Finance
## 3032 15-1199 151199 Computer, Math
## 3033 17-2031 172031 Architecture, Engineer
## 3034 15-1141 151141 Computer, Math
## 3035 13-2011 132011 Business, Finance
## 3036 17-2051 172051 Architecture, Engineer
## 3037 19-1042 191042 Life, Physcial, Social Science
## 3038 15-1121 151121 Computer, Math
## 3039 15-1121 151121 Computer, Math
## 3040 15-1199 151199 Computer, Math
## 3041 15-1132 151132 Computer, Math
## 3042 15-1121 151121 Computer, Math
## 3043 15-1133 151133 Computer, Math
## 3044 15-1132 151132 Computer, Math
## 3045 13-1161 131161 Business, Finance
## 3046 13-1081 131081 Business, Finance
## 3047 13-1111 131111 Business, Finance
## 3048 15-1132 151132 Computer, Math
## 3049 15-1131 151131 Computer, Math
## 3050 15-1121 151121 Computer, Math
## 3051 15-1132 151132 Computer, Math
## 3052 13-2011 132011 Business, Finance
## 3053 25-1041 251041 Education, Training
## 3054 15-1132 151132 Computer, Math
## 3055 15-1121 151121 Computer, Math
## 3056 17-2071 172071 Architecture, Engineer
## 3057 15-1199 151199 Computer, Math
## 3058 15-1121 151121 Computer, Math
## 3059 15-1142 151142 Computer, Math
## 3060 15-1199 151199 Computer, Math
## 3061 13-1041 131041 Business, Finance
## 3062 15-2031 152031 Computer, Math
## 3063 15-1132 151132 Computer, Math
## 3064 15-1131 151131 Computer, Math
## 3065 15-1132 151132 Computer, Math
## 3066 15-1132 151132 Computer, Math
## 3067 15-2031 152031 Computer, Math
## 3068 15-1132 151132 Computer, Math
## 3069 15-1132 151132 Computer, Math
## 3070 25-2022 252022 Education, Training
## 3071 15-1199 151199 Computer, Math
## 3072 15-1132 151132 Computer, Math
## 3073 15-1141 151141 Computer, Math
## 3074 15-1132 151132 Computer, Math
## 3075 15-1132 151132 Computer, Math
## 3076 15-1199 151199 Computer, Math
## 3077 15-1132 151132 Computer, Math
## 3078 15-1199 151199 Computer, Math
## 3079 15-1121 151121 Computer, Math
## 3080 11-9041 119041 Management
## 3081 27-1014 271014 Media, Design
## 3082 15-1133 151133 Computer, Math
## 3083 15-1141 151141 Computer, Math
## 3084 15-1121 151121 Computer, Math
## 3085 15-1131 151131 Computer, Math
## 3086 17-2081 172081 Architecture, Engineer
## 3087 15-1133 151133 Computer, Math
## 3088 15-1121 151121 Computer, Math
## 3089 15-1142 151142 Computer, Math
## 3090 15-1132 151132 Computer, Math
## 3091 15-1141 151141 Computer, Math
## 3092 15-1199 151199 Computer, Math
## 3093 15-1131 151131 Computer, Math
## 3094 27-1021 271021 Media, Design
## 3095 15-1121 151121 Computer, Math
## 3096 17-2071 172071 Architecture, Engineer
## 3097 15-1132 151132 Computer, Math
## 3098 29-1141 291141 Healthcare Practitioner
## 3099 15-1121 151121 Computer, Math
## 3100 15-1131 151131 Computer, Math
## 3101 15-1199 151199 Computer, Math
## 3102 13-2051 132051 Business, Finance
## 3103 15-1121 151121 Computer, Math
## 3104 15-1199 151199 Computer, Math
## 3105 15-2031 152031 Computer, Math
## 3106 15-1142 151142 Computer, Math
## 3107 17-2141 172141 Architecture, Engineer
## 3108 19-1042 191042 Life, Physcial, Social Science
## 3109 15-1199 151199 Computer, Math
## 3110 15-1199 151199 Computer, Math
## 3111 15-1132 151132 Computer, Math
## 3112 15-1132 151132 Computer, Math
## 3113 15-1132 151132 Computer, Math
## 3114 15-1132 151132 Computer, Math
## 3115 15-1132 151132 Computer, Math
## 3116 13-2051 132051 Business, Finance
## 3117 13-2099 132099 Business, Finance
## 3118 15-1199 151199 Computer, Math
## 3119 15-1132 151132 Computer, Math
## 3120 13-1111 131111 Business, Finance
## 3121 17-3011 173011 Architecture, Engineer
## 3122 15-1121 151121 Computer, Math
## 3123 15-1132 151132 Computer, Math
## 3124 15-1121 151121 Computer, Math
## 3125 15-1131 151131 Computer, Math
## 3126 15-1121 151121 Computer, Math
## 3127 15-1133 151133 Computer, Math
## 3128 11-3021 113021 Management
## 3129 19-1042 191042 Life, Physcial, Social Science
## 3130 15-1133 151133 Computer, Math
## 3131 15-1131 151131 Computer, Math
## 3132 11-2022 112022 Management
## 3133 15-1132 151132 Computer, Math
## 3134 19-2012 192012 Life, Physcial, Social Science
## 3135 13-1161 131161 Business, Finance
## 3136 15-1132 151132 Computer, Math
## 3137 15-1132 151132 Computer, Math
## 3138 15-1199 151199 Computer, Math
## 3139 15-1122 151122 Computer, Math
## 3140 15-1132 151132 Computer, Math
## 3141 15-1199 151199 Computer, Math
## 3142 17-2131 172131 Architecture, Engineer
## 3143 17-2141 172141 Architecture, Engineer
## 3144 15-1133 151133 Computer, Math
## 3145 15-1132 151132 Computer, Math
## 3146 25-1121 251121 Education, Training
## 3147 15-1121 151121 Computer, Math
## 3148 15-1132 151132 Computer, Math
## 3149 15-1132 151132 Computer, Math
## 3150 15-1131 151131 Computer, Math
## 3151 15-1199 151199 Computer, Math
## 3152 15-1199 151199 Computer, Math
## 3153 15-1132 151132 Computer, Math
## 3154 15-1132 151132 Computer, Math
## 3155 15-1121 151121 Computer, Math
## 3156 15-1121 151121 Computer, Math
## 3157 11-2022 112022 Management
## 3158 15-1132 151132 Computer, Math
## 3159 15-1121 151121 Computer, Math
## 3160 13-1111 131111 Business, Finance
## 3161 15-1132 151132 Computer, Math
## 3162 15-2031 152031 Computer, Math
## 3163 15-1132 151132 Computer, Math
## 3164 15-1121 151121 Computer, Math
## 3165 15-1132 151132 Computer, Math
## 3166 15-1132 151132 Computer, Math
## 3167 15-1121 151121 Computer, Math
## 3168 15-1132 151132 Computer, Math
## 3169 19-1012 191012 Life, Physcial, Social Science
## 3170 29-1199 291199 Healthcare Practitioner
## 3171 15-1131 151131 Computer, Math
## 3172 15-1133 151133 Computer, Math
## 3173 17-2112 172112 Architecture, Engineer
## 3174 15-1141 151141 Computer, Math
## 3175 15-2031 152031 Computer, Math
## 3176 25-1121 251121 Education, Training
## 3177 15-1132 151132 Computer, Math
## 3178 15-1121 151121 Computer, Math
## 3179 15-1121 151121 Computer, Math
## 3180 15-1121 151121 Computer, Math
## 3181 15-1131 151131 Computer, Math
## 3182 27-1014 271014 Media, Design
## 3183 17-2199 172199 Architecture, Engineer
## 3184 15-1132 151132 Computer, Math
## 3185 15-1134 151134 Computer, Math
## 3186 15-1199 151199 Computer, Math
## 3187 13-1081 131081 Business, Finance
## 3188 13-1161 131161 Business, Finance
## 3189 15-1132 151132 Computer, Math
## 3190 15-1132 151132 Computer, Math
## 3191 15-1121 151121 Computer, Math
## 3192 15-1132 151132 Computer, Math
## 3193 15-1132 151132 Computer, Math
## 3194 17-2141 172141 Architecture, Engineer
## 3195 15-1141 151141 Computer, Math
## 3196 15-2031 152031 Computer, Math
## 3197 15-1121 151121 Computer, Math
## 3198 19-1042 191042 Life, Physcial, Social Science
## 3199 15-1199 151199 Computer, Math
## 3200 15-1132 151132 Computer, Math
## 3201 13-2099 132099 Business, Finance
## 3202 15-1132 151132 Computer, Math
## 3203 15-1131 151131 Computer, Math
## 3204 15-1132 151132 Computer, Math
## 3205 15-1134 151134 Computer, Math
## 3206 29-1069 291069 Healthcare Practitioner
## 3207 15-1132 151132 Computer, Math
## 3208 15-1121 151121 Computer, Math
## 3209 15-1132 151132 Computer, Math
## 3210 15-1133 151133 Computer, Math
## 3211 15-2031 152031 Computer, Math
## 3212 25-1071 251071 Education, Training
## 3213 15-1132 151132 Computer, Math
## 3214 15-1132 151132 Computer, Math
## 3215 11-3021 113021 Management
## 3216 17-1011 171011 Architecture, Engineer
## 3217 15-1121 151121 Computer, Math
## 3218 15-1131 151131 Computer, Math
## 3219 15-1121 151121 Computer, Math
## 3220 11-3031 113031 Management
## 3221 15-1121 151121 Computer, Math
## 3222 17-2141 172141 Architecture, Engineer
## 3223 15-1132 151132 Computer, Math
## 3224 15-1121 151121 Computer, Math
## 3225 17-2199 172199 Architecture, Engineer
## 3226 19-1042 191042 Life, Physcial, Social Science
## 3227 17-2061 172061 Architecture, Engineer
## 3228 15-1199 151199 Computer, Math
## 3229 15-1142 151142 Computer, Math
## 3230 17-2071 172071 Architecture, Engineer
## 3231 17-2071 172071 Architecture, Engineer
## 3232 15-1132 151132 Computer, Math
## 3233 29-1069 291069 Healthcare Practitioner
## 3234 15-1121 151121 Computer, Math
## 3235 17-2072 172072 Architecture, Engineer
## 3236 13-1161 131161 Business, Finance
## 3237 29-1069 291069 Healthcare Practitioner
## 3238 15-2031 152031 Computer, Math
## 3239 17-2141 172141 Architecture, Engineer
## 3240 15-1133 151133 Computer, Math
## 3241 13-1051 131051 Business, Finance
## 3242 13-1111 131111 Business, Finance
## 3243 15-1199 151199 Computer, Math
## 3244 29-9099 299099 Healthcare Practitioner
## 3245 15-1132 151132 Computer, Math
## 3246 13-1161 131161 Business, Finance
## 3247 17-2141 172141 Architecture, Engineer
## 3248 41-9031 419031 Sales
## 3249 19-1029 191029 Life, Physcial, Social Science
## 3250 15-1199 151199 Computer, Math
## 3251 17-2071 172071 Architecture, Engineer
## 3252 15-1131 151131 Computer, Math
## 3253 13-2099 132099 Business, Finance
## 3254 15-1132 151132 Computer, Math
## 3255 15-1199 151199 Computer, Math
## 3256 15-1199 151199 Computer, Math
## 3257 15-1132 151132 Computer, Math
## 3258 15-1132 151132 Computer, Math
## 3259 15-2031 152031 Computer, Math
## 3260 15-1133 151133 Computer, Math
## 3261 15-1121 151121 Computer, Math
## 3262 13-1111 131111 Business, Finance
## 3263 15-1121 151121 Computer, Math
## 3264 19-1021 191021 Life, Physcial, Social Science
## 3265 15-1132 151132 Computer, Math
## 3266 15-1132 151132 Computer, Math
## 3267 15-1121 151121 Computer, Math
## 3268 15-2041 152041 Computer, Math
## 3269 15-1132 151132 Computer, Math
## 3270 15-1131 151131 Computer, Math
## 3271 13-1111 131111 Business, Finance
## 3272 15-1132 151132 Computer, Math
## 3273 15-1133 151133 Computer, Math
## 3274 15-1121 151121 Computer, Math
## 3275 11-9021 119021 Management
## 3276 25-1054 251054 Education, Training
## 3277 15-1132 151132 Computer, Math
## 3278 15-1132 151132 Computer, Math
## 3279 25-2022 252022 Education, Training
## 3280 15-1131 151131 Computer, Math
## 3281 17-2051.00 172051 Architecture, Engineer
## 3282 15-1142 151142 Computer, Math
## 3283 15-1199 151199 Computer, Math
## 3284 15-1133 151133 Computer, Math
## 3285 15-1133 151133 Computer, Math
## 3286 15-1132 151132 Computer, Math
## 3287 15-1199 151199 Computer, Math
## 3288 13-2011 132011 Business, Finance
## 3289 15-1131 151131 Computer, Math
## 3290 17-2141 172141 Architecture, Engineer
## 3291 15-1132 151132 Computer, Math
## 3292 19-2031 192031 Life, Physcial, Social Science
## 3293 15-1199 151199 Computer, Math
## 3294 15-1121 151121 Computer, Math
## 3295 15-1121 151121 Computer, Math
## 3296 15-1132 151132 Computer, Math
## 3297 15-1199 151199 Computer, Math
## 3298 15-1132 151132 Computer, Math
## 3299 15-1133 151133 Computer, Math
## 3300 15-2031 152031 Computer, Math
## 3301 15-2031 152031 Computer, Math
## 3302 15-1143 151143 Computer, Math
## 3303 15-1199 151199 Computer, Math
## 3304 15-1121 151121 Computer, Math
## 3305 15-1132 151132 Computer, Math
## 3306 29-1123 291123 Healthcare Practitioner
## 3307 15-2041 152041 Computer, Math
## 3308 21-1091 211091 Social Service
## 3309 15-1132 151132 Computer, Math
## 3310 17-2071 172071 Architecture, Engineer
## 3311 13-1051 131051 Business, Finance
## 3312 15-1199 151199 Computer, Math
## 3313 15-1131 151131 Computer, Math
## 3314 15-1132 151132 Computer, Math
## 3315 17-2072 172072 Architecture, Engineer
## 3316 15-1121 151121 Computer, Math
## 3317 15-1199 151199 Computer, Math
## 3318 13-2051 132051 Business, Finance
## 3319 15-1132 151132 Computer, Math
## 3320 15-1132 151132 Computer, Math
## 3321 15-1132 151132 Computer, Math
## 3322 15-1133 151133 Computer, Math
## 3323 15-1142 151142 Computer, Math
## 3324 15-1132 151132 Computer, Math
## 3325 15-1199 151199 Computer, Math
## 3326 19-1029 191029 Life, Physcial, Social Science
## 3327 15-2031 152031 Computer, Math
## 3328 15-1121 151121 Computer, Math
## 3329 15-1132 151132 Computer, Math
## 3330 17-2112 172112 Architecture, Engineer
## 3331 17-2112 172112 Architecture, Engineer
## 3332 15-1199 151199 Computer, Math
## 3333 15-1132 151132 Computer, Math
## 3334 15-1132 151132 Computer, Math
## 3335 15-1132 151132 Computer, Math
## 3336 13-1199 131199 Business, Finance
## 3337 15-1132 151132 Computer, Math
## 3338 15-1132 151132 Computer, Math
## 3339 15-1132 151132 Computer, Math
## 3340 15-1133 151133 Computer, Math
## 3341 15-1121 151121 Computer, Math
## 3342 25-1081 251081 Education, Training
## 3343 15-1121 151121 Computer, Math
## 3344 15-1132 151132 Computer, Math
## 3345 15-1132 151132 Computer, Math
## 3346 15-1132 151132 Computer, Math
## 3347 17-2112 172112 Architecture, Engineer
## 3348 29-1069 291069 Healthcare Practitioner
## 3349 15-1121 151121 Computer, Math
## 3350 15-1132 151132 Computer, Math
## 3351 15-1132 151132 Computer, Math
## 3352 13-2011 132011 Business, Finance
## 3353 15-1132 151132 Computer, Math
## 3354 17-2141 172141 Architecture, Engineer
## 3355 17-2031 172031 Architecture, Engineer
## 3356 15-1111 151111 Computer, Math
## 3357 15-1199 151199 Computer, Math
## 3358 15-1132 151132 Computer, Math
## 3359 15-1132 151132 Computer, Math
## 3360 15-1131 151131 Computer, Math
## 3361 29-9099 299099 Healthcare Practitioner
## 3362 15-1132 151132 Computer, Math
## 3363 15-1121 151121 Computer, Math
## 3364 15-1199 151199 Computer, Math
## 3365 29-1123 291123 Healthcare Practitioner
## 3366 17-2071 172071 Architecture, Engineer
## 3367 25-1193 251193 Education, Training
## 3368 15-1142 151142 Computer, Math
## 3369 15-1132 151132 Computer, Math
## 3370 15-1121 151121 Computer, Math
## 3371 17-2141 172141 Architecture, Engineer
## 3372 15-1133 151133 Computer, Math
## 3373 15-1199 151199 Computer, Math
## 3374 13-1111 131111 Business, Finance
## 3375 15-1199 151199 Computer, Math
## 3376 15-1132 151132 Computer, Math
## 3377 13-2051 132051 Business, Finance
## 3378 15-1121 151121 Computer, Math
## 3379 15-1132 151132 Computer, Math
## 3380 13-2041 132041 Business, Finance
## 3381 29-9091 299091 Healthcare Practitioner
## 3382 15-1199 151199 Computer, Math
## 3383 15-1132 151132 Computer, Math
## 3384 15-1132 151132 Computer, Math
## 3385 17-2071 172071 Architecture, Engineer
## 3386 11-3031 113031 Management
## 3387 15-1121 151121 Computer, Math
## 3388 15-1132 151132 Computer, Math
## 3389 17-2171 172171 Architecture, Engineer
## 3390 15-1199 151199 Computer, Math
## 3391 15-1132 151132 Computer, Math
## 3392 15-1132 151132 Computer, Math
## 3393 15-1121 151121 Computer, Math
## 3394 15-1199 151199 Computer, Math
## 3395 15-1121 151121 Computer, Math
## 3396 15-1132 151132 Computer, Math
## 3397 15-1133 151133 Computer, Math
## 3398 15-1132 151132 Computer, Math
## 3399 13-1111 131111 Business, Finance
## 3400 15-1199 151199 Computer, Math
## 3401 15-1121 151121 Computer, Math
## 3402 15-1133 151133 Computer, Math
## 3403 15-1132 151132 Computer, Math
## 3404 13-2011 132011 Business, Finance
## 3405 15-1132 151132 Computer, Math
## 3406 13-1111 131111 Business, Finance
## 3407 15-1132 151132 Computer, Math
## 3408 15-1121 151121 Computer, Math
## 3409 15-1142 151142 Computer, Math
## 3410 15-1142 151142 Computer, Math
## 3411 15-1121 151121 Computer, Math
## 3412 15-1132 151132 Computer, Math
## 3413 19-3011 193011 Life, Physcial, Social Science
## 3414 19-1029 191029 Life, Physcial, Social Science
## 3415 15-1132 151132 Computer, Math
## 3416 17-2031 172031 Architecture, Engineer
## 3417 15-1121 151121 Computer, Math
## 3418 29-2011 292011 Healthcare Practitioner
## 3419 15-1132 151132 Computer, Math
## 3420 15-2031 152031 Computer, Math
## 3421 15-1132 151132 Computer, Math
## 3422 15-1132 151132 Computer, Math
## 3423 15-1121 151121 Computer, Math
## 3424 15-1132 151132 Computer, Math
## 3425 15-1131 151131 Computer, Math
## 3426 15-1131 151131 Computer, Math
## 3427 17-3023 173023 Architecture, Engineer
## 3428 15-1121 151121 Computer, Math
## 3429 15-1132 151132 Computer, Math
## 3430 15-1121 151121 Computer, Math
## 3431 15-1132 151132 Computer, Math
## 3432 11-3021 113021 Management
## 3433 15-1199 151199 Computer, Math
## 3434 15-1121 151121 Computer, Math
## 3435 15-2041 152041 Computer, Math
## 3436 15-1121 151121 Computer, Math
## 3437 15-1132 151132 Computer, Math
## 3438 15-1199 151199 Computer, Math
## 3439 17-2071 172071 Architecture, Engineer
## 3440 15-1132 151132 Computer, Math
## 3441 15-1199 151199 Computer, Math
## 3442 15-1199 151199 Computer, Math
## 3443 15-1132 151132 Computer, Math
## 3444 15-1141 151141 Computer, Math
## 3445 17-2071 172071 Architecture, Engineer
## 3446 15-1132 151132 Computer, Math
## 3447 29-1063 291063 Healthcare Practitioner
## 3448 15-1121 151121 Computer, Math
## 3449 29-1069 291069 Healthcare Practitioner
## 3450 13-2051 132051 Business, Finance
## 3451 15-1132 151132 Computer, Math
## 3452 15-1132 151132 Computer, Math
## 3453 15-1132 151132 Computer, Math
## 3454 15-1131 151131 Computer, Math
## 3455 15-1132 151132 Computer, Math
## 3456 15-1132 151132 Computer, Math
## 3457 15-1132 151132 Computer, Math
## 3458 15-1121 151121 Computer, Math
## 3459 13-2051 132051 Business, Finance
## 3460 15-1132 151132 Computer, Math
## 3461 15-1132 151132 Computer, Math
## 3462 15-1133 151133 Computer, Math
## 3463 15-1121 151121 Computer, Math
## 3464 15-1132 151132 Computer, Math
## 3465 15-1111 151111 Computer, Math
## 3466 15-1133 151133 Computer, Math
## 3467 15-1132 151132 Computer, Math
## 3468 15-1133 151133 Computer, Math
## 3469 15-1199 151199 Computer, Math
## 3470 15-1199 151199 Computer, Math
## 3471 15-1121 151121 Computer, Math
## 3472 15-1132 151132 Computer, Math
## 3473 17-2141 172141 Architecture, Engineer
## 3474 15-1132 151132 Computer, Math
## 3475 13-2051 132051 Business, Finance
## 3476 17-2072 172072 Architecture, Engineer
## 3477 15-1132 151132 Computer, Math
## 3478 17-1011 171011 Architecture, Engineer
## 3479 13-2011 132011 Business, Finance
## 3480 15-1132 151132 Computer, Math
## 3481 15-1199 151199 Computer, Math
## 3482 15-1131 151131 Computer, Math
## 3483 15-1132 151132 Computer, Math
## 3484 15-1132 151132 Computer, Math
## 3485 15-1121 151121 Computer, Math
## 3486 15-1199 151199 Computer, Math
## 3487 17-2199 172199 Architecture, Engineer
## 3488 15-1132 151132 Computer, Math
## 3489 13-2011 132011 Business, Finance
## 3490 15-1132 151132 Computer, Math
## 3491 15-1132 151132 Computer, Math
## 3492 15-2031 152031 Computer, Math
## 3493 17-2051 172051 Architecture, Engineer
## 3494 25-2022 252022 Education, Training
## 3495 15-1199 151199 Computer, Math
## 3496 43-4051 434051 Others
## 3497 13-1111 131111 Business, Finance
## 3498 15-1132 151132 Computer, Math
## 3499 15-1199 151199 Computer, Math
## 3500 13-2011 132011 Business, Finance
## 3501 15-1199 151199 Computer, Math
## 3502 15-1132 151132 Computer, Math
## 3503 17-2141 172141 Architecture, Engineer
## 3504 15-1132 151132 Computer, Math
## 3505 15-1131 151131 Computer, Math
## 3506 15-1122 151122 Computer, Math
## 3507 15-1199 151199 Computer, Math
## 3508 15-1121 151121 Computer, Math
## 3509 13-2051 132051 Business, Finance
## 3510 15-1121 151121 Computer, Math
## 3511 19-2012 192012 Life, Physcial, Social Science
## 3512 15-1132 151132 Computer, Math
## 3513 17-2141 172141 Architecture, Engineer
## 3514 19-1042 191042 Life, Physcial, Social Science
## 3515 15-1121 151121 Computer, Math
## 3516 15-1132 151132 Computer, Math
## 3517 15-1131 151131 Computer, Math
## 3518 13-1111 131111 Business, Finance
## 3519 13-2011 132011 Business, Finance
## 3520 15-1199 151199 Computer, Math
## 3521 17-2071 172071 Architecture, Engineer
## 3522 15-1132 151132 Computer, Math
## 3523 15-1132 151132 Computer, Math
## 3524 15-1132 151132 Computer, Math
## 3525 11-2022 112022 Management
## 3526 15-1131 151131 Computer, Math
## 3527 19-2012 192012 Life, Physcial, Social Science
## 3528 15-1199 151199 Computer, Math
## 3529 17-2071 172071 Architecture, Engineer
## 3530 15-1133 151133 Computer, Math
## 3531 15-1132 151132 Computer, Math
## 3532 15-1121 151121 Computer, Math
## 3533 15-1199 151199 Computer, Math
## 3534 11-9121 119121 Management
## 3535 15-1199 151199 Computer, Math
## 3536 15-1199 151199 Computer, Math
## 3537 15-1131 151131 Computer, Math
## 3538 17-2141 172141 Architecture, Engineer
## 3539 13-2051 132051 Business, Finance
## 3540 15-1121 151121 Computer, Math
## 3541 15-1132 151132 Computer, Math
## 3542 17-2071 172071 Architecture, Engineer
## 3543 13-2051 132051 Business, Finance
## 3544 15-1132 151132 Computer, Math
## 3545 13-2011 132011 Business, Finance
## 3546 15-1133 151133 Computer, Math
## 3547 13-1111 131111 Business, Finance
## 3548 15-1121 151121 Computer, Math
## 3549 15-2031 152031 Computer, Math
## 3550 15-1132 151132 Computer, Math
## 3551 13-1111 131111 Business, Finance
## 3552 19-4061 194061 Life, Physcial, Social Science
## 3553 15-1121 151121 Computer, Math
## 3554 15-1133 151133 Computer, Math
## 3555 15-1132 151132 Computer, Math
## 3556 15-1121 151121 Computer, Math
## 3557 13-1111 131111 Business, Finance
## 3558 13-2051 132051 Business, Finance
## 3559 15-1132 151132 Computer, Math
## 3560 13-1111 131111 Business, Finance
## 3561 15-1132 151132 Computer, Math
## 3562 13-1111 131111 Business, Finance
## 3563 15-1121 151121 Computer, Math
## 3564 13-1081 131081 Business, Finance
## 3565 13-2011 132011 Business, Finance
## 3566 15-1151 151151 Computer, Math
## 3567 15-1132 151132 Computer, Math
## 3568 17-2141 172141 Architecture, Engineer
## 3569 15-1131 151131 Computer, Math
## 3570 19-1042 191042 Life, Physcial, Social Science
## 3571 15-1131 151131 Computer, Math
## 3572 17-2031 172031 Architecture, Engineer
## 3573 15-1199 151199 Computer, Math
## 3574 17-2041 172041 Architecture, Engineer
## 3575 15-1121 151121 Computer, Math
## 3576 15-1132 151132 Computer, Math
## 3577 15-1121 151121 Computer, Math
## 3578 15-1132 151132 Computer, Math
## 3579 19-4011 194011 Life, Physcial, Social Science
## 3580 15-2011 152011 Computer, Math
## 3581 15-1199 151199 Computer, Math
## 3582 15-1132 151132 Computer, Math
## 3583 17-2071 172071 Architecture, Engineer
## 3584 15-1132 151132 Computer, Math
## 3585 11-3021 113021 Management
## 3586 15-1132 151132 Computer, Math
## 3587 15-1132 151132 Computer, Math
## 3588 11-9121 119121 Management
## 3589 15-1133 151133 Computer, Math
## 3590 15-1121 151121 Computer, Math
## 3591 15-1132 151132 Computer, Math
## 3592 15-1199 151199 Computer, Math
## 3593 15-1132 151132 Computer, Math
## 3594 15-1143 151143 Computer, Math
## 3595 15-1141 151141 Computer, Math
## 3596 15-1132 151132 Computer, Math
## 3597 15-1142 151142 Computer, Math
## 3598 15-1121 151121 Computer, Math
## 3599 13-2051 132051 Business, Finance
## 3600 11-3021 113021 Management
## 3601 29-1021 291021 Healthcare Practitioner
## 3602 13-1111 131111 Business, Finance
## 3603 15-1132 151132 Computer, Math
## 3604 15-2031 152031 Computer, Math
## 3605 15-1121 151121 Computer, Math
## 3606 15-1141 151141 Computer, Math
## 3607 15-1132 151132 Computer, Math
## 3608 15-1132 151132 Computer, Math
## 3609 15-1133 151133 Computer, Math
## 3610 15-1199 151199 Computer, Math
## 3611 15-1132 151132 Computer, Math
## 3612 19-1042 191042 Life, Physcial, Social Science
## 3613 29-1065 291065 Healthcare Practitioner
## 3614 15-1132 151132 Computer, Math
## 3615 17-1011 171011 Architecture, Engineer
## 3616 15-1133 151133 Computer, Math
## 3617 15-1132 151132 Computer, Math
## 3618 15-1121 151121 Computer, Math
## 3619 25-1042 251042 Education, Training
## 3620 17-2071 172071 Architecture, Engineer
## 3621 15-1132 151132 Computer, Math
## 3622 15-1132 151132 Computer, Math
## 3623 19-3094 193094 Life, Physcial, Social Science
## 3624 15-1132 151132 Computer, Math
## 3625 15-1132 151132 Computer, Math
## 3626 15-1132 151132 Computer, Math
## 3627 17-2199 172199 Architecture, Engineer
## 3628 15-1132 151132 Computer, Math
## 3629 15-1133 151133 Computer, Math
## 3630 15-1132 151132 Computer, Math
## 3631 15-1199 151199 Computer, Math
## 3632 13-1111 131111 Business, Finance
## 3633 15-1132 151132 Computer, Math
## 3634 15-1132 151132 Computer, Math
## 3635 15-1132 151132 Computer, Math
## 3636 13-1111 131111 Business, Finance
## 3637 15-1199 151199 Computer, Math
## 3638 25-1193 251193 Education, Training
## 3639 25-2031 252031 Education, Training
## 3640 15-1132 151132 Computer, Math
## 3641 15-1134 151134 Computer, Math
## 3642 11-3021 113021 Management
## 3643 25-1052 251052 Education, Training
## 3644 15-1121 151121 Computer, Math
## 3645 15-2041 152041 Computer, Math
## 3646 15-1132 151132 Computer, Math
## 3647 15-1142 151142 Computer, Math
## 3648 17-2071 172071 Architecture, Engineer
## 3649 15-1131 151131 Computer, Math
## 3650 29-2011 292011 Healthcare Practitioner
## 3651 17-2199 172199 Architecture, Engineer
## 3652 15-1199 151199 Computer, Math
## 3653 15-1132 151132 Computer, Math
## 3654 15-1199 151199 Computer, Math
## 3655 17-2199 172199 Architecture, Engineer
## 3656 17-2141 172141 Architecture, Engineer
## 3657 15-1199 151199 Computer, Math
## 3658 15-1133 151133 Computer, Math
## 3659 13-2051 132051 Business, Finance
## 3660 15-1132 151132 Computer, Math
## 3661 15-1133 151133 Computer, Math
## 3662 27-3031 273031 Media, Design
## 3663 17-2072 172072 Architecture, Engineer
## 3664 19-1029 191029 Life, Physcial, Social Science
## 3665 11-3031 113031 Management
## 3666 15-1121 151121 Computer, Math
## 3667 17-2072 172072 Architecture, Engineer
## 3668 15-1133 151133 Computer, Math
## 3669 15-1132 151132 Computer, Math
## 3670 15-1132 151132 Computer, Math
## 3671 13-1111 131111 Business, Finance
## 3672 15-1199 151199 Computer, Math
## 3673 17-2141 172141 Architecture, Engineer
## 3674 13-1071 131071 Business, Finance
## 3675 15-1132 151132 Computer, Math
## 3676 15-1121 151121 Computer, Math
## 3677 29-1069 291069 Healthcare Practitioner
## 3678 19-2031 192031 Life, Physcial, Social Science
## 3679 11-2021 112021 Management
## 3680 15-1133 151133 Computer, Math
## 3681 15-1142 151142 Computer, Math
## 3682 13-1023 131023 Business, Finance
## 3683 27-1024 271024 Media, Design
## 3684 15-1133 151133 Computer, Math
## 3685 13-1041 131041 Business, Finance
## 3686 15-1132 151132 Computer, Math
## 3687 19-3099 193099 Life, Physcial, Social Science
## 3688 15-1131 151131 Computer, Math
## 3689 25-1071 251071 Education, Training
## 3690 15-1132 151132 Computer, Math
## 3691 15-1132 151132 Computer, Math
## 3692 13-1081 131081 Business, Finance
## 3693 15-1199 151199 Computer, Math
## 3694 15-1199 151199 Computer, Math
## 3695 15-1132 151132 Computer, Math
## 3696 17-2141 172141 Architecture, Engineer
## 3697 15-2031 152031 Computer, Math
## 3698 17-2071 172071 Architecture, Engineer
## 3699 15-1132 151132 Computer, Math
## 3700 15-1132 151132 Computer, Math
## 3701 11-3021 113021 Management
## 3702 15-1199 151199 Computer, Math
## 3703 13-2011 132011 Business, Finance
## 3704 15-1132 151132 Computer, Math
## 3705 15-1199 151199 Computer, Math
## 3706 15-1132 151132 Computer, Math
## 3707 15-1121 151121 Computer, Math
## 3708 15-2041 152041 Computer, Math
## 3709 15-1121 151121 Computer, Math
## 3710 15-1199 151199 Computer, Math
## 3711 15-1121 151121 Computer, Math
## 3712 15-1132 151132 Computer, Math
## 3713 17-2141 172141 Architecture, Engineer
## 3714 15-1121 151121 Computer, Math
## 3715 15-1132 151132 Computer, Math
## 3716 25-1011 251011 Education, Training
## 3717 23-1011 231011 Legal
## 3718 15-1132 151132 Computer, Math
## 3719 13-1111 131111 Business, Finance
## 3720 15-1199 151199 Computer, Math
## 3721 17-2141 172141 Architecture, Engineer
## 3722 17-2141 172141 Architecture, Engineer
## 3723 15-1199 151199 Computer, Math
## 3724 15-1199 151199 Computer, Math
## 3725 15-1132 151132 Computer, Math
## 3726 15-1142 151142 Computer, Math
## 3727 15-1132 151132 Computer, Math
## 3728 29-1141 291141 Healthcare Practitioner
## 3729 17-2071 172071 Architecture, Engineer
## 3730 15-1121 151121 Computer, Math
## 3731 15-1132 151132 Computer, Math
## 3732 15-1132 151132 Computer, Math
## 3733 15-1199 151199 Computer, Math
## 3734 15-1199 151199 Computer, Math
## 3735 15-1199 151199 Computer, Math
## 3736 13-2051 132051 Business, Finance
## 3737 15-1122 151122 Computer, Math
## 3738 15-1133 151133 Computer, Math
## 3739 13-2051 132051 Business, Finance
## 3740 15-1131 151131 Computer, Math
## 3741 15-1132 151132 Computer, Math
## 3742 15-2041 152041 Computer, Math
## 3743 25-1011 251011 Education, Training
## 3744 15-1132 151132 Computer, Math
## 3745 15-1132 151132 Computer, Math
## 3746 13-1071 131071 Business, Finance
## 3747 15-1132 151132 Computer, Math
## 3748 29-1041 291041 Healthcare Practitioner
## 3749 15-1199 151199 Computer, Math
## 3750 29-1069 291069 Healthcare Practitioner
## 3751 19-1021 191021 Life, Physcial, Social Science
## 3752 15-1132 151132 Computer, Math
## 3753 15-1132 151132 Computer, Math
## 3754 15-1199 151199 Computer, Math
## 3755 15-1132 151132 Computer, Math
## 3756 13-2099 132099 Business, Finance
## 3757 13-2099 132099 Business, Finance
## 3758 13-2099 132099 Business, Finance
## 3759 15-1133 151133 Computer, Math
## 3760 15-1132 151132 Computer, Math
## 3761 17-2061 172061 Architecture, Engineer
## 3762 15-1121 151121 Computer, Math
## 3763 15-1132 151132 Computer, Math
## 3764 15-1121 151121 Computer, Math
## 3765 17-2072 172072 Architecture, Engineer
## 3766 15-1199 151199 Computer, Math
## 3767 25-2031 252031 Education, Training
## 3768 15-1131 151131 Computer, Math
## 3769 15-2031 152031 Computer, Math
## 3770 17-2141 172141 Architecture, Engineer
## 3771 15-1132 151132 Computer, Math
## 3772 15-1132 151132 Computer, Math
## 3773 15-1199 151199 Computer, Math
## 3774 15-1132 151132 Computer, Math
## 3775 15-1111 151111 Computer, Math
## 3776 15-2031 152031 Computer, Math
## 3777 19-2032 192032 Life, Physcial, Social Science
## 3778 15-1121 151121 Computer, Math
## 3779 15-1121 151121 Computer, Math
## 3780 15-1199 151199 Computer, Math
## 3781 15-1121 151121 Computer, Math
## 3782 15-1133 151133 Computer, Math
## 3783 13-1161 131161 Business, Finance
## 3784 15-1131 151131 Computer, Math
## 3785 13-2099 132099 Business, Finance
## 3786 13-1071 131071 Business, Finance
## 3787 15-1143 151143 Computer, Math
## 3788 15-1131 151131 Computer, Math
## 3789 15-1121 151121 Computer, Math
## 3790 15-1132 151132 Computer, Math
## 3791 15-1121 151121 Computer, Math
## 3792 11-2011 112011 Management
## 3793 13-1161 131161 Business, Finance
## 3794 15-1121 151121 Computer, Math
## 3795 17-2141 172141 Architecture, Engineer
## 3796 27-1014 271014 Media, Design
## 3797 15-1132 151132 Computer, Math
## 3798 15-1132 151132 Computer, Math
## 3799 13-2011 132011 Business, Finance
## 3800 15-1131 151131 Computer, Math
## 3801 25-1066 251066 Education, Training
## 3802 15-1131 151131 Computer, Math
## 3803 15-1132 151132 Computer, Math
## 3804 15-1131 151131 Computer, Math
## 3805 17-2199 172199 Architecture, Engineer
## 3806 15-1199 151199 Computer, Math
## 3807 15-1199 151199 Computer, Math
## 3808 15-1199 151199 Computer, Math
## 3809 15-1132 151132 Computer, Math
## 3810 15-1131 151131 Computer, Math
## 3811 15-1132 151132 Computer, Math
## 3812 15-1132 151132 Computer, Math
## 3813 15-1133 151133 Computer, Math
## 3814 15-1132 151132 Computer, Math
## 3815 15-1132 151132 Computer, Math
## 3816 25-1124 251124 Education, Training
## 3817 25-1124 251124 Education, Training
## 3818 15-1132 151132 Computer, Math
## 3819 15-1132 151132 Computer, Math
## 3820 15-1121 151121 Computer, Math
## 3821 15-1121 151121 Computer, Math
## 3822 15-1132 151132 Computer, Math
## 3823 17-2112 172112 Architecture, Engineer
## 3824 19-1042 191042 Life, Physcial, Social Science
## 3825 15-1199 151199 Computer, Math
## 3826 15-1132 151132 Computer, Math
## 3827 29-1063 291063 Healthcare Practitioner
## 3828 15-1132 151132 Computer, Math
## 3829 29-1063 291063 Healthcare Practitioner
## 3830 15-1133 151133 Computer, Math
## 3831 29-1021 291021 Healthcare Practitioner
## 3832 15-1121 151121 Computer, Math
## 3833 15-1121 151121 Computer, Math
## 3834 13-2051 132051 Business, Finance
## 3835 15-1121 151121 Computer, Math
## 3836 15-1132 151132 Computer, Math
## 3837 15-1133 151133 Computer, Math
## 3838 25-1054 251054 Education, Training
## 3839 17-2141 172141 Architecture, Engineer
## 3840 15-1131 151131 Computer, Math
## 3841 19-1029 191029 Life, Physcial, Social Science
## 3842 15-1199 151199 Computer, Math
## 3843 15-1132 151132 Computer, Math
## 3844 15-1132 151132 Computer, Math
## 3845 15-1132 151132 Computer, Math
## 3846 15-1199 151199 Computer, Math
## 3847 15-1121 151121 Computer, Math
## 3848 15-1132 151132 Computer, Math
## 3849 15-1199 151199 Computer, Math
## 3850 15-1199 151199 Computer, Math
## 3851 15-1121 151121 Computer, Math
## 3852 15-1199 151199 Computer, Math
## 3853 15-1132 151132 Computer, Math
## 3854 13-1111 131111 Business, Finance
## 3855 11-3021 113021 Management
## 3856 15-1121 151121 Computer, Math
## 3857 13-2051 132051 Business, Finance
## 3858 15-1132 151132 Computer, Math
## 3859 15-1142 151142 Computer, Math
## 3860 15-1199 151199 Computer, Math
## 3861 15-2031 152031 Computer, Math
## 3862 15-1121 151121 Computer, Math
## 3863 13-1081 131081 Business, Finance
## 3864 15-1132 151132 Computer, Math
## 3865 15-1134 151134 Computer, Math
## 3866 17-3011 173011 Architecture, Engineer
## 3867 15-1132 151132 Computer, Math
## 3868 15-1199 151199 Computer, Math
## 3869 15-1199 151199 Computer, Math
## 3870 25-1052 251052 Education, Training
## 3871 27-1024 271024 Media, Design
## 3872 15-1121 151121 Computer, Math
## 3873 15-1132 151132 Computer, Math
## 3874 15-1132 151132 Computer, Math
## 3875 13-1051 131051 Business, Finance
## 3876 17-2071 172071 Architecture, Engineer
## 3877 15-2041 152041 Computer, Math
## 3878 15-1132 151132 Computer, Math
## 3879 15-1143 151143 Computer, Math
## 3880 15-1199 151199 Computer, Math
## 3881 17-2071 172071 Architecture, Engineer
## 3882 13-1111 131111 Business, Finance
## 3883 27-1024 271024 Media, Design
## 3884 15-1122 151122 Computer, Math
## 3885 15-1121 151121 Computer, Math
## 3886 15-1121 151121 Computer, Math
## 3887 13-2011 132011 Business, Finance
## 3888 17-2112 172112 Architecture, Engineer
## 3889 15-2031 152031 Computer, Math
## 3890 15-1199 151199 Computer, Math
## 3891 15-1132 151132 Computer, Math
## 3892 19-1021 191021 Life, Physcial, Social Science
## 3893 15-1132 151132 Computer, Math
## 3894 11-9033 119033 Management
## 3895 15-1121 151121 Computer, Math
## 3896 13-2051 132051 Business, Finance
## 3897 15-1199 151199 Computer, Math
## 3898 15-1142 151142 Computer, Math
## 3899 15-1133 151133 Computer, Math
## 3900 15-1131 151131 Computer, Math
## 3901 15-1121 151121 Computer, Math
## 3902 15-1143 151143 Computer, Math
## 3903 15-1142 151142 Computer, Math
## 3904 15-1133 151133 Computer, Math
## 3905 15-1199 151199 Computer, Math
## 3906 15-1121 151121 Computer, Math
## 3907 15-2031 152031 Computer, Math
## 3908 15-1141 151141 Computer, Math
## 3909 15-1134 151134 Computer, Math
## 3910 11-9021 119021 Management
## 3911 15-1121 151121 Computer, Math
## 3912 15-1121 151121 Computer, Math
## 3913 13-2051 132051 Business, Finance
## 3914 15-1121 151121 Computer, Math
## 3915 15-1132 151132 Computer, Math
## 3916 15-1132 151132 Computer, Math
## 3917 15-1199 151199 Computer, Math
## 3918 15-1132 151132 Computer, Math
## 3919 11-9021 119021 Management
## 3920 15-2031 152031 Computer, Math
## 3921 15-1132 151132 Computer, Math
## 3922 15-1132 151132 Computer, Math
## 3923 15-1132 151132 Computer, Math
## 3924 15-1199 151199 Computer, Math
## 3925 15-1199 151199 Computer, Math
## 3926 15-1199 151199 Computer, Math
## 3927 15-1121 151121 Computer, Math
## 3928 15-1132 151132 Computer, Math
## 3929 17-2141 172141 Architecture, Engineer
## 3930 15-1132 151132 Computer, Math
## 3931 13-2051 132051 Business, Finance
## 3932 15-1132 151132 Computer, Math
## 3933 17-2141 172141 Architecture, Engineer
## 3934 25-1124 251124 Education, Training
## 3935 13-2051 132051 Business, Finance
## 3936 25-1113 251113 Education, Training
## 3937 15-1132 151132 Computer, Math
## 3938 15-1134 151134 Computer, Math
## 3939 15-1131 151131 Computer, Math
## 3940 15-1132 151132 Computer, Math
## 3941 11-1021 111021 Management
## 3942 15-1132 151132 Computer, Math
## 3943 15-1141 151141 Computer, Math
## 3944 15-1121 151121 Computer, Math
## 3945 15-1199 151199 Computer, Math
## 3946 15-1199 151199 Computer, Math
## 3947 15-1132 151132 Computer, Math
## 3948 15-1132 151132 Computer, Math
## 3949 15-1132 151132 Computer, Math
## 3950 15-1132 151132 Computer, Math
## 3951 15-1132 151132 Computer, Math
## 3952 15-1134 151134 Computer, Math
## 3953 15-1122 151122 Computer, Math
## 3954 15-1131 151131 Computer, Math
## 3955 15-1132 151132 Computer, Math
## 3956 15-1199 151199 Computer, Math
## 3957 15-1133 151133 Computer, Math
## 3958 15-1199 151199 Computer, Math
## 3959 15-1132 151132 Computer, Math
## 3960 15-1199 151199 Computer, Math
## 3961 15-1132 151132 Computer, Math
## 3962 15-1131 151131 Computer, Math
## 3963 15-1121 151121 Computer, Math
## 3964 15-1121 151121 Computer, Math
## 3965 15-1121 151121 Computer, Math
## 3966 15-1132 151132 Computer, Math
## 3967 15-2041 152041 Computer, Math
## 3968 25-2021 252021 Education, Training
## 3969 15-1199 151199 Computer, Math
## 3970 17-2131 172131 Architecture, Engineer
## 3971 15-1133 151133 Computer, Math
## 3972 15-1121 151121 Computer, Math
## 3973 15-1132 151132 Computer, Math
## 3974 13-1041 131041 Business, Finance
## 3975 15-1132 151132 Computer, Math
## 3976 17-2112 172112 Architecture, Engineer
## 3977 13-2011 132011 Business, Finance
## 3978 15-1131 151131 Computer, Math
## 3979 15-1121 151121 Computer, Math
## 3980 15-1132 151132 Computer, Math
## 3981 15-1131 151131 Computer, Math
## 3982 15-1199 151199 Computer, Math
## 3983 15-1111 151111 Computer, Math
## 3984 15-1132 151132 Computer, Math
## 3985 15-1133 151133 Computer, Math
## 3986 15-1121 151121 Computer, Math
## 3987 15-1132 151132 Computer, Math
## 3988 19-4061 194061 Life, Physcial, Social Science
## 3989 15-1132 151132 Computer, Math
## 3990 15-1199 151199 Computer, Math
## 3991 15-2031 152031 Computer, Math
## 3992 19-2031 192031 Life, Physcial, Social Science
## 3993 13-1111 131111 Business, Finance
## 3994 15-1133 151133 Computer, Math
## 3995 15-1121 151121 Computer, Math
## 3996 15-1132 151132 Computer, Math
## 3997 27-1021 271021 Media, Design
## 3998 13-1111 131111 Business, Finance
## 3999 13-2099 132099 Business, Finance
## 4000 19-1029 191029 Life, Physcial, Social Science
## 4001 13-2051 132051 Business, Finance
## 4002 13-2051 132051 Business, Finance
## 4003 15-1121 151121 Computer, Math
## 4004 29-1123 291123 Healthcare Practitioner
## 4005 15-1121 151121 Computer, Math
## 4006 15-1121 151121 Computer, Math
## 4007 13-1111 131111 Business, Finance
## 4008 15-1132 151132 Computer, Math
## 4009 15-1199 151199 Computer, Math
## 4010 15-1132 151132 Computer, Math
## 4011 15-1121 151121 Computer, Math
## 4012 15-1141 151141 Computer, Math
## 4013 15-1132 151132 Computer, Math
## 4014 29-2012 292012 Healthcare Practitioner
## 4015 15-1131 151131 Computer, Math
## 4016 15-1199 151199 Computer, Math
## 4017 17-2112 172112 Architecture, Engineer
## 4018 15-1132 151132 Computer, Math
## 4019 15-1141 151141 Computer, Math
## 4020 15-1132 151132 Computer, Math
## 4021 15-1131 151131 Computer, Math
## 4022 15-1132 151132 Computer, Math
## 4023 15-1132 151132 Computer, Math
## 4024 15-1121 151121 Computer, Math
## 4025 13-2051 132051 Business, Finance
## 4026 15-1199 151199 Computer, Math
## 4027 15-1132 151132 Computer, Math
## 4028 15-1132 151132 Computer, Math
## 4029 15-1121 151121 Computer, Math
## 4030 15-1121 151121 Computer, Math
## 4031 15-1121 151121 Computer, Math
## 4032 15-1199 151199 Computer, Math
## 4033 13-2051 132051 Business, Finance
## 4034 15-1131 151131 Computer, Math
## 4035 15-1199 151199 Computer, Math
## 4036 11-3021 113021 Management
## 4037 15-1199 151199 Computer, Math
## 4038 15-1131 151131 Computer, Math
## 4039 15-2031 152031 Computer, Math
## 4040 15-1143 151143 Computer, Math
## 4041 17-2199 172199 Architecture, Engineer
## 4042 15-1121 151121 Computer, Math
## 4043 15-1199 151199 Computer, Math
## 4044 15-1132 151132 Computer, Math
## 4045 17-2031 172031 Architecture, Engineer
## 4046 15-1132 151132 Computer, Math
## 4047 17-2141 172141 Architecture, Engineer
## 4048 15-1132 151132 Computer, Math
## 4049 15-1132 151132 Computer, Math
## 4050 15-1132 151132 Computer, Math
## 4051 15-2031 152031 Computer, Math
## 4052 19-2032 192032 Life, Physcial, Social Science
## 4053 15-1132 151132 Computer, Math
## 4054 19-1042 191042 Life, Physcial, Social Science
## 4055 15-2041 152041 Computer, Math
## 4056 15-1132 151132 Computer, Math
## 4057 17-2141 172141 Architecture, Engineer
## 4058 15-1141 151141 Computer, Math
## 4059 15-1132 151132 Computer, Math
## 4060 15-1132 151132 Computer, Math
## 4061 15-1199 151199 Computer, Math
## 4062 15-2041 152041 Computer, Math
## 4063 15-1199 151199 Computer, Math
## 4064 15-1132 151132 Computer, Math
## 4065 15-1134 151134 Computer, Math
## 4066 15-1132 151132 Computer, Math
## 4067 15-1199 151199 Computer, Math
## 4068 17-2072 172072 Architecture, Engineer
## 4069 15-1132 151132 Computer, Math
## 4070 15-1199 151199 Computer, Math
## 4071 29-2011 292011 Healthcare Practitioner
## 4072 15-1132 151132 Computer, Math
## 4073 15-1131 151131 Computer, Math
## 4074 11-2021 112021 Management
## 4075 15-1199 151199 Computer, Math
## 4076 15-1122 151122 Computer, Math
## 4077 15-1132 151132 Computer, Math
## 4078 15-1199 151199 Computer, Math
## 4079 15-1132 151132 Computer, Math
## 4080 15-1121 151121 Computer, Math
## 4081 13-2099 132099 Business, Finance
## 4082 15-1121 151121 Computer, Math
## 4083 15-1132 151132 Computer, Math
## 4084 15-1132 151132 Computer, Math
## 4085 15-1131 151131 Computer, Math
## 4086 15-1132 151132 Computer, Math
## 4087 15-1121 151121 Computer, Math
## 4088 15-1132 151132 Computer, Math
## 4089 13-2051 132051 Business, Finance
## 4090 15-1132 151132 Computer, Math
## 4091 15-1121 151121 Computer, Math
## 4092 25-1022 251022 Education, Training
## 4093 15-1134 151134 Computer, Math
## 4094 15-1121 151121 Computer, Math
## 4095 15-1199 151199 Computer, Math
## 4096 15-2031 152031 Computer, Math
## 4097 11-3021 113021 Management
## 4098 15-1132 151132 Computer, Math
## 4099 15-1199 151199 Computer, Math
## 4100 15-1121 151121 Computer, Math
## 4101 15-1121 151121 Computer, Math
## 4102 15-1132 151132 Computer, Math
## 4103 15-2011 152011 Computer, Math
## 4104 17-2199 172199 Architecture, Engineer
## 4105 15-1132 151132 Computer, Math
## 4106 13-1111 131111 Business, Finance
## 4107 19-4021 194021 Life, Physcial, Social Science
## 4108 23-2011 232011 Legal
## 4109 15-1199 151199 Computer, Math
## 4110 15-1132 151132 Computer, Math
## 4111 15-1121 151121 Computer, Math
## 4112 15-1132 151132 Computer, Math
## 4113 15-1132 151132 Computer, Math
## 4114 15-1141 151141 Computer, Math
## 4115 15-1121 151121 Computer, Math
## 4116 15-1132 151132 Computer, Math
## 4117 15-1132 151132 Computer, Math
## 4118 15-1132 151132 Computer, Math
## 4119 15-1121 151121 Computer, Math
## 4120 15-1199 151199 Computer, Math
## 4121 17-2112 172112 Architecture, Engineer
## 4122 19-1042 191042 Life, Physcial, Social Science
## 4123 15-1141 151141 Computer, Math
## 4124 15-1132 151132 Computer, Math
## 4125 25-1071 251071 Education, Training
## 4126 15-1132 151132 Computer, Math
## 4127 15-1132 151132 Computer, Math
## 4128 13-2011 132011 Business, Finance
## 4129 15-1121 151121 Computer, Math
## 4130 15-1121 151121 Computer, Math
## 4131 15-1121 151121 Computer, Math
## 4132 15-1134 151134 Computer, Math
## 4133 19-1029 191029 Life, Physcial, Social Science
## 4134 15-1131 151131 Computer, Math
## 4135 15-1132 151132 Computer, Math
## 4136 15-1132 151132 Computer, Math
## 4137 15-1131 151131 Computer, Math
## 4138 13-2011 132011 Business, Finance
## 4139 15-1132 151132 Computer, Math
## 4140 15-1132 151132 Computer, Math
## 4141 13-1111 131111 Business, Finance
## 4142 15-1132 151132 Computer, Math
## 4143 19-2012 192012 Life, Physcial, Social Science
## 4144 11-3021 113021 Management
## 4145 15-1132 151132 Computer, Math
## 4146 15-1132 151132 Computer, Math
## 4147 15-1132 151132 Computer, Math
## 4148 27-3031 273031 Media, Design
## 4149 19-1042 191042 Life, Physcial, Social Science
## 4150 15-1142 151142 Computer, Math
## 4151 15-1132 151132 Computer, Math
## 4152 15-1132 151132 Computer, Math
## 4153 15-1121 151121 Computer, Math
## 4154 19-1042 191042 Life, Physcial, Social Science
## 4155 15-1199 151199 Computer, Math
## 4156 15-2041 152041 Computer, Math
## 4157 15-1199 151199 Computer, Math
## 4158 15-1133 151133 Computer, Math
## 4159 15-1132 151132 Computer, Math
## 4160 13-1111 131111 Business, Finance
## 4161 15-1132 151132 Computer, Math
## 4162 15-1199 151199 Computer, Math
## 4163 15-1132 151132 Computer, Math
## 4164 15-1199 151199 Computer, Math
## 4165 27-1024 271024 Media, Design
## 4166 15-1132 151132 Computer, Math
## 4167 15-1132 151132 Computer, Math
## 4168 15-1121 151121 Computer, Math
## 4169 17-2141 172141 Architecture, Engineer
## 4170 15-1132 151132 Computer, Math
## 4171 15-1199 151199 Computer, Math
## 4172 29-2011 292011 Healthcare Practitioner
## 4173 15-1133 151133 Computer, Math
## 4174 15-1132 151132 Computer, Math
## 4175 15-1132 151132 Computer, Math
## 4176 13-1111 131111 Business, Finance
## 4177 15-1121 151121 Computer, Math
## 4178 21-2011 212011 Social Service
## 4179 15-1132 151132 Computer, Math
## 4180 15-1199 151199 Computer, Math
## 4181 15-1132 151132 Computer, Math
## 4182 15-1132 151132 Computer, Math
## 4183 15-1121 151121 Computer, Math
## 4184 15-1199 151199 Computer, Math
## 4185 15-1131 151131 Computer, Math
## 4186 15-1134 151134 Computer, Math
## 4187 15-2031 152031 Computer, Math
## 4188 15-1132 151132 Computer, Math
## 4189 15-1132 151132 Computer, Math
## 4190 15-1199 151199 Computer, Math
## 4191 15-1132 151132 Computer, Math
## 4192 11-3021 113021 Management
## 4193 15-1131 151131 Computer, Math
## 4194 15-1132 151132 Computer, Math
## 4195 15-2031 152031 Computer, Math
## 4196 13-2051 132051 Business, Finance
## 4197 15-1132 151132 Computer, Math
## 4198 13-2051 132051 Business, Finance
## 4199 11-9111 119111 Management
## 4200 13-1111 131111 Business, Finance
## 4201 11-9041 119041 Management
## 4202 25-1032 251032 Education, Training
## 4203 17-2141 172141 Architecture, Engineer
## 4204 15-2031 152031 Computer, Math
## 4205 17-2141 172141 Architecture, Engineer
## 4206 15-1132 151132 Computer, Math
## 4207 15-1132 151132 Computer, Math
## 4208 15-1131 151131 Computer, Math
## 4209 17-2141 172141 Architecture, Engineer
## 4210 15-1132 151132 Computer, Math
## 4211 15-1132 151132 Computer, Math
## 4212 15-1133 151133 Computer, Math
## 4213 15-1199 151199 Computer, Math
## 4214 15-1121 151121 Computer, Math
## 4215 25-1042 251042 Education, Training
## 4216 15-1142 151142 Computer, Math
## 4217 17-2131 172131 Architecture, Engineer
## 4218 15-1131 151131 Computer, Math
## 4219 41-9031 419031 Sales
## 4220 15-1199 151199 Computer, Math
## 4221 15-1199 151199 Computer, Math
## 4222 15-1132 151132 Computer, Math
## 4223 13-2011 132011 Business, Finance
## 4224 15-1132 151132 Computer, Math
## 4225 15-1199 151199 Computer, Math
## 4226 17-2199 172199 Architecture, Engineer
## 4227 15-1199 151199 Computer, Math
## 4228 17-2072 172072 Architecture, Engineer
## 4229 15-1132 151132 Computer, Math
## 4230 15-1132 151132 Computer, Math
## 4231 17-2051 172051 Architecture, Engineer
## 4232 15-1199 151199 Computer, Math
## 4233 15-2041 152041 Computer, Math
## 4234 15-1132 151132 Computer, Math
## 4235 15-1132 151132 Computer, Math
## 4236 15-1121 151121 Computer, Math
## 4237 15-1199 151199 Computer, Math
## 4238 27-1021 271021 Media, Design
## 4239 15-1141 151141 Computer, Math
## 4240 15-1121 151121 Computer, Math
## 4241 15-1131 151131 Computer, Math
## 4242 15-1199 151199 Computer, Math
## 4243 15-1132 151132 Computer, Math
## 4244 15-1133 151133 Computer, Math
## 4245 27-3043 273043 Media, Design
## 4246 15-1132 151132 Computer, Math
## 4247 15-1132 151132 Computer, Math
## 4248 15-1132 151132 Computer, Math
## 4249 11-3021 113021 Management
## 4250 19-1029 191029 Life, Physcial, Social Science
## 4251 15-1133 151133 Computer, Math
## 4252 15-1132 151132 Computer, Math
## 4253 15-1132 151132 Computer, Math
## 4254 15-1132 151132 Computer, Math
## 4255 15-1133 151133 Computer, Math
## 4256 17-2199 172199 Architecture, Engineer
## 4257 15-1111 151111 Computer, Math
## 4258 15-2031 152031 Computer, Math
## 4259 15-1131 151131 Computer, Math
## 4260 15-1141 151141 Computer, Math
## 4261 15-1121 151121 Computer, Math
## 4262 15-1199 151199 Computer, Math
## 4263 15-2041 152041 Computer, Math
## 4264 15-1121 151121 Computer, Math
## 4265 15-1199 151199 Computer, Math
## 4266 15-1132 151132 Computer, Math
## 4267 11-3031 113031 Management
## 4268 15-1141 151141 Computer, Math
## 4269 15-1131 151131 Computer, Math
## 4270 15-1132 151132 Computer, Math
## 4271 15-1132 151132 Computer, Math
## 4272 29-1051 291051 Healthcare Practitioner
## 4273 13-2011 132011 Business, Finance
## 4274 17-2051 172051 Architecture, Engineer
## 4275 17-2072 172072 Architecture, Engineer
## 4276 15-1142 151142 Computer, Math
## 4277 15-1199 151199 Computer, Math
## 4278 15-1132 151132 Computer, Math
## 4279 15-1131 151131 Computer, Math
## 4280 15-1133 151133 Computer, Math
## 4281 15-1199 151199 Computer, Math
## 4282 15-1132 151132 Computer, Math
## 4283 15-1199 151199 Computer, Math
## 4284 17-2051 172051 Architecture, Engineer
## 4285 17-2072 172072 Architecture, Engineer
## 4286 15-1132 151132 Computer, Math
## 4287 15-1131 151131 Computer, Math
## 4288 41-9031 419031 Sales
## 4289 15-1199 151199 Computer, Math
## 4290 15-1121 151121 Computer, Math
## 4291 13-2011 132011 Business, Finance
## 4292 11-2031 112031 Management
## 4293 25-1121 251121 Education, Training
## 4294 17-2141 172141 Architecture, Engineer
## 4295 11-3051 113051 Management
## 4296 15-1199 151199 Computer, Math
## 4297 15-1132 151132 Computer, Math
## 4298 15-1121 151121 Computer, Math
## 4299 15-1132 151132 Computer, Math
## 4300 15-2031 152031 Computer, Math
## 4301 15-1199 151199 Computer, Math
## 4302 19-1042 191042 Life, Physcial, Social Science
## 4303 15-1132 151132 Computer, Math
## 4304 13-1161 131161 Business, Finance
## 4305 15-1132 151132 Computer, Math
## 4306 29-1069 291069 Healthcare Practitioner
## 4307 15-2031 152031 Computer, Math
## 4308 15-1132 151132 Computer, Math
## 4309 15-1121 151121 Computer, Math
## 4310 15-1132 151132 Computer, Math
## 4311 13-2051 132051 Business, Finance
## 4312 15-1132 151132 Computer, Math
## 4313 29-1128 291128 Healthcare Practitioner
## 4314 13-1111 131111 Business, Finance
## 4315 15-1132 151132 Computer, Math
## 4316 15-1132 151132 Computer, Math
## 4317 15-1132 151132 Computer, Math
## 4318 15-1131 151131 Computer, Math
## 4319 15-1111 151111 Computer, Math
## 4320 15-1133 151133 Computer, Math
## 4321 15-1121 151121 Computer, Math
## 4322 15-1131 151131 Computer, Math
## 4323 11-9141 119141 Management
## 4324 15-1132 151132 Computer, Math
## 4325 23-1011 231011 Legal
## 4326 15-1199 151199 Computer, Math
## 4327 13-2051 132051 Business, Finance
## 4328 25-1011 251011 Education, Training
## 4329 15-1199 151199 Computer, Math
## 4330 15-1121 151121 Computer, Math
## 4331 13-2051 132051 Business, Finance
## 4332 15-1121 151121 Computer, Math
## 4333 15-1122 151122 Computer, Math
## 4334 15-1199 151199 Computer, Math
## 4335 15-1121 151121 Computer, Math
## 4336 15-1132 151132 Computer, Math
## 4337 13-1111 131111 Business, Finance
## 4338 15-1132 151132 Computer, Math
## 4339 15-1132 151132 Computer, Math
## 4340 15-1132 151132 Computer, Math
## 4341 17-2071 172071 Architecture, Engineer
## 4342 15-1132 151132 Computer, Math
## 4343 15-2031 152031 Computer, Math
## 4344 15-1132 151132 Computer, Math
## 4345 15-1199 151199 Computer, Math
## 4346 15-1132 151132 Computer, Math
## 4347 13-2051 132051 Business, Finance
## 4348 15-1131 151131 Computer, Math
## 4349 15-1133 151133 Computer, Math
## 4350 15-1132 151132 Computer, Math
## 4351 19-4061 194061 Life, Physcial, Social Science
## 4352 15-1133 151133 Computer, Math
## 4353 15-1121 151121 Computer, Math
## 4354 15-1199 151199 Computer, Math
## 4355 29-1123 291123 Healthcare Practitioner
## 4356 15-1132 151132 Computer, Math
## 4357 15-1132 151132 Computer, Math
## 4358 15-1132 151132 Computer, Math
## 4359 15-1132 151132 Computer, Math
## 4360 15-1134 151134 Computer, Math
## 4361 27-1014 271014 Media, Design
## 4362 15-1133 151133 Computer, Math
## 4363 11-3031 113031 Management
## 4364 15-1141 151141 Computer, Math
## 4365 15-1132 151132 Computer, Math
## 4366 15-1121 151121 Computer, Math
## 4367 13-2011 132011 Business, Finance
## 4368 13-2099 132099 Business, Finance
## 4369 15-2031 152031 Computer, Math
## 4370 29-1069 291069 Healthcare Practitioner
## 4371 15-1141 151141 Computer, Math
## 4372 15-1132 151132 Computer, Math
## 4373 15-1132 151132 Computer, Math
## 4374 17-2199 172199 Architecture, Engineer
## 4375 19-1029 191029 Life, Physcial, Social Science
## 4376 13-1041 131041 Business, Finance
## 4377 11-3021 113021 Management
## 4378 15-1131 151131 Computer, Math
## 4379 15-1199 151199 Computer, Math
## 4380 15-1132 151132 Computer, Math
## 4381 15-1132 151132 Computer, Math
## 4382 15-1132 151132 Computer, Math
## 4383 15-1199 151199 Computer, Math
## 4384 17-2051 172051 Architecture, Engineer
## 4385 15-1143 151143 Computer, Math
## 4386 15-1121 151121 Computer, Math
## 4387 15-1132 151132 Computer, Math
## 4388 11-3021 113021 Management
## 4389 15-1132 151132 Computer, Math
## 4390 13-1161 131161 Business, Finance
## 4391 15-1121 151121 Computer, Math
## 4392 11-3021 113021 Management
## 4393 25-1011 251011 Education, Training
## 4394 15-1132 151132 Computer, Math
## 4395 15-1199 151199 Computer, Math
## 4396 13-1161 131161 Business, Finance
## 4397 15-1132 151132 Computer, Math
## 4398 15-1131 151131 Computer, Math
## 4399 15-1132 151132 Computer, Math
## 4400 13-1161 131161 Business, Finance
## 4401 15-1199 151199 Computer, Math
## 4402 15-1132 151132 Computer, Math
## 4403 15-1132 151132 Computer, Math
## 4404 13-1161 131161 Business, Finance
## 4405 15-1132 151132 Computer, Math
## 4406 29-2011 292011 Healthcare Practitioner
## 4407 15-1121 151121 Computer, Math
## 4408 15-1199 151199 Computer, Math
## 4409 13-2011 132011 Business, Finance
## 4410 15-1132 151132 Computer, Math
## 4411 15-1132 151132 Computer, Math
## 4412 15-1122 151122 Computer, Math
## 4413 13-2051 132051 Business, Finance
## 4414 15-1132 151132 Computer, Math
## 4415 13-1161 131161 Business, Finance
## 4416 15-1199 151199 Computer, Math
## 4417 15-1121 151121 Computer, Math
## 4418 15-1121 151121 Computer, Math
## 4419 15-1133 151133 Computer, Math
## 4420 15-1121 151121 Computer, Math
## 4421 15-1134 151134 Computer, Math
## 4422 15-1132 151132 Computer, Math
## 4423 15-1121 151121 Computer, Math
## 4424 29-1065 291065 Healthcare Practitioner
## 4425 29-1123 291123 Healthcare Practitioner
## 4426 15-1199.01 151199 Computer, Math
## 4427 15-1132 151132 Computer, Math
## 4428 17-2071 172071 Architecture, Engineer
## 4429 15-1142 151142 Computer, Math
## 4430 15-1199 151199 Computer, Math
## 4431 15-1199 151199 Computer, Math
## 4432 15-1132 151132 Computer, Math
## 4433 15-1121 151121 Computer, Math
## 4434 15-1151 151151 Computer, Math
## 4435 29-9099 299099 Healthcare Practitioner
## 4436 15-1121 151121 Computer, Math
## 4437 11-2021 112021 Management
## 4438 15-1132 151132 Computer, Math
## 4439 29-1123 291123 Healthcare Practitioner
## 4440 15-1132 151132 Computer, Math
## 4441 17-2072 172072 Architecture, Engineer
## 4442 15-1121 151121 Computer, Math
## 4443 29-1021 291021 Healthcare Practitioner
## 4444 15-2041 152041 Computer, Math
## 4445 15-1132 151132 Computer, Math
## 4446 41-9031 419031 Sales
## 4447 15-1132 151132 Computer, Math
## 4448 13-2051 132051 Business, Finance
## 4449 15-1132 151132 Computer, Math
## 4450 15-1132 151132 Computer, Math
## 4451 15-1131 151131 Computer, Math
## 4452 15-1121 151121 Computer, Math
## 4453 15-1132 151132 Computer, Math
## 4454 17-1011 171011 Architecture, Engineer
## 4455 13-1161 131161 Business, Finance
## 4456 17-2031 172031 Architecture, Engineer
## 4457 29-1069 291069 Healthcare Practitioner
## 4458 15-1131 151131 Computer, Math
## 4459 15-1134 151134 Computer, Math
## 4460 15-1131 151131 Computer, Math
## 4461 15-1141 151141 Computer, Math
## 4462 15-1121 151121 Computer, Math
## 4463 15-1132 151132 Computer, Math
## 4464 15-1134 151134 Computer, Math
## 4465 15-1121 151121 Computer, Math
## 4466 19-2011 192011 Life, Physcial, Social Science
## 4467 15-2041 152041 Computer, Math
## 4468 15-1133 151133 Computer, Math
## 4469 17-2072 172072 Architecture, Engineer
## 4470 15-1111 151111 Computer, Math
## 4471 15-1121 151121 Computer, Math
## 4472 15-1199 151199 Computer, Math
## 4473 15-1132 151132 Computer, Math
## 4474 15-1132 151132 Computer, Math
## 4475 17-2112 172112 Architecture, Engineer
## 4476 15-1133 151133 Computer, Math
## 4477 11-2021 112021 Management
## 4478 15-1132 151132 Computer, Math
## 4479 13-2051 132051 Business, Finance
## 4480 15-1142 151142 Computer, Math
## 4481 15-1132 151132 Computer, Math
## 4482 15-1132 151132 Computer, Math
## 4483 15-1131 151131 Computer, Math
## 4484 15-1132 151132 Computer, Math
## 4485 15-1142 151142 Computer, Math
## 4486 15-1132 151132 Computer, Math
## 4487 15-1121 151121 Computer, Math
## 4488 15-1121 151121 Computer, Math
## 4489 15-1121 151121 Computer, Math
## 4490 15-1132 151132 Computer, Math
## 4491 25-1051 251051 Education, Training
## 4492 15-1132 151132 Computer, Math
## 4493 17-2141 172141 Architecture, Engineer
## 4494 17-2072 172072 Architecture, Engineer
## 4495 15-1132 151132 Computer, Math
## 4496 15-1132 151132 Computer, Math
## 4497 15-2031 152031 Computer, Math
## 4498 15-1132 151132 Computer, Math
## 4499 15-1131 151131 Computer, Math
## 4500 17-2071 172071 Architecture, Engineer
## 4501 15-1132 151132 Computer, Math
## 4502 15-1132 151132 Computer, Math
## 4503 15-1131 151131 Computer, Math
## 4504 15-1141 151141 Computer, Math
## 4505 15-1121 151121 Computer, Math
## 4506 15-1199 151199 Computer, Math
## 4507 17-2141 172141 Architecture, Engineer
## 4508 19-1029 191029 Life, Physcial, Social Science
## 4509 13-1111 131111 Business, Finance
## 4510 15-1132 151132 Computer, Math
## 4511 15-1132 151132 Computer, Math
## 4512 13-2052 132052 Business, Finance
## 4513 15-1132 151132 Computer, Math
## 4514 15-1132 151132 Computer, Math
## 4515 11-3031 113031 Management
## 4516 15-1133 151133 Computer, Math
## 4517 15-1111 151111 Computer, Math
## 4518 15-1141 151141 Computer, Math
## 4519 29-1051 291051 Healthcare Practitioner
## 4520 15-1132 151132 Computer, Math
## 4521 15-1142 151142 Computer, Math
## 4522 15-1132 151132 Computer, Math
## 4523 17-2072 172072 Architecture, Engineer
## 4524 13-2051 132051 Business, Finance
## 4525 11-1021 111021 Management
## 4526 15-1142 151142 Computer, Math
## 4527 15-1199 151199 Computer, Math
## 4528 13-1111 131111 Business, Finance
## 4529 15-1132 151132 Computer, Math
## 4530 15-1199 151199 Computer, Math
## 4531 15-1132 151132 Computer, Math
## 4532 15-1133 151133 Computer, Math
## 4533 15-1131 151131 Computer, Math
## 4534 17-2081 172081 Architecture, Engineer
## 4535 15-1131 151131 Computer, Math
## 4536 15-1199 151199 Computer, Math
## 4537 11-9033 119033 Management
## 4538 15-1199 151199 Computer, Math
## 4539 15-1121 151121 Computer, Math
## 4540 15-1121 151121 Computer, Math
## 4541 15-1133 151133 Computer, Math
## 4542 15-2031 152031 Computer, Math
## 4543 15-1121 151121 Computer, Math
## 4544 15-1131 151131 Computer, Math
## 4545 13-2051 132051 Business, Finance
## 4546 15-1199 151199 Computer, Math
## 4547 15-1141 151141 Computer, Math
## 4548 13-1111 131111 Business, Finance
## 4549 15-1199 151199 Computer, Math
## 4550 19-1029 191029 Life, Physcial, Social Science
## 4551 15-1121 151121 Computer, Math
## 4552 15-1133 151133 Computer, Math
## 4553 15-1132 151132 Computer, Math
## 4554 15-1199 151199 Computer, Math
## 4555 15-1132 151132 Computer, Math
## 4556 15-1133 151133 Computer, Math
## 4557 15-1132 151132 Computer, Math
## 4558 15-1132 151132 Computer, Math
## 4559 15-1132 151132 Computer, Math
## 4560 17-2199 172199 Architecture, Engineer
## 4561 15-1132 151132 Computer, Math
## 4562 15-1133 151133 Computer, Math
## 4563 11-3031 113031 Management
## 4564 17-2051 172051 Architecture, Engineer
## 4565 15-1132 151132 Computer, Math
## 4566 29-1069 291069 Healthcare Practitioner
## 4567 15-1132 151132 Computer, Math
## 4568 17-2031 172031 Architecture, Engineer
## 4569 15-1132 151132 Computer, Math
## 4570 15-1121 151121 Computer, Math
## 4571 13-1111 131111 Business, Finance
## 4572 17-2071 172071 Architecture, Engineer
## 4573 15-1132 151132 Computer, Math
## 4574 19-3011 193011 Life, Physcial, Social Science
## 4575 15-1121 151121 Computer, Math
## 4576 15-1121 151121 Computer, Math
## 4577 29-1131 291131 Healthcare Practitioner
## 4578 15-1132 151132 Computer, Math
## 4579 15-2031 152031 Computer, Math
## 4580 15-1199 151199 Computer, Math
## 4581 15-1131 151131 Computer, Math
## 4582 15-1199 151199 Computer, Math
## 4583 15-1132 151132 Computer, Math
## 4584 15-1131 151131 Computer, Math
## 4585 15-2031 152031 Computer, Math
## 4586 25-1081 251081 Education, Training
## 4587 15-1131 151131 Computer, Math
## 4588 13-1081 131081 Business, Finance
## 4589 15-1132 151132 Computer, Math
## 4590 15-1132 151132 Computer, Math
## 4591 15-1132 151132 Computer, Math
## 4592 15-1132 151132 Computer, Math
## 4593 15-1132 151132 Computer, Math
## 4594 15-1199 151199 Computer, Math
## 4595 15-1132 151132 Computer, Math
## 4596 15-1121 151121 Computer, Math
## 4597 15-1199 151199 Computer, Math
## 4598 17-2141 172141 Architecture, Engineer
## 4599 25-1063 251063 Education, Training
## 4600 15-1199 151199 Computer, Math
## 4601 15-1131 151131 Computer, Math
## 4602 19-1029 191029 Life, Physcial, Social Science
## 4603 17-2141 172141 Architecture, Engineer
## 4604 15-1132 151132 Computer, Math
## 4605 13-1161 131161 Business, Finance
## 4606 15-1199 151199 Computer, Math
## 4607 15-1121 151121 Computer, Math
## 4608 15-1121 151121 Computer, Math
## 4609 19-1012 191012 Life, Physcial, Social Science
## 4610 15-1121 151121 Computer, Math
## 4611 17-2141 172141 Architecture, Engineer
## 4612 15-1132 151132 Computer, Math
## 4613 15-1143 151143 Computer, Math
## 4614 15-1132 151132 Computer, Math
## 4615 15-1132 151132 Computer, Math
## 4616 11-9199 119199 Management
## 4617 15-1141 151141 Computer, Math
## 4618 15-1132 151132 Computer, Math
## 4619 15-1132 151132 Computer, Math
## 4620 17-2141 172141 Architecture, Engineer
## 4621 15-1133 151133 Computer, Math
## 4622 15-1121 151121 Computer, Math
## 4623 15-1199 151199 Computer, Math
## 4624 23-1011 231011 Legal
## 4625 25-2022 252022 Education, Training
## 4626 15-1132 151132 Computer, Math
## 4627 25-2031 252031 Education, Training
## 4628 15-1132 151132 Computer, Math
## 4629 15-1132 151132 Computer, Math
## 4630 13-1161 131161 Business, Finance
## 4631 15-1132 151132 Computer, Math
## 4632 41-9031 419031 Sales
## 4633 15-1199 151199 Computer, Math
## 4634 15-1132 151132 Computer, Math
## 4635 15-1132 151132 Computer, Math
## 4636 15-1132 151132 Computer, Math
## 4637 15-1132 151132 Computer, Math
## 4638 15-1132 151132 Computer, Math
## 4639 15-1121 151121 Computer, Math
## 4640 13-2099 132099 Business, Finance
## 4641 15-1199 151199 Computer, Math
## 4642 15-1199 151199 Computer, Math
## 4643 15-1132 151132 Computer, Math
## 4644 15-1199 151199 Computer, Math
## 4645 15-2031 152031 Computer, Math
## 4646 15-1132 151132 Computer, Math
## 4647 15-1132 151132 Computer, Math
## 4648 15-1133 151133 Computer, Math
## 4649 15-1121 151121 Computer, Math
## 4650 15-1132 151132 Computer, Math
## 4651 17-2071 172071 Architecture, Engineer
## 4652 15-1132 151132 Computer, Math
## 4653 15-1132 151132 Computer, Math
## 4654 15-1143 151143 Computer, Math
## 4655 11-3021 113021 Management
## 4656 15-1121 151121 Computer, Math
## 4657 15-1133 151133 Computer, Math
## 4658 15-1134 151134 Computer, Math
## 4659 15-1133 151133 Computer, Math
## 4660 29-1123 291123 Healthcare Practitioner
## 4661 17-2071 172071 Architecture, Engineer
## 4662 15-1121 151121 Computer, Math
## 4663 15-1121 151121 Computer, Math
## 4664 15-1132 151132 Computer, Math
## 4665 15-1132 151132 Computer, Math
## 4666 17-2072 172072 Architecture, Engineer
## 4667 15-1199 151199 Computer, Math
## 4668 17-2071 172071 Architecture, Engineer
## 4669 15-1121 151121 Computer, Math
## 4670 19-2031 192031 Life, Physcial, Social Science
## 4671 15-1121 151121 Computer, Math
## 4672 13-2011 132011 Business, Finance
## 4673 15-1121 151121 Computer, Math
## 4674 19-1042 191042 Life, Physcial, Social Science
## 4675 17-2081 172081 Architecture, Engineer
## 4676 25-1022 251022 Education, Training
## 4677 15-1132 151132 Computer, Math
## 4678 15-1121 151121 Computer, Math
## 4679 15-1131 151131 Computer, Math
## 4680 11-3031 113031 Management
## 4681 11-3021 113021 Management
## 4682 29-1123 291123 Healthcare Practitioner
## 4683 13-2051 132051 Business, Finance
## 4684 15-1141 151141 Computer, Math
## 4685 15-1132 151132 Computer, Math
## 4686 13-1111 131111 Business, Finance
## 4687 15-1141 151141 Computer, Math
## 4688 15-1132 151132 Computer, Math
## 4689 13-1111 131111 Business, Finance
## 4690 19-1029 191029 Life, Physcial, Social Science
## 4691 15-1132 151132 Computer, Math
## 4692 15-1132 151132 Computer, Math
## 4693 15-1132 151132 Computer, Math
## 4694 15-1133 151133 Computer, Math
## 4695 15-1121 151121 Computer, Math
## 4696 15-1121 151121 Computer, Math
## 4697 13-1111 131111 Business, Finance
## 4698 15-1122 151122 Computer, Math
## 4699 17-2199 172199 Architecture, Engineer
## 4700 17-2071 172071 Architecture, Engineer
## 4701 15-1121 151121 Computer, Math
## 4702 15-1121 151121 Computer, Math
## 4703 13-1111 131111 Business, Finance
## 4704 15-1121 151121 Computer, Math
## 4705 15-1132 151132 Computer, Math
## 4706 15-1132 151132 Computer, Math
## 4707 15-1132 151132 Computer, Math
## 4708 15-1121 151121 Computer, Math
## 4709 15-1132 151132 Computer, Math
## 4710 15-1199 151199 Computer, Math
## 4711 13-1111 131111 Business, Finance
## 4712 17-2051 172051 Architecture, Engineer
## 4713 19-1042 191042 Life, Physcial, Social Science
## 4714 15-1132 151132 Computer, Math
## 4715 15-1132 151132 Computer, Math
## 4716 15-1199 151199 Computer, Math
## 4717 15-1132 151132 Computer, Math
## 4718 11-3021 113021 Management
## 4719 15-1121 151121 Computer, Math
## 4720 11-3051 113051 Management
## 4721 17-2041 172041 Architecture, Engineer
## 4722 15-1132 151132 Computer, Math
## 4723 15-1199 151199 Computer, Math
## 4724 17-3011 173011 Architecture, Engineer
## 4725 19-1029 191029 Life, Physcial, Social Science
## 4726 15-1133 151133 Computer, Math
## 4727 15-1132 151132 Computer, Math
## 4728 15-1132 151132 Computer, Math
## 4729 15-1121 151121 Computer, Math
## 4730 15-2031 152031 Computer, Math
## 4731 15-1132 151132 Computer, Math
## 4732 13-1111 131111 Business, Finance
## 4733 15-1199 151199 Computer, Math
## 4734 13-1161 131161 Business, Finance
## 4735 15-1141 151141 Computer, Math
## 4736 15-1131 151131 Computer, Math
## 4737 17-2199 172199 Architecture, Engineer
## 4738 15-1132 151132 Computer, Math
## 4739 15-1133 151133 Computer, Math
## 4740 15-1199 151199 Computer, Math
## 4741 15-1132 151132 Computer, Math
## 4742 15-1132 151132 Computer, Math
## 4743 15-1132 151132 Computer, Math
## 4744 15-1132 151132 Computer, Math
## 4745 15-1132 151132 Computer, Math
## 4746 15-1142 151142 Computer, Math
## 4747 17-2071 172071 Architecture, Engineer
## 4748 15-1132 151132 Computer, Math
## 4749 15-1132 151132 Computer, Math
## 4750 15-1133 151133 Computer, Math
## 4751 15-1132 151132 Computer, Math
## 4752 15-1132 151132 Computer, Math
## 4753 13-1081 131081 Business, Finance
## 4754 15-1132 151132 Computer, Math
## 4755 15-1132 151132 Computer, Math
## 4756 17-2072 172072 Architecture, Engineer
## 4757 15-1121 151121 Computer, Math
## 4758 15-1132 151132 Computer, Math
## 4759 15-1131 151131 Computer, Math
## 4760 25-1124 251124 Education, Training
## 4761 15-1132 151132 Computer, Math
## 4762 29-1171 291171 Healthcare Practitioner
## 4763 29-1123 291123 Healthcare Practitioner
## 4764 15-1199 151199 Computer, Math
## 4765 25-2021 252021 Education, Training
## 4766 15-1132 151132 Computer, Math
## 4767 15-1132 151132 Computer, Math
## 4768 15-1132 151132 Computer, Math
## 4769 25-1021 251021 Education, Training
## 4770 25-2052 252052 Education, Training
## 4771 11-3021 113021 Management
## 4772 15-1132 151132 Computer, Math
## 4773 15-1132 151132 Computer, Math
## 4774 15-1132 151132 Computer, Math
## 4775 15-1134 151134 Computer, Math
## 4776 15-1132 151132 Computer, Math
## 4777 23-1011 231011 Legal
## 4778 15-1132 151132 Computer, Math
## 4779 19-3031 193031 Life, Physcial, Social Science
## 4780 13-2011 132011 Business, Finance
## 4781 29-2011 292011 Healthcare Practitioner
## 4782 15-2041 152041 Computer, Math
## 4783 15-1121 151121 Computer, Math
## 4784 15-1131 151131 Computer, Math
## 4785 15-1133 151133 Computer, Math
## 4786 15-1121 151121 Computer, Math
## 4787 15-1121 151121 Computer, Math
## 4788 17-2051 172051 Architecture, Engineer
## 4789 15-1132 151132 Computer, Math
## 4790 15-1132 151132 Computer, Math
## 4791 15-1141 151141 Computer, Math
## 4792 15-1132 151132 Computer, Math
## 4793 19-2031 192031 Life, Physcial, Social Science
## 4794 15-1132 151132 Computer, Math
## 4795 15-1132 151132 Computer, Math
## 4796 17-2141 172141 Architecture, Engineer
## 4797 15-1134 151134 Computer, Math
## 4798 15-1121 151121 Computer, Math
## 4799 15-1132 151132 Computer, Math
## 4800 15-2021 152021 Computer, Math
## 4801 13-1161 131161 Business, Finance
## 4802 15-1132 151132 Computer, Math
## 4803 15-1121 151121 Computer, Math
## 4804 15-1199 151199 Computer, Math
## 4805 15-1132 151132 Computer, Math
## 4806 15-1133 151133 Computer, Math
## 4807 17-2072 172072 Architecture, Engineer
## 4808 15-1132 151132 Computer, Math
## 4809 17-2072 172072 Architecture, Engineer
## 4810 15-1199 151199 Computer, Math
## 4811 15-1141 151141 Computer, Math
## 4812 15-1132 151132 Computer, Math
## 4813 15-1132 151132 Computer, Math
## 4814 15-1132 151132 Computer, Math
## 4815 15-1121 151121 Computer, Math
## 4816 15-1141 151141 Computer, Math
## 4817 11-3021 113021 Management
## 4818 15-1121 151121 Computer, Math
## 4819 13-1111 131111 Business, Finance
## 4820 15-1132 151132 Computer, Math
## 4821 15-1122 151122 Computer, Math
## 4822 15-1132 151132 Computer, Math
## 4823 17-2031 172031 Architecture, Engineer
## 4824 15-1121 151121 Computer, Math
## 4825 15-1121 151121 Computer, Math
## 4826 15-1132 151132 Computer, Math
## 4827 15-1121 151121 Computer, Math
## 4828 15-1132 151132 Computer, Math
## 4829 15-2031 152031 Computer, Math
## 4830 15-1132 151132 Computer, Math
## 4831 15-1121 151121 Computer, Math
## 4832 15-1121 151121 Computer, Math
## 4833 15-1132 151132 Computer, Math
## 4834 19-1042 191042 Life, Physcial, Social Science
## 4835 15-1132 151132 Computer, Math
## 4836 11-3021 113021 Management
## 4837 17-2141 172141 Architecture, Engineer
## 4838 19-1042 191042 Life, Physcial, Social Science
## 4839 15-1131 151131 Computer, Math
## 4840 15-1131 151131 Computer, Math
## 4841 15-1131 151131 Computer, Math
## 4842 15-1132 151132 Computer, Math
## 4843 17-2141 172141 Architecture, Engineer
## 4844 15-1131 151131 Computer, Math
## 4845 25-1032 251032 Education, Training
## 4846 13-1161 131161 Business, Finance
## 4847 15-1132 151132 Computer, Math
## 4848 15-1199 151199 Computer, Math
## 4849 15-1132 151132 Computer, Math
## 4850 13-2099 132099 Business, Finance
## 4851 23-1012 231012 Legal
## 4852 15-1132 151132 Computer, Math
## 4853 13-1111 131111 Business, Finance
## 4854 17-2141 172141 Architecture, Engineer
## 4855 15-1132 151132 Computer, Math
## 4856 15-1131 151131 Computer, Math
## 4857 13-2011 132011 Business, Finance
## 4858 15-1133 151133 Computer, Math
## 4859 15-1199 151199 Computer, Math
## 4860 15-1132 151132 Computer, Math
## 4861 13-2011 132011 Business, Finance
## 4862 13-1111 131111 Business, Finance
## 4863 27-1024 271024 Media, Design
## 4864 19-1042 191042 Life, Physcial, Social Science
## 4865 15-1121 151121 Computer, Math
## 4866 15-1121 151121 Computer, Math
## 4867 17-2112 172112 Architecture, Engineer
## 4868 13-2011 132011 Business, Finance
## 4869 15-1132 151132 Computer, Math
## 4870 15-1121 151121 Computer, Math
## 4871 13-2051 132051 Business, Finance
## 4872 15-1121 151121 Computer, Math
## 4873 15-1122 151122 Computer, Math
## 4874 17-2072 172072 Architecture, Engineer
## 4875 15-1132 151132 Computer, Math
## 4876 13-1111 131111 Business, Finance
## 4877 15-1132 151132 Computer, Math
## 4878 15-1132 151132 Computer, Math
## 4879 13-1161 131161 Business, Finance
## 4880 15-1132 151132 Computer, Math
## 4881 15-1121 151121 Computer, Math
## 4882 19-1029 191029 Life, Physcial, Social Science
## 4883 19-2041 192041 Life, Physcial, Social Science
## 4884 25-1071 251071 Education, Training
## 4885 15-1132 151132 Computer, Math
## 4886 15-1199 151199 Computer, Math
## 4887 15-1132 151132 Computer, Math
## 4888 15-1142 151142 Computer, Math
## 4889 15-1133 151133 Computer, Math
## 4890 15-1132 151132 Computer, Math
## 4891 15-1132 151132 Computer, Math
## 4892 15-1142 151142 Computer, Math
## 4893 27-1014 271014 Media, Design
## 4894 17-2141 172141 Architecture, Engineer
## 4895 17-2072 172072 Architecture, Engineer
## 4896 15-1121 151121 Computer, Math
## 4897 13-2041 132041 Business, Finance
## 4898 15-2031 152031 Computer, Math
## 4899 15-1142 151142 Computer, Math
## 4900 13-2011 132011 Business, Finance
## 4901 15-1132 151132 Computer, Math
## 4902 15-1132 151132 Computer, Math
## 4903 15-2031 152031 Computer, Math
## 4904 15-1133 151133 Computer, Math
## 4905 15-1199 151199 Computer, Math
## 4906 15-1132 151132 Computer, Math
## 4907 15-1199 151199 Computer, Math
## 4908 15-1132 151132 Computer, Math
## 4909 17-2071 172071 Architecture, Engineer
## 4910 15-1199 151199 Computer, Math
## 4911 13-2051 132051 Business, Finance
## 4912 17-2141 172141 Architecture, Engineer
## 4913 15-1131 151131 Computer, Math
## 4914 15-1121 151121 Computer, Math
## 4915 15-1132 151132 Computer, Math
## 4916 15-1132 151132 Computer, Math
## 4917 15-1132 151132 Computer, Math
## 4918 15-1121 151121 Computer, Math
## 4919 15-1132 151132 Computer, Math
## 4920 15-1131 151131 Computer, Math
## 4921 15-1199 151199 Computer, Math
## 4922 15-1132 151132 Computer, Math
## 4923 13-1111 131111 Business, Finance
## 4924 15-1199 151199 Computer, Math
## 4925 27-1021 271021 Media, Design
## 4926 15-1121 151121 Computer, Math
## 4927 29-1063 291063 Healthcare Practitioner
## 4928 15-1121 151121 Computer, Math
## 4929 29-1123 291123 Healthcare Practitioner
## 4930 15-1132 151132 Computer, Math
## 4931 15-1133 151133 Computer, Math
## 4932 17-2199 172199 Architecture, Engineer
## 4933 15-1121 151121 Computer, Math
## 4934 15-1132 151132 Computer, Math
## 4935 15-1199 151199 Computer, Math
## 4936 15-1132 151132 Computer, Math
## 4937 15-1132 151132 Computer, Math
## 4938 15-1132 151132 Computer, Math
## 4939 15-1121 151121 Computer, Math
## 4940 13-1161 131161 Business, Finance
## 4941 13-1041 131041 Business, Finance
## 4942 15-1132 151132 Computer, Math
## 4943 15-1132 151132 Computer, Math
## 4944 15-1132 151132 Computer, Math
## 4945 15-1132 151132 Computer, Math
## 4946 15-1132 151132 Computer, Math
## 4947 17-2072 172072 Architecture, Engineer
## 4948 13-1111 131111 Business, Finance
## 4949 15-2031 152031 Computer, Math
## 4950 15-1199 151199 Computer, Math
## 4951 15-1121 151121 Computer, Math
## 4952 15-1141 151141 Computer, Math
## 4953 15-1132 151132 Computer, Math
## 4954 15-1141 151141 Computer, Math
## 4955 15-1121 151121 Computer, Math
## 4956 15-1121 151121 Computer, Math
## 4957 15-1132 151132 Computer, Math
## 4958 13-2011 132011 Business, Finance
## 4959 15-1121 151121 Computer, Math
## 4960 15-1132 151132 Computer, Math
## 4961 15-1132 151132 Computer, Math
## 4962 15-1132 151132 Computer, Math
## 4963 15-1199 151199 Computer, Math
## 4964 15-1132 151132 Computer, Math
## 4965 15-1121 151121 Computer, Math
## 4966 15-1132 151132 Computer, Math
## 4967 17-2051 172051 Architecture, Engineer
## 4968 15-1131 151131 Computer, Math
## 4969 29-1021 291021 Healthcare Practitioner
## 4970 15-1131 151131 Computer, Math
## 4971 17-2112 172112 Architecture, Engineer
## 4972 15-1132 151132 Computer, Math
## 4973 25-1124 251124 Education, Training
## 4974 15-1121 151121 Computer, Math
## 4975 15-1121 151121 Computer, Math
## 4976 15-1142 151142 Computer, Math
## 4977 15-1121 151121 Computer, Math
## 4978 15-1132 151132 Computer, Math
## 4979 13-1111 131111 Business, Finance
## 4980 19-1042 191042 Life, Physcial, Social Science
## 4981 17-2072 172072 Architecture, Engineer
## 4982 25-1032 251032 Education, Training
## 4983 15-1199 151199 Computer, Math
## 4984 15-1131 151131 Computer, Math
## 4985 13-1111 131111 Business, Finance
## 4986 15-1132 151132 Computer, Math
## 4987 15-1132 151132 Computer, Math
## 4988 15-1132 151132 Computer, Math
## 4989 15-1142 151142 Computer, Math
## 4990 15-1142 151142 Computer, Math
## 4991 15-1121 151121 Computer, Math
## 4992 15-1132 151132 Computer, Math
## 4993 15-1131 151131 Computer, Math
## 4994 29-1051 291051 Healthcare Practitioner
## 4995 15-1121 151121 Computer, Math
## 4996 15-1132 151132 Computer, Math
## 4997 15-1132 151132 Computer, Math
## 4998 13-2051 132051 Business, Finance
## 4999 15-1132 151132 Computer, Math
## 5000 15-1132 151132 Computer, Math
## 5001 19-1042 191042 Life, Physcial, Social Science
## 5002 15-1199 151199 Computer, Math
## 5003 15-1121 151121 Computer, Math
## 5004 15-1121 151121 Computer, Math
## 5005 29-2011 292011 Healthcare Practitioner
## 5006 17-2071 172071 Architecture, Engineer
## 5007 13-2011 132011 Business, Finance
## 5008 13-1111 131111 Business, Finance
## 5009 15-1132 151132 Computer, Math
## 5010 15-1133 151133 Computer, Math
## 5011 15-1132 151132 Computer, Math
## 5012 25-1022 251022 Education, Training
## 5013 15-1132 151132 Computer, Math
## 5014 15-1122 151122 Computer, Math
## 5015 15-1132 151132 Computer, Math
## 5016 13-1081 131081 Business, Finance
## 5017 25-1011 251011 Education, Training
## 5018 15-1132 151132 Computer, Math
## 5019 17-2071 172071 Architecture, Engineer
## 5020 15-2031 152031 Computer, Math
## 5021 15-1132 151132 Computer, Math
## 5022 15-1199 151199 Computer, Math
## 5023 15-1133 151133 Computer, Math
## 5024 15-1132 151132 Computer, Math
## 5025 15-1199 151199 Computer, Math
## 5026 15-1132 151132 Computer, Math
## 5027 29-1123 291123 Healthcare Practitioner
## 5028 15-1121 151121 Computer, Math
## 5029 17-2112 172112 Architecture, Engineer
## 5030 15-1142 151142 Computer, Math
## 5031 27-2022 272022 Media, Design
## 5032 15-1121 151121 Computer, Math
## 5033 41-9031 419031 Sales
## 5034 15-1121 151121 Computer, Math
## 5035 15-1132 151132 Computer, Math
## 5036 15-1121 151121 Computer, Math
## 5037 15-1141 151141 Computer, Math
## 5038 21-1021 211021 Social Service
## 5039 15-1199 151199 Computer, Math
## 5040 15-1199 151199 Computer, Math
## 5041 15-1132 151132 Computer, Math
## 5042 15-1133 151133 Computer, Math
## 5043 15-1132 151132 Computer, Math
## 5044 17-2071 172071 Architecture, Engineer
## 5045 11-2021 112021 Management
## 5046 15-1143 151143 Computer, Math
## 5047 25-1124 251124 Education, Training
## 5048 25-1071 251071 Education, Training
## 5049 15-1132 151132 Computer, Math
## 5050 15-1132 151132 Computer, Math
## 5051 15-1199 151199 Computer, Math
## 5052 15-1121 151121 Computer, Math
## 5053 15-1132 151132 Computer, Math
## 5054 25-2031 252031 Education, Training
## 5055 15-1132 151132 Computer, Math
## 5056 15-1199 151199 Computer, Math
## 5057 15-1199 151199 Computer, Math
## 5058 13-1041 131041 Business, Finance
## 5059 15-1199 151199 Computer, Math
## 5060 15-1132 151132 Computer, Math
## 5061 15-1132 151132 Computer, Math
## 5062 15-1131 151131 Computer, Math
## 5063 15-1132 151132 Computer, Math
## 5064 15-1121 151121 Computer, Math
## 5065 15-1151 151151 Computer, Math
## 5066 15-1131 151131 Computer, Math
## 5067 15-1121 151121 Computer, Math
## 5068 13-1111 131111 Business, Finance
## 5069 15-1132 151132 Computer, Math
## 5070 15-1199 151199 Computer, Math
## 5071 15-1133 151133 Computer, Math
## 5072 15-1121 151121 Computer, Math
## 5073 17-2111 172111 Architecture, Engineer
## 5074 15-1132 151132 Computer, Math
## 5075 13-2011 132011 Business, Finance
## 5076 13-1071 131071 Business, Finance
## 5077 15-1132 151132 Computer, Math
## 5078 15-1132 151132 Computer, Math
## 5079 15-1132 151132 Computer, Math
## 5080 25-2031 252031 Education, Training
## 5081 27-1024 271024 Media, Design
## 5082 15-1132 151132 Computer, Math
## 5083 17-1011 171011 Architecture, Engineer
## 5084 15-1132 151132 Computer, Math
## 5085 15-1121 151121 Computer, Math
## 5086 15-1121 151121 Computer, Math
## 5087 15-1141 151141 Computer, Math
## 5088 17-2071 172071 Architecture, Engineer
## 5089 11-1021 111021 Management
## 5090 15-1131 151131 Computer, Math
## 5091 15-1132 151132 Computer, Math
## 5092 15-1132 151132 Computer, Math
## 5093 15-1132 151132 Computer, Math
## 5094 17-2071 172071 Architecture, Engineer
## 5095 11-9039 119039 Management
## 5096 27-3022 273022 Media, Design
## 5097 15-1132 151132 Computer, Math
## 5098 15-1133 151133 Computer, Math
## 5099 17-2112 172112 Architecture, Engineer
## 5100 19-1021 191021 Life, Physcial, Social Science
## 5101 15-1132 151132 Computer, Math
## 5102 13-1071 131071 Business, Finance
## 5103 15-1132 151132 Computer, Math
## 5104 15-1132 151132 Computer, Math
## 5105 15-1131 151131 Computer, Math
## 5106 15-1132 151132 Computer, Math
## 5107 15-1122 151122 Computer, Math
## 5108 15-1131 151131 Computer, Math
## 5109 13-1161 131161 Business, Finance
## 5110 13-1161 131161 Business, Finance
## 5111 15-1132 151132 Computer, Math
## 5112 15-1132 151132 Computer, Math
## 5113 15-1132 151132 Computer, Math
## 5114 15-1132 151132 Computer, Math
## 5115 19-1031 191031 Life, Physcial, Social Science
## 5116 15-1121 151121 Computer, Math
## 5117 17-2141 172141 Architecture, Engineer
## 5118 15-1132 151132 Computer, Math
## 5119 13-1111 131111 Business, Finance
## 5120 15-1132 151132 Computer, Math
## 5121 15-1132 151132 Computer, Math
## 5122 15-1132 151132 Computer, Math
## 5123 15-1199 151199 Computer, Math
## 5124 15-1131 151131 Computer, Math
## 5125 15-1132 151132 Computer, Math
## 5126 15-1121 151121 Computer, Math
## 5127 13-1161 131161 Business, Finance
## 5128 19-2031 192031 Life, Physcial, Social Science
## 5129 15-1132 151132 Computer, Math
## 5130 15-1133 151133 Computer, Math
## 5131 29-1122 291122 Healthcare Practitioner
## 5132 15-1132 151132 Computer, Math
## 5133 15-1199 151199 Computer, Math
## 5134 15-1133 151133 Computer, Math
## 5135 11-3021 113021 Management
## 5136 11-2021 112021 Management
## 5137 17-2141 172141 Architecture, Engineer
## 5138 15-1199 151199 Computer, Math
## 5139 15-1133 151133 Computer, Math
## 5140 15-1141 151141 Computer, Math
## 5141 11-3031 113031 Management
## 5142 13-1071 131071 Business, Finance
## 5143 29-1062 291062 Healthcare Practitioner
## 5144 15-1131 151131 Computer, Math
## 5145 15-1132 151132 Computer, Math
## 5146 15-1132 151132 Computer, Math
## 5147 15-1121 151121 Computer, Math
## 5148 17-2072 172072 Architecture, Engineer
## 5149 15-1132 151132 Computer, Math
## 5150 15-1132 151132 Computer, Math
## 5151 13-1111 131111 Business, Finance
## 5152 15-1132 151132 Computer, Math
## 5153 15-1132 151132 Computer, Math
## 5154 15-1132 151132 Computer, Math
## 5155 19-2031 192031 Life, Physcial, Social Science
## 5156 15-1199 151199 Computer, Math
## 5157 15-1199 151199 Computer, Math
## 5158 15-1131 151131 Computer, Math
## 5159 15-1132 151132 Computer, Math
## 5160 15-1132 151132 Computer, Math
## 5161 19-1021 191021 Life, Physcial, Social Science
## 5162 15-1132 151132 Computer, Math
## 5163 15-1132 151132 Computer, Math
## 5164 17-2072 172072 Architecture, Engineer
## 5165 15-1133 151133 Computer, Math
## 5166 15-1132 151132 Computer, Math
## 5167 15-1121 151121 Computer, Math
## 5168 15-1132 151132 Computer, Math
## 5169 13-1161 131161 Business, Finance
## 5170 15-1132 151132 Computer, Math
## 5171 15-1121 151121 Computer, Math
## 5172 17-2071 172071 Architecture, Engineer
## 5173 15-1134 151134 Computer, Math
## 5174 15-1132 151132 Computer, Math
## 5175 15-1132 151132 Computer, Math
## 5176 15-1132 151132 Computer, Math
## 5177 13-1111 131111 Business, Finance
## 5178 19-1029 191029 Life, Physcial, Social Science
## 5179 15-1134 151134 Computer, Math
## 5180 15-1132 151132 Computer, Math
## 5181 13-2011 132011 Business, Finance
## 5182 15-1121 151121 Computer, Math
## 5183 19-1029 191029 Life, Physcial, Social Science
## 5184 15-1132 151132 Computer, Math
## 5185 15-1121 151121 Computer, Math
## 5186 15-1132 151132 Computer, Math
## 5187 19-3092 193092 Life, Physcial, Social Science
## 5188 21-1023 211023 Social Service
## 5189 15-1132 151132 Computer, Math
## 5190 15-1199 151199 Computer, Math
## 5191 15-1132 151132 Computer, Math
## 5192 15-1121 151121 Computer, Math
## 5193 19-1042 191042 Life, Physcial, Social Science
## 5194 15-1131 151131 Computer, Math
## 5195 15-1199 151199 Computer, Math
## 5196 15-1199 151199 Computer, Math
## 5197 15-2031 152031 Computer, Math
## 5198 15-1131 151131 Computer, Math
## 5199 15-1132 151132 Computer, Math
## 5200 19-1042 191042 Life, Physcial, Social Science
## 5201 15-1133 151133 Computer, Math
## 5202 13-1111 131111 Business, Finance
## 5203 15-1121 151121 Computer, Math
## 5204 15-1132 151132 Computer, Math
## 5205 13-2011 132011 Business, Finance
## 5206 15-2031 152031 Computer, Math
## 5207 15-1199 151199 Computer, Math
## 5208 15-1199 151199 Computer, Math
## 5209 15-1121 151121 Computer, Math
## 5210 13-1111 131111 Business, Finance
## 5211 15-1132 151132 Computer, Math
## 5212 15-1132 151132 Computer, Math
## 5213 15-1132 151132 Computer, Math
## 5214 15-1199 151199 Computer, Math
## 5215 15-1121 151121 Computer, Math
## 5216 17-2141 172141 Architecture, Engineer
## 5217 15-1141 151141 Computer, Math
## 5218 15-1132 151132 Computer, Math
## 5219 13-1051 131051 Business, Finance
## 5220 17-2051 172051 Architecture, Engineer
## 5221 15-1121 151121 Computer, Math
## 5222 17-2041 172041 Architecture, Engineer
## 5223 15-1131 151131 Computer, Math
## 5224 11-3021 113021 Management
## 5225 15-1133 151133 Computer, Math
## 5226 15-1199 151199 Computer, Math
## 5227 15-1133 151133 Computer, Math
## 5228 15-1121 151121 Computer, Math
## 5229 13-1161 131161 Business, Finance
## 5230 17-2141 172141 Architecture, Engineer
## 5231 15-1199 151199 Computer, Math
## 5232 19-1042 191042 Life, Physcial, Social Science
## 5233 15-1199 151199 Computer, Math
## 5234 15-1199 151199 Computer, Math
## 5235 13-2051 132051 Business, Finance
## 5236 11-2021 112021 Management
## 5237 15-2031 152031 Computer, Math
## 5238 15-1132 151132 Computer, Math
## 5239 15-1132 151132 Computer, Math
## 5240 13-1111 131111 Business, Finance
## 5241 15-1133 151133 Computer, Math
## 5242 15-1134 151134 Computer, Math
## 5243 13-1161 131161 Business, Finance
## 5244 11-3021 113021 Management
## 5245 15-1121 151121 Computer, Math
## 5246 15-1132 151132 Computer, Math
## 5247 13-1111 131111 Business, Finance
## 5248 15-1131 151131 Computer, Math
## 5249 15-1121 151121 Computer, Math
## 5250 15-1132 151132 Computer, Math
## 5251 15-1142 151142 Computer, Math
## 5252 15-1121 151121 Computer, Math
## 5253 15-1132 151132 Computer, Math
## 5254 15-1141 151141 Computer, Math
## 5255 15-1131 151131 Computer, Math
## 5256 15-1141 151141 Computer, Math
## 5257 15-1199 151199 Computer, Math
## 5258 15-1132 151132 Computer, Math
## 5259 19-2021 192021 Life, Physcial, Social Science
## 5260 15-1121 151121 Computer, Math
## 5261 15-1199 151199 Computer, Math
## 5262 15-1132 151132 Computer, Math
## 5263 15-1132 151132 Computer, Math
## 5264 15-1121 151121 Computer, Math
## 5265 15-1121 151121 Computer, Math
## 5266 15-1132 151132 Computer, Math
## 5267 15-1132 151132 Computer, Math
## 5268 15-1133 151133 Computer, Math
## 5269 15-1132 151132 Computer, Math
## 5270 13-1111 131111 Business, Finance
## 5271 15-1121 151121 Computer, Math
## 5272 15-1132 151132 Computer, Math
## 5273 13-2051 132051 Business, Finance
## 5274 19-2031 192031 Life, Physcial, Social Science
## 5275 15-1131 151131 Computer, Math
## 5276 13-2011 132011 Business, Finance
## 5277 25-1021 251021 Education, Training
## 5278 19-2021 192021 Life, Physcial, Social Science
## 5279 15-1121 151121 Computer, Math
## 5280 29-1122 291122 Healthcare Practitioner
## 5281 15-1111 151111 Computer, Math
## 5282 15-1132 151132 Computer, Math
## 5283 15-1121 151121 Computer, Math
## 5284 17-2071 172071 Architecture, Engineer
## 5285 15-1132 151132 Computer, Math
## 5286 13-1161 131161 Business, Finance
## 5287 11-3021 113021 Management
## 5288 15-1132 151132 Computer, Math
## 5289 25-1063 251063 Education, Training
## 5290 15-1132 151132 Computer, Math
## 5291 11-2022 112022 Management
## 5292 15-1121 151121 Computer, Math
## 5293 15-1133 151133 Computer, Math
## 5294 25-2021 252021 Education, Training
## 5295 15-1143 151143 Computer, Math
## 5296 15-1132 151132 Computer, Math
## 5297 15-1142 151142 Computer, Math
## 5298 15-1199 151199 Computer, Math
## 5299 13-2051 132051 Business, Finance
## 5300 15-1132 151132 Computer, Math
## 5301 15-1199 151199 Computer, Math
## 5302 15-1132 151132 Computer, Math
## 5303 13-1111 131111 Business, Finance
## 5304 19-1042 191042 Life, Physcial, Social Science
## 5305 15-1132 151132 Computer, Math
## 5306 13-1081 131081 Business, Finance
## 5307 13-2011 132011 Business, Finance
## 5308 15-1132 151132 Computer, Math
## 5309 13-2011 132011 Business, Finance
## 5310 15-1132 151132 Computer, Math
## 5311 15-1132 151132 Computer, Math
## 5312 15-1121 151121 Computer, Math
## 5313 15-1142 151142 Computer, Math
## 5314 15-1132 151132 Computer, Math
## 5315 15-1199 151199 Computer, Math
## 5316 15-2031 152031 Computer, Math
## 5317 25-1011 251011 Education, Training
## 5318 15-1132 151132 Computer, Math
## 5319 13-1111 131111 Business, Finance
## 5320 15-2031 152031 Computer, Math
## 5321 27-1029 271029 Media, Design
## 5322 15-1121 151121 Computer, Math
## 5323 15-1199 151199 Computer, Math
## 5324 15-1132 151132 Computer, Math
## 5325 15-1199 151199 Computer, Math
## 5326 15-1132 151132 Computer, Math
## 5327 17-2131 172131 Architecture, Engineer
## 5328 13-2051 132051 Business, Finance
## 5329 15-1199 151199 Computer, Math
## 5330 15-1199 151199 Computer, Math
## 5331 15-1022 151022 Computer, Math
## 5332 15-1132 151132 Computer, Math
## 5333 15-1131 151131 Computer, Math
## 5334 15-1199 151199 Computer, Math
## 5335 25-9031 259031 Education, Training
## 5336 15-1132 151132 Computer, Math
## 5337 15-1121 151121 Computer, Math
## 5338 15-1199 151199 Computer, Math
## 5339 15-1132 151132 Computer, Math
## 5340 13-2051 132051 Business, Finance
## 5341 17-2071 172071 Architecture, Engineer
## 5342 15-1132 151132 Computer, Math
## 5343 15-1132 151132 Computer, Math
## 5344 15-1132 151132 Computer, Math
## 5345 13-2011 132011 Business, Finance
## 5346 15-1132 151132 Computer, Math
## 5347 15-1132 151132 Computer, Math
## 5348 25-1121 251121 Education, Training
## 5349 15-1141 151141 Computer, Math
## 5350 11-2021 112021 Management
## 5351 15-1133 151133 Computer, Math
## 5352 15-1199 151199 Computer, Math
## 5353 15-1142 151142 Computer, Math
## 5354 15-1141 151141 Computer, Math
## 5355 17-2072 172072 Architecture, Engineer
## 5356 17-2072 172072 Architecture, Engineer
## 5357 17-2141 172141 Architecture, Engineer
## 5358 29-1171 291171 Healthcare Practitioner
## 5359 15-1132 151132 Computer, Math
## 5360 15-1141 151141 Computer, Math
## 5361 15-1121 151121 Computer, Math
## 5362 15-1133 151133 Computer, Math
## 5363 11-3021 113021 Management
## 5364 15-1199 151199 Computer, Math
## 5365 17-2141 172141 Architecture, Engineer
## 5366 15-1121 151121 Computer, Math
## 5367 15-1131 151131 Computer, Math
## 5368 15-2041 152041 Computer, Math
## 5369 13-1051 131051 Business, Finance
## 5370 15-1199 151199 Computer, Math
## 5371 15-1121 151121 Computer, Math
## 5372 17-2071 172071 Architecture, Engineer
## 5373 15-1133 151133 Computer, Math
## 5374 15-1132 151132 Computer, Math
## 5375 17-2072 172072 Architecture, Engineer
## 5376 29-1127 291127 Healthcare Practitioner
## 5377 15-1121 151121 Computer, Math
## 5378 19-1029 191029 Life, Physcial, Social Science
## 5379 15-1131 151131 Computer, Math
## 5380 13-2011 132011 Business, Finance
## 5381 15-1121 151121 Computer, Math
## 5382 13-1161 131161 Business, Finance
## 5383 15-1199 151199 Computer, Math
## 5384 15-1132 151132 Computer, Math
## 5385 15-1199 151199 Computer, Math
## 5386 15-1131 151131 Computer, Math
## 5387 15-1132 151132 Computer, Math
## 5388 15-1142 151142 Computer, Math
## 5389 15-1132 151132 Computer, Math
## 5390 15-1121 151121 Computer, Math
## 5391 17-2031 172031 Architecture, Engineer
## 5392 15-1132 151132 Computer, Math
## 5393 15-1121 151121 Computer, Math
## 5394 15-1121 151121 Computer, Math
## 5395 13-2011 132011 Business, Finance
## 5396 15-1132 151132 Computer, Math
## 5397 15-1132 151132 Computer, Math
## 5398 15-1121 151121 Computer, Math
## 5399 19-1013 191013 Life, Physcial, Social Science
## 5400 15-1199 151199 Computer, Math
## 5401 25-9031 259031 Education, Training
## 5402 15-1199 151199 Computer, Math
## 5403 21-1014 211014 Social Service
## 5404 13-2011 132011 Business, Finance
## 5405 15-1121 151121 Computer, Math
## 5406 19-1012 191012 Life, Physcial, Social Science
## 5407 15-1132 151132 Computer, Math
## 5408 15-1121 151121 Computer, Math
## 5409 15-1132 151132 Computer, Math
## 5410 17-2141 172141 Architecture, Engineer
## 5411 15-1132 151132 Computer, Math
## 5412 15-1121 151121 Computer, Math
## 5413 15-1199 151199 Computer, Math
## 5414 15-1132 151132 Computer, Math
## 5415 15-1132 151132 Computer, Math
## 5416 15-1131 151131 Computer, Math
## 5417 15-1131 151131 Computer, Math
## 5418 15-1199 151199 Computer, Math
## 5419 15-1133 151133 Computer, Math
## 5420 13-1111 131111 Business, Finance
## 5421 15-1199 151199 Computer, Math
## 5422 15-1121 151121 Computer, Math
## 5423 15-1132 151132 Computer, Math
## 5424 19-2041 192041 Life, Physcial, Social Science
## 5425 15-1133 151133 Computer, Math
## 5426 15-1132 151132 Computer, Math
## 5427 15-1132 151132 Computer, Math
## 5428 15-1122 151122 Computer, Math
## 5429 17-2141 172141 Architecture, Engineer
## 5430 25-1021 251021 Education, Training
## 5431 17-2112 172112 Architecture, Engineer
## 5432 15-1131 151131 Computer, Math
## 5433 17-2141 172141 Architecture, Engineer
## 5434 15-1131 151131 Computer, Math
## 5435 15-1132 151132 Computer, Math
## 5436 15-1132 151132 Computer, Math
## 5437 15-1121 151121 Computer, Math
## 5438 15-1121 151121 Computer, Math
## 5439 25-1021 251021 Education, Training
## 5440 15-1132 151132 Computer, Math
## 5441 15-1199 151199 Computer, Math
## 5442 13-1111 131111 Business, Finance
## 5443 15-1121 151121 Computer, Math
## 5444 15-1132 151132 Computer, Math
## 5445 15-1131 151131 Computer, Math
## 5446 17-2141 172141 Architecture, Engineer
## 5447 15-1132 151132 Computer, Math
## 5448 15-1132 151132 Computer, Math
## 5449 15-1121 151121 Computer, Math
## 5450 15-1121 151121 Computer, Math
## 5451 15-1121 151121 Computer, Math
## 5452 15-1132 151132 Computer, Math
## 5453 15-1121 151121 Computer, Math
## 5454 15-1132 151132 Computer, Math
## 5455 15-1132 151132 Computer, Math
## 5456 15-1132 151132 Computer, Math
## 5457 15-2041 152041 Computer, Math
## 5458 17-2051 172051 Architecture, Engineer
## 5459 15-1121 151121 Computer, Math
## 5460 29-2011 292011 Healthcare Practitioner
## 5461 19-4021 194021 Life, Physcial, Social Science
## 5462 15-1132 151132 Computer, Math
## 5463 15-1199 151199 Computer, Math
## 5464 15-1141 151141 Computer, Math
## 5465 15-1199 151199 Computer, Math
## 5466 15-1132 151132 Computer, Math
## 5467 25-1011 251011 Education, Training
## 5468 15-1133 151133 Computer, Math
## 5469 13-1111 131111 Business, Finance
## 5470 15-1132 151132 Computer, Math
## 5471 15-1121 151121 Computer, Math
## 5472 15-2041 152041 Computer, Math
## 5473 15-1121 151121 Computer, Math
## 5474 15-1121 151121 Computer, Math
## 5475 15-1132 151132 Computer, Math
## 5476 15-1141 151141 Computer, Math
## 5477 15-1132 151132 Computer, Math
## 5478 19-2032 192032 Life, Physcial, Social Science
## 5479 15-1132 151132 Computer, Math
## 5480 15-1132 151132 Computer, Math
## 5481 17-2141 172141 Architecture, Engineer
## 5482 15-1132 151132 Computer, Math
## 5483 15-1132 151132 Computer, Math
## 5484 25-1071 251071 Education, Training
## 5485 15-1133 151133 Computer, Math
## 5486 15-1132 151132 Computer, Math
## 5487 15-1132 151132 Computer, Math
## 5488 15-1034 151034 Computer, Math
## 5489 15-1199 151199 Computer, Math
## 5490 15-1199 151199 Computer, Math
## 5491 19-1042 191042 Life, Physcial, Social Science
## 5492 15-1142 151142 Computer, Math
## 5493 11-3031 113031 Management
## 5494 15-1132 151132 Computer, Math
## 5495 15-1132 151132 Computer, Math
## 5496 19-1021 191021 Life, Physcial, Social Science
## 5497 15-1132 151132 Computer, Math
## 5498 15-1199 151199 Computer, Math
## 5499 15-1199 151199 Computer, Math
## 5500 41-9031 419031 Sales
## 5501 29-1123 291123 Healthcare Practitioner
## 5502 15-1132 151132 Computer, Math
## 5503 15-1199 151199 Computer, Math
## 5504 15-1121 151121 Computer, Math
## 5505 15-1132 151132 Computer, Math
## 5506 15-1131 151131 Computer, Math
## 5507 15-1132 151132 Computer, Math
## 5508 15-1132 151132 Computer, Math
## 5509 15-1131 151131 Computer, Math
## 5510 13-1081 131081 Business, Finance
## 5511 15-1132 151132 Computer, Math
## 5512 15-1132 151132 Computer, Math
## 5513 13-1041 131041 Business, Finance
## 5514 15-1142 151142 Computer, Math
## 5515 17-2061 172061 Architecture, Engineer
## 5516 19-1042 191042 Life, Physcial, Social Science
## 5517 15-1121 151121 Computer, Math
## 5518 15-1199 151199 Computer, Math
## 5519 15-1132 151132 Computer, Math
## 5520 15-1121 151121 Computer, Math
## 5521 17-2071 172071 Architecture, Engineer
## 5522 15-1133 151133 Computer, Math
## 5523 15-1132 151132 Computer, Math
## 5524 15-1111 151111 Computer, Math
## 5525 15-1199 151199 Computer, Math
## 5526 15-1132 151132 Computer, Math
## 5527 15-1132 151132 Computer, Math
## 5528 15-1132 151132 Computer, Math
## 5529 17-2071 172071 Architecture, Engineer
## 5530 15-2041 152041 Computer, Math
## 5531 15-1121 151121 Computer, Math
## 5532 25-4012 254012 Education, Training
## 5533 15-1199 151199 Computer, Math
## 5534 13-1023 131023 Business, Finance
## 5535 27-1021 271021 Media, Design
## 5536 15-1132 151132 Computer, Math
## 5537 11-9121 119121 Management
## 5538 15-1199 151199 Computer, Math
## 5539 15-1132 151132 Computer, Math
## 5540 15-1132 151132 Computer, Math
## 5541 15-1132 151132 Computer, Math
## 5542 15-1121 151121 Computer, Math
## 5543 17-2072 172072 Architecture, Engineer
## 5544 15-1131 151131 Computer, Math
## 5545 11-2021 112021 Management
## 5546 17-2141 172141 Architecture, Engineer
## 5547 15-1142 151142 Computer, Math
## 5548 15-1121 151121 Computer, Math
## 5549 29-1051 291051 Healthcare Practitioner
## 5550 29-1123 291123 Healthcare Practitioner
## 5551 17-2112 172112 Architecture, Engineer
## 5552 17-2071 172071 Architecture, Engineer
## 5553 15-1132 151132 Computer, Math
## 5554 15-1132 151132 Computer, Math
## 5555 11-9111 119111 Management
## 5556 17-2141 172141 Architecture, Engineer
## 5557 15-1132 151132 Computer, Math
## 5558 15-1121 151121 Computer, Math
## 5559 15-1132 151132 Computer, Math
## 5560 15-1132 151132 Computer, Math
## 5561 15-1132 151132 Computer, Math
## 5562 15-1121 151121 Computer, Math
## 5563 15-1132 151132 Computer, Math
## 5564 15-1132 151132 Computer, Math
## 5565 29-1069 291069 Healthcare Practitioner
## 5566 15-1121 151121 Computer, Math
## 5567 15-1199 151199 Computer, Math
## 5568 15-1121 151121 Computer, Math
## 5569 15-1132 151132 Computer, Math
## 5570 15-1199 151199 Computer, Math
## 5571 15-1199 151199 Computer, Math
## 5572 15-1132 151132 Computer, Math
## 5573 15-1132 151132 Computer, Math
## 5574 13-2051 132051 Business, Finance
## 5575 15-1131 151131 Computer, Math
## 5576 15-1199 151199 Computer, Math
## 5577 19-1042 191042 Life, Physcial, Social Science
## 5578 15-1121 151121 Computer, Math
## 5579 15-1132 151132 Computer, Math
## 5580 15-2031 152031 Computer, Math
## 5581 15-1199 151199 Computer, Math
## 5582 15-1132 151132 Computer, Math
## 5583 15-2031 152031 Computer, Math
## 5584 15-1121 151121 Computer, Math
## 5585 19-2031 192031 Life, Physcial, Social Science
## 5586 15-1121 151121 Computer, Math
## 5587 15-1132 151132 Computer, Math
## 5588 15-1199 151199 Computer, Math
## 5589 15-1199 151199 Computer, Math
## 5590 11-3011 113011 Management
## 5591 17-2141 172141 Architecture, Engineer
## 5592 15-1132 151132 Computer, Math
## 5593 11-2011 112011 Management
## 5594 13-2011 132011 Business, Finance
## 5595 15-1132 151132 Computer, Math
## 5596 15-1121 151121 Computer, Math
## 5597 15-1132 151132 Computer, Math
## 5598 15-1121 151121 Computer, Math
## 5599 15-1131 151131 Computer, Math
## 5600 15-1132 151132 Computer, Math
## 5601 13-1161 131161 Business, Finance
## 5602 13-2051 132051 Business, Finance
## 5603 15-1131 151131 Computer, Math
## 5604 15-1132 151132 Computer, Math
## 5605 15-1133 151133 Computer, Math
## 5606 15-1121 151121 Computer, Math
## 5607 15-2041 152041 Computer, Math
## 5608 15-1132 151132 Computer, Math
## 5609 25-1042 251042 Education, Training
## 5610 15-1132 151132 Computer, Math
## 5611 15-1121 151121 Computer, Math
## 5612 15-1121 151121 Computer, Math
## 5613 13-2051 132051 Business, Finance
## 5614 15-1132 151132 Computer, Math
## 5615 15-1132 151132 Computer, Math
## 5616 15-1121 151121 Computer, Math
## 5617 17-2112 172112 Architecture, Engineer
## 5618 15-1142 151142 Computer, Math
## 5619 15-1121 151121 Computer, Math
## 5620 15-1132 151132 Computer, Math
## 5621 25-1071 251071 Education, Training
## 5622 15-1132 151132 Computer, Math
## 5623 27-1029 271029 Media, Design
## 5624 15-1199 151199 Computer, Math
## 5625 15-1132 151132 Computer, Math
## 5626 17-2141 172141 Architecture, Engineer
## 5627 15-1141 151141 Computer, Math
## 5628 15-1132 151132 Computer, Math
## 5629 15-1121 151121 Computer, Math
## 5630 15-1132 151132 Computer, Math
## 5631 15-1199 151199 Computer, Math
## 5632 15-1132 151132 Computer, Math
## 5633 15-2041 152041 Computer, Math
## 5634 27-1014 271014 Media, Design
## 5635 19-4021 194021 Life, Physcial, Social Science
## 5636 15-1199 151199 Computer, Math
## 5637 41-9031 419031 Sales
## 5638 15-1131 151131 Computer, Math
## 5639 15-1132 151132 Computer, Math
## 5640 15-1121 151121 Computer, Math
## 5641 13-1111 131111 Business, Finance
## 5642 17-2112 172112 Architecture, Engineer
## 5643 15-1132 151132 Computer, Math
## 5644 15-1121 151121 Computer, Math
## 5645 11-2021 112021 Management
## 5646 15-1132 151132 Computer, Math
## 5647 15-1199 151199 Computer, Math
## 5648 15-1132 151132 Computer, Math
## 5649 15-1131 151131 Computer, Math
## 5650 15-1142 151142 Computer, Math
## 5651 15-1132 151132 Computer, Math
## 5652 15-1111 151111 Computer, Math
## 5653 15-1132 151132 Computer, Math
## 5654 29-1063 291063 Healthcare Practitioner
## 5655 17-2071 172071 Architecture, Engineer
## 5656 15-2041 152041 Computer, Math
## 5657 19-4021 194021 Life, Physcial, Social Science
## 5658 15-2011 152011 Computer, Math
## 5659 15-1132 151132 Computer, Math
## 5660 17-2051 172051 Architecture, Engineer
## 5661 15-1132 151132 Computer, Math
## 5662 15-1132 151132 Computer, Math
## 5663 17-2141 172141 Architecture, Engineer
## 5664 15-1132 151132 Computer, Math
## 5665 41-9031 419031 Sales
## 5666 15-1132 151132 Computer, Math
## 5667 15-1121 151121 Computer, Math
## 5668 15-2031 152031 Computer, Math
## 5669 15-1121 151121 Computer, Math
## 5670 15-1132 151132 Computer, Math
## 5671 25-1011 251011 Education, Training
## 5672 11-9199 119199 Management
## 5673 15-1131 151131 Computer, Math
## 5674 21-1015 211015 Social Service
## 5675 15-1121 151121 Computer, Math
## 5676 15-1199 151199 Computer, Math
## 5677 15-1132 151132 Computer, Math
## 5678 15-2041 152041 Computer, Math
## 5679 15-1132 151132 Computer, Math
## 5680 15-1199 151199 Computer, Math
## 5681 15-1132 151132 Computer, Math
## 5682 15-1121 151121 Computer, Math
## 5683 15-1132 151132 Computer, Math
## 5684 15-1132 151132 Computer, Math
## 5685 15-1132 151132 Computer, Math
## 5686 15-1121 151121 Computer, Math
## 5687 13-2051 132051 Business, Finance
## 5688 15-1132 151132 Computer, Math
## 5689 27-1024 271024 Media, Design
## 5690 15-1121 151121 Computer, Math
## 5691 15-1142 151142 Computer, Math
## 5692 15-1199 151199 Computer, Math
## 5693 29-1123 291123 Healthcare Practitioner
## 5694 11-3021 113021 Management
## 5695 13-2051 132051 Business, Finance
## 5696 15-1132 151132 Computer, Math
## 5697 15-1132 151132 Computer, Math
## 5698 11-2021 112021 Management
## 5699 15-1132 151132 Computer, Math
## 5700 15-1141 151141 Computer, Math
## 5701 15-1132 151132 Computer, Math
## 5702 15-1131 151131 Computer, Math
## 5703 15-1121 151121 Computer, Math
## 5704 15-1132 151132 Computer, Math
## 5705 19-1041 191041 Life, Physcial, Social Science
## 5706 17-2051 172051 Architecture, Engineer
## 5707 15-1133 151133 Computer, Math
## 5708 15-1199 151199 Computer, Math
## 5709 15-1132 151132 Computer, Math
## 5710 15-1132 151132 Computer, Math
## 5711 15-1131 151131 Computer, Math
## 5712 17-2141 172141 Architecture, Engineer
## 5713 15-1132 151132 Computer, Math
## 5714 13-1111 131111 Business, Finance
## 5715 15-1199 151199 Computer, Math
## 5716 11-3021 113021 Management
## 5717 15-1132 151132 Computer, Math
## 5718 19-1021 191021 Life, Physcial, Social Science
## 5719 15-1121 151121 Computer, Math
## 5720 15-1131 151131 Computer, Math
## 5721 11-3021 113021 Management
## 5722 15-1132 151132 Computer, Math
## 5723 15-1121 151121 Computer, Math
## 5724 17-2141 172141 Architecture, Engineer
## 5725 15-1132 151132 Computer, Math
## 5726 15-1199 151199 Computer, Math
## 5727 15-1133 151133 Computer, Math
## 5728 15-1132 151132 Computer, Math
## 5729 15-1132 151132 Computer, Math
## 5730 41-9031 419031 Sales
## 5731 25-1121 251121 Education, Training
## 5732 13-1111 131111 Business, Finance
## 5733 13-1111 131111 Business, Finance
## 5734 15-1132 151132 Computer, Math
## 5735 25-1063 251063 Education, Training
## 5736 15-1121 151121 Computer, Math
## 5737 15-1132 151132 Computer, Math
## 5738 17-2141 172141 Architecture, Engineer
## 5739 15-1199 151199 Computer, Math
## 5740 29-1069 291069 Healthcare Practitioner
## 5741 15-1199 151199 Computer, Math
## 5742 15-1121 151121 Computer, Math
## 5743 15-1132 151132 Computer, Math
## 5744 15-1132 151132 Computer, Math
## 5745 15-1133 151133 Computer, Math
## 5746 15-1199 151199 Computer, Math
## 5747 15-1132 151132 Computer, Math
## 5748 17-2144 172144 Architecture, Engineer
## 5749 25-1123 251123 Education, Training
## 5750 17-1011 171011 Architecture, Engineer
## 5751 15-1133 151133 Computer, Math
## 5752 15-1132 151132 Computer, Math
## 5753 15-1199 151199 Computer, Math
## 5754 15-1121 151121 Computer, Math
## 5755 15-1132 151132 Computer, Math
## 5756 15-1121 151121 Computer, Math
## 5757 15-1132 151132 Computer, Math
## 5758 15-1199 151199 Computer, Math
## 5759 25-2054 252054 Education, Training
## 5760 15-1132 151132 Computer, Math
## 5761 15-1132 151132 Computer, Math
## 5762 11-3021 113021 Management
## 5763 15-1132 151132 Computer, Math
## 5764 27-1021 271021 Media, Design
## 5765 15-1132 151132 Computer, Math
## 5766 15-1199 151199 Computer, Math
## 5767 15-1121 151121 Computer, Math
## 5768 19-2032 192032 Life, Physcial, Social Science
## 5769 15-1132 151132 Computer, Math
## 5770 15-1132 151132 Computer, Math
## 5771 15-1199 151199 Computer, Math
## 5772 15-1121 151121 Computer, Math
## 5773 15-1199 151199 Computer, Math
## 5774 15-1132 151132 Computer, Math
## 5775 15-1131 151131 Computer, Math
## 5776 15-1132 151132 Computer, Math
## 5777 15-1199 151199 Computer, Math
## 5778 15-1132 151132 Computer, Math
## 5779 15-1132 151132 Computer, Math
## 5780 15-1132 151132 Computer, Math
## 5781 15-1132 151132 Computer, Math
## 5782 17-2141 172141 Architecture, Engineer
## 5783 15-1134 151134 Computer, Math
## 5784 13-1111 131111 Business, Finance
## 5785 15-1132 151132 Computer, Math
## 5786 15-1121 151121 Computer, Math
## 5787 15-1132 151132 Computer, Math
## 5788 29-1021 291021 Healthcare Practitioner
## 5789 15-1199 151199 Computer, Math
## 5790 15-1121 151121 Computer, Math
## 5791 17-2199 172199 Architecture, Engineer
## 5792 15-1121 151121 Computer, Math
## 5793 15-1121 151121 Computer, Math
## 5794 15-1199 151199 Computer, Math
## 5795 15-1199 151199 Computer, Math
## 5796 17-2141 172141 Architecture, Engineer
## 5797 15-1133 151133 Computer, Math
## 5798 15-1132 151132 Computer, Math
## 5799 15-1132 151132 Computer, Math
## 5800 13-1161 131161 Business, Finance
## 5801 19-1042 191042 Life, Physcial, Social Science
## 5802 15-1132 151132 Computer, Math
## 5803 17-2072 172072 Architecture, Engineer
## 5804 15-1132 151132 Computer, Math
## 5805 15-1199 151199 Computer, Math
## 5806 15-1121 151121 Computer, Math
## 5807 15-1132 151132 Computer, Math
## 5808 15-1132 151132 Computer, Math
## 5809 15-1132 151132 Computer, Math
## 5810 15-1131 151131 Computer, Math
## 5811 15-1199 151199 Computer, Math
## 5812 17-2051 172051 Architecture, Engineer
## 5813 15-1134 151134 Computer, Math
## 5814 15-1199 151199 Computer, Math
## 5815 15-1132 151132 Computer, Math
## 5816 15-1121 151121 Computer, Math
## 5817 15-1132 151132 Computer, Math
## 5818 15-1199 151199 Computer, Math
## 5819 15-1131 151131 Computer, Math
## 5820 15-1132 151132 Computer, Math
## 5821 15-1199 151199 Computer, Math
## 5822 15-1121 151121 Computer, Math
## 5823 15-1132 151132 Computer, Math
## 5824 15-1133 151133 Computer, Math
## 5825 15-1132 151132 Computer, Math
## 5826 15-1131 151131 Computer, Math
## 5827 17-2061 172061 Architecture, Engineer
## 5828 13-1041 131041 Business, Finance
## 5829 17-2071 172071 Architecture, Engineer
## 5830 15-1133 151133 Computer, Math
## 5831 17-2051 172051 Architecture, Engineer
## 5832 15-1133 151133 Computer, Math
## 5833 13-1111 131111 Business, Finance
## 5834 27-1024 271024 Media, Design
## 5835 17-2199 172199 Architecture, Engineer
## 5836 15-1132 151132 Computer, Math
## 5837 15-1121 151121 Computer, Math
## 5838 17-2112 172112 Architecture, Engineer
## 5839 15-1133 151133 Computer, Math
## 5840 15-1142 151142 Computer, Math
## 5841 13-2051 132051 Business, Finance
## 5842 15-1121 151121 Computer, Math
## 5843 13-2011 132011 Business, Finance
## 5844 15-1199 151199 Computer, Math
## 5845 17-2071 172071 Architecture, Engineer
## 5846 13-1111 131111 Business, Finance
## 5847 15-1121 151121 Computer, Math
## 5848 15-1132 151132 Computer, Math
## 5849 15-1199 151199 Computer, Math
## 5850 15-1199 151199 Computer, Math
## 5851 13-2011 132011 Business, Finance
## 5852 15-1133 151133 Computer, Math
## 5853 17-2141 172141 Architecture, Engineer
## 5854 15-1199 151199 Computer, Math
## 5855 15-1111 151111 Computer, Math
## 5856 13-2051 132051 Business, Finance
## 5857 13-2051 132051 Business, Finance
## 5858 15-1141 151141 Computer, Math
## 5859 15-1199 151199 Computer, Math
## 5860 17-2071 172071 Architecture, Engineer
## 5861 15-1132 151132 Computer, Math
## 5862 15-1132 151132 Computer, Math
## 5863 15-1132 151132 Computer, Math
## 5864 15-1132 151132 Computer, Math
## 5865 15-1132 151132 Computer, Math
## 5866 15-1134 151134 Computer, Math
## 5867 13-1161 131161 Business, Finance
## 5868 15-1132 151132 Computer, Math
## 5869 29-9099 299099 Healthcare Practitioner
## 5870 15-1132 151132 Computer, Math
## 5871 15-1199 151199 Computer, Math
## 5872 15-1143 151143 Computer, Math
## 5873 19-2031 192031 Life, Physcial, Social Science
## 5874 15-1199 151199 Computer, Math
## 5875 15-1121 151121 Computer, Math
## 5876 15-1132 151132 Computer, Math
## 5877 25-1126 251126 Education, Training
## 5878 15-1199 151199 Computer, Math
## 5879 15-1132 151132 Computer, Math
## 5880 15-1131 151131 Computer, Math
## 5881 11-3021 113021 Management
## 5882 15-1132 151132 Computer, Math
## 5883 15-1199 151199 Computer, Math
## 5884 15-1132 151132 Computer, Math
## 5885 17-2199 172199 Architecture, Engineer
## 5886 15-1199 151199 Computer, Math
## 5887 15-1132 151132 Computer, Math
## 5888 15-1131 151131 Computer, Math
## 5889 19-2031 192031 Life, Physcial, Social Science
## 5890 15-1132 151132 Computer, Math
## 5891 15-1132 151132 Computer, Math
## 5892 15-1121 151121 Computer, Math
## 5893 15-1199 151199 Computer, Math
## 5894 15-1142 151142 Computer, Math
## 5895 15-1132 151132 Computer, Math
## 5896 15-1131 151131 Computer, Math
## 5897 13-1161 131161 Business, Finance
## 5898 15-1121 151121 Computer, Math
## 5899 15-1121 151121 Computer, Math
## 5900 15-1132 151132 Computer, Math
## 5901 15-1199 151199 Computer, Math
## 5902 19-1021 191021 Life, Physcial, Social Science
## 5903 15-1132 151132 Computer, Math
## 5904 15-1132 151132 Computer, Math
## 5905 13-2051 132051 Business, Finance
## 5906 19-1042 191042 Life, Physcial, Social Science
## 5907 15-1199 151199 Computer, Math
## 5908 15-1121 151121 Computer, Math
## 5909 13-1051 131051 Business, Finance
## 5910 13-1111 131111 Business, Finance
## 5911 15-1121 151121 Computer, Math
## 5912 15-1132 151132 Computer, Math
## 5913 15-1132 151132 Computer, Math
## 5914 15-1121 151121 Computer, Math
## 5915 15-1131 151131 Computer, Math
## 5916 15-1121 151121 Computer, Math
## 5917 15-1142 151142 Computer, Math
## 5918 15-1132 151132 Computer, Math
## 5919 15-1132 151132 Computer, Math
## 5920 15-2021 152021 Computer, Math
## 5921 13-2099 132099 Business, Finance
## 5922 13-1111 131111 Business, Finance
## 5923 11-9041 119041 Management
## 5924 15-1132 151132 Computer, Math
## 5925 15-1132 151132 Computer, Math
## 5926 15-1132 151132 Computer, Math
## 5927 15-1132 151132 Computer, Math
## 5928 15-1199 151199 Computer, Math
## 5929 15-1121 151121 Computer, Math
## 5930 15-1132 151132 Computer, Math
## 5931 15-1133 151133 Computer, Math
## 5932 17-2031 172031 Architecture, Engineer
## 5933 15-1132 151132 Computer, Math
## 5934 15-1134 151134 Computer, Math
## 5935 11-3071 113071 Management
## 5936 15-1199 151199 Computer, Math
## 5937 15-1133 151133 Computer, Math
## 5938 15-1121 151121 Computer, Math
## 5939 11-3021 113021 Management
## 5940 13-2051 132051 Business, Finance
## 5941 29-1062 291062 Healthcare Practitioner
## 5942 15-1132 151132 Computer, Math
## 5943 15-1132 151132 Computer, Math
## 5944 15-1132 151132 Computer, Math
## 5945 15-1132 151132 Computer, Math
## 5946 15-1132 151132 Computer, Math
## 5947 15-1121 151121 Computer, Math
## 5948 15-1121 151121 Computer, Math
## 5949 15-1199 151199 Computer, Math
## 5950 15-1131 151131 Computer, Math
## 5951 15-1133 151133 Computer, Math
## 5952 17-2141 172141 Architecture, Engineer
## 5953 19-1029 191029 Life, Physcial, Social Science
## 5954 13-1111 131111 Business, Finance
## 5955 25-1032 251032 Education, Training
## 5956 15-1121 151121 Computer, Math
## 5957 17-2072 172072 Architecture, Engineer
## 5958 15-1132 151132 Computer, Math
## 5959 15-1121 151121 Computer, Math
## 5960 15-1132 151132 Computer, Math
## 5961 15-1199 151199 Computer, Math
## 5962 17-2199 172199 Architecture, Engineer
## 5963 15-1132 151132 Computer, Math
## 5964 15-1199 151199 Computer, Math
## 5965 25-1071 251071 Education, Training
## 5966 15-1199 151199 Computer, Math
## 5967 15-1134 151134 Computer, Math
## 5968 15-1121 151121 Computer, Math
## 5969 15-1199 151199 Computer, Math
## 5970 15-1132 151132 Computer, Math
## 5971 11-9021 119021 Management
## 5972 15-1132 151132 Computer, Math
## 5973 11-3021 113021 Management
## 5974 15-1121 151121 Computer, Math
## 5975 19-1022 191022 Life, Physcial, Social Science
## 5976 17-2141 172141 Architecture, Engineer
## 5977 15-1132 151132 Computer, Math
## 5978 19-1011 191011 Life, Physcial, Social Science
## 5979 15-1133 151133 Computer, Math
## 5980 17-2071 172071 Architecture, Engineer
## 5981 15-1132 151132 Computer, Math
## 5982 15-1121 151121 Computer, Math
## 5983 15-1133 151133 Computer, Math
## 5984 15-1199 151199 Computer, Math
## 5985 15-2031 152031 Computer, Math
## 5986 15-1131 151131 Computer, Math
## 5987 15-1132 151132 Computer, Math
## 5988 15-1132 151132 Computer, Math
## 5989 15-1132 151132 Computer, Math
## 5990 15-1199 151199 Computer, Math
## 5991 15-1199 151199 Computer, Math
## 5992 15-1132 151132 Computer, Math
## 5993 17-2071 172071 Architecture, Engineer
## 5994 15-1132 151132 Computer, Math
## 5995 15-1141 151141 Computer, Math
## 5996 15-1121 151121 Computer, Math
## 5997 15-1121 151121 Computer, Math
## 5998 15-1199 151199 Computer, Math
## 5999 15-1199 151199 Computer, Math
## 6000 15-2031 152031 Computer, Math
## 6001 29-1069 291069 Healthcare Practitioner
## 6002 17-2141 172141 Architecture, Engineer
## 6003 19-1029 191029 Life, Physcial, Social Science
## 6004 15-1121 151121 Computer, Math
## 6005 15-2041 152041 Computer, Math
## 6006 17-2112 172112 Architecture, Engineer
## 6007 15-1141 151141 Computer, Math
## 6008 15-1132 151132 Computer, Math
## 6009 15-1132 151132 Computer, Math
## 6010 15-1199 151199 Computer, Math
## 6011 15-1199 151199 Computer, Math
## 6012 19-3031 193031 Life, Physcial, Social Science
## 6013 15-1132 151132 Computer, Math
## 6014 11-2021 112021 Management
## 6015 15-1132 151132 Computer, Math
## 6016 15-1132 151132 Computer, Math
## 6017 15-1142 151142 Computer, Math
## 6018 15-1132 151132 Computer, Math
## 6019 15-1142 151142 Computer, Math
## 6020 15-1131 151131 Computer, Math
## 6021 15-2031 152031 Computer, Math
## 6022 17-2112 172112 Architecture, Engineer
## 6023 15-1152 151152 Computer, Math
## 6024 15-1133 151133 Computer, Math
## 6025 15-2031 152031 Computer, Math
## 6026 15-2031 152031 Computer, Math
## 6027 15-1132 151132 Computer, Math
## 6028 15-1199 151199 Computer, Math
## 6029 13-1141 131141 Business, Finance
## 6030 13-1161 131161 Business, Finance
## 6031 15-1121 151121 Computer, Math
## 6032 15-1132 151132 Computer, Math
## 6033 13-2011 132011 Business, Finance
## 6034 17-2112 172112 Architecture, Engineer
## 6035 15-1132 151132 Computer, Math
## 6036 25-2031 252031 Education, Training
## 6037 15-1131 151131 Computer, Math
## 6038 15-1132 151132 Computer, Math
## 6039 15-1132 151132 Computer, Math
## 6040 15-1199 151199 Computer, Math
## 6041 15-1131 151131 Computer, Math
## 6042 17-2071 172071 Architecture, Engineer
## 6043 21-1012 211012 Social Service
## 6044 15-1121 151121 Computer, Math
## 6045 27-3042 273042 Media, Design
## 6046 15-1132 151132 Computer, Math
## 6047 15-1134 151134 Computer, Math
## 6048 15-1132 151132 Computer, Math
## 6049 15-1121 151121 Computer, Math
## 6050 13-1161 131161 Business, Finance
## 6051 15-1121 151121 Computer, Math
## 6052 15-1199 151199 Computer, Math
## 6053 13-1111 131111 Business, Finance
## 6054 25-1022 251022 Education, Training
## 6055 25-1071 251071 Education, Training
## 6056 19-1021 191021 Life, Physcial, Social Science
## 6057 17-2131 172131 Architecture, Engineer
## 6058 15-1121 151121 Computer, Math
## 6059 15-1199 151199 Computer, Math
## 6060 15-1132 151132 Computer, Math
## 6061 15-1132 151132 Computer, Math
## 6062 13-1081 131081 Business, Finance
## 6063 19-1021 191021 Life, Physcial, Social Science
## 6064 11-3051 113051 Management
## 6065 17-2081 172081 Architecture, Engineer
## 6066 15-1121 151121 Computer, Math
## 6067 15-1133 151133 Computer, Math
## 6068 15-1121 151121 Computer, Math
## 6069 15-1199 151199 Computer, Math
## 6070 15-2041 152041 Computer, Math
## 6071 13-2051 132051 Business, Finance
## 6072 15-2031 152031 Computer, Math
## 6073 15-1132 151132 Computer, Math
## 6074 15-1121 151121 Computer, Math
## 6075 15-1199 151199 Computer, Math
## 6076 15-1132 151132 Computer, Math
## 6077 15-1132 151132 Computer, Math
## 6078 15-1132 151132 Computer, Math
## 6079 25-1063 251063 Education, Training
## 6080 15-1132 151132 Computer, Math
## 6081 17-2072 172072 Architecture, Engineer
## 6082 15-1132 151132 Computer, Math
## 6083 15-1134 151134 Computer, Math
## 6084 15-1199 151199 Computer, Math
## 6085 15-1121 151121 Computer, Math
## 6086 13-2099 132099 Business, Finance
## 6087 15-1132 151132 Computer, Math
## 6088 15-1132 151132 Computer, Math
## 6089 15-1199 151199 Computer, Math
## 6090 15-1132 151132 Computer, Math
## 6091 17-2131 172131 Architecture, Engineer
## 6092 15-1133 151133 Computer, Math
## 6093 15-1132 151132 Computer, Math
## 6094 11-3021 113021 Management
## 6095 15-1121 151121 Computer, Math
## 6096 15-1121 151121 Computer, Math
## 6097 15-1132 151132 Computer, Math
## 6098 15-1133 151133 Computer, Math
## 6099 15-1141 151141 Computer, Math
## 6100 17-2072 172072 Architecture, Engineer
## 6101 15-1132 151132 Computer, Math
## 6102 13-1111 131111 Business, Finance
## 6103 15-1133 151133 Computer, Math
## 6104 15-1132 151132 Computer, Math
## 6105 15-1121 151121 Computer, Math
## 6106 15-1199 151199 Computer, Math
## 6107 15-2031 152031 Computer, Math
## 6108 15-1199 151199 Computer, Math
## 6109 17-2051 172051 Architecture, Engineer
## 6110 13-2041 132041 Business, Finance
## 6111 15-1132 151132 Computer, Math
## 6112 15-1034 151034 Computer, Math
## 6113 15-1199 151199 Computer, Math
## 6114 15-1132 151132 Computer, Math
## 6115 15-1132 151132 Computer, Math
## 6116 15-1132 151132 Computer, Math
## 6117 15-1132 151132 Computer, Math
## 6118 15-1131 151131 Computer, Math
## 6119 13-1111 131111 Business, Finance
## 6120 13-1151 131151 Business, Finance
## 6121 13-1041 131041 Business, Finance
## 6122 15-1132 151132 Computer, Math
## 6123 15-1121 151121 Computer, Math
## 6124 15-1199 151199 Computer, Math
## 6125 15-2031 152031 Computer, Math
## 6126 13-2011 132011 Business, Finance
## 6127 15-1199 151199 Computer, Math
## 6128 13-1111 131111 Business, Finance
## 6129 15-1121 151121 Computer, Math
## 6130 15-1121 151121 Computer, Math
## 6131 15-1199 151199 Computer, Math
## 6132 19-1029 191029 Life, Physcial, Social Science
## 6133 15-1199 151199 Computer, Math
## 6134 15-1132 151132 Computer, Math
## 6135 17-2071 172071 Architecture, Engineer
## 6136 15-1132 151132 Computer, Math
## 6137 15-1132 151132 Computer, Math
## 6138 15-1134 151134 Computer, Math
## 6139 15-1132 151132 Computer, Math
## 6140 15-1131 151131 Computer, Math
## 6141 25-1199 251199 Education, Training
## 6142 15-1121 151121 Computer, Math
## 6143 15-1132 151132 Computer, Math
## 6144 13-2011 132011 Business, Finance
## 6145 15-1132 151132 Computer, Math
## 6146 15-1132 151132 Computer, Math
## 6147 15-1121 151121 Computer, Math
## 6148 15-1132 151132 Computer, Math
## 6149 15-1131 151131 Computer, Math
## 6150 15-1199 151199 Computer, Math
## 6151 15-1132 151132 Computer, Math
## 6152 13-1111 131111 Business, Finance
## 6153 15-1131 151131 Computer, Math
## 6154 15-1199 151199 Computer, Math
## 6155 15-1132 151132 Computer, Math
## 6156 15-1141 151141 Computer, Math
## 6157 15-1132 151132 Computer, Math
## 6158 15-1199 151199 Computer, Math
## 6159 15-1132 151132 Computer, Math
## 6160 19-1042 191042 Life, Physcial, Social Science
## 6161 17-2131 172131 Architecture, Engineer
## 6162 15-1131 151131 Computer, Math
## 6163 15-1132 151132 Computer, Math
## 6164 15-1131 151131 Computer, Math
## 6165 15-1131 151131 Computer, Math
## 6166 15-1121 151121 Computer, Math
## 6167 25-1022 251022 Education, Training
## 6168 15-1132 151132 Computer, Math
## 6169 11-3031 113031 Management
## 6170 15-1142 151142 Computer, Math
## 6171 27-1024 271024 Media, Design
## 6172 15-1132 151132 Computer, Math
## 6173 13-2051 132051 Business, Finance
## 6174 15-1132 151132 Computer, Math
## 6175 15-1132 151132 Computer, Math
## 6176 15-1134 151134 Computer, Math
## 6177 15-1132 151132 Computer, Math
## 6178 15-1121 151121 Computer, Math
## 6179 15-1141 151141 Computer, Math
## 6180 11-3031 113031 Management
## 6181 15-1131 151131 Computer, Math
## 6182 41-9031 419031 Sales
## 6183 17-2131 172131 Architecture, Engineer
## 6184 15-1121 151121 Computer, Math
## 6185 29-1062 291062 Healthcare Practitioner
## 6186 11-3051 113051 Management
## 6187 15-1199 151199 Computer, Math
## 6188 15-1122 151122 Computer, Math
## 6189 17-2071 172071 Architecture, Engineer
## 6190 15-1132 151132 Computer, Math
## 6191 15-1121 151121 Computer, Math
## 6192 17-2144 172144 Architecture, Engineer
## 6193 15-1132 151132 Computer, Math
## 6194 15-1132 151132 Computer, Math
## 6195 15-1132 151132 Computer, Math
## 6196 15-1132 151132 Computer, Math
## 6197 13-2051 132051 Business, Finance
## 6198 13-1111 131111 Business, Finance
## 6199 15-1132 151132 Computer, Math
## 6200 15-1132 151132 Computer, Math
## 6201 15-1199 151199 Computer, Math
## 6202 19-1012 191012 Life, Physcial, Social Science
## 6203 15-1132 151132 Computer, Math
## 6204 15-1199 151199 Computer, Math
## 6205 13-1111 131111 Business, Finance
## 6206 19-1042 191042 Life, Physcial, Social Science
## 6207 15-1142 151142 Computer, Math
## 6208 15-1121 151121 Computer, Math
## 6209 15-1132 151132 Computer, Math
## 6210 15-1199 151199 Computer, Math
## 6211 15-1133 151133 Computer, Math
## 6212 15-1132 151132 Computer, Math
## 6213 13-1111 131111 Business, Finance
## 6214 17-2112 172112 Architecture, Engineer
## 6215 17-2141 172141 Architecture, Engineer
## 6216 11-3031 113031 Management
## 6217 15-1133 151133 Computer, Math
## 6218 15-1121 151121 Computer, Math
## 6219 15-1121 151121 Computer, Math
## 6220 15-1132 151132 Computer, Math
## 6221 15-1121 151121 Computer, Math
## 6222 15-1199 151199 Computer, Math
## 6223 13-2011 132011 Business, Finance
## 6224 15-1121 151121 Computer, Math
## 6225 11-3061 113061 Management
## 6226 13-1111 131111 Business, Finance
## 6227 15-1121 151121 Computer, Math
## 6228 15-1141 151141 Computer, Math
## 6229 15-1131 151131 Computer, Math
## 6230 15-1121 151121 Computer, Math
## 6231 17-2071 172071 Architecture, Engineer
## 6232 15-1132 151132 Computer, Math
## 6233 15-1199 151199 Computer, Math
## 6234 15-1121 151121 Computer, Math
## 6235 17-1011 171011 Architecture, Engineer
## 6236 11-9199 119199 Management
## 6237 13-2099 132099 Business, Finance
## 6238 27-1024 271024 Media, Design
## 6239 15-1132 151132 Computer, Math
## 6240 15-1132 151132 Computer, Math
## 6241 15-1132 151132 Computer, Math
## 6242 13-1081 131081 Business, Finance
## 6243 15-1121 151121 Computer, Math
## 6244 15-1199 151199 Computer, Math
## 6245 11-9041 119041 Management
## 6246 17-2141 172141 Architecture, Engineer
## 6247 15-1199 151199 Computer, Math
## 6248 15-1199 151199 Computer, Math
## 6249 15-1132 151132 Computer, Math
## 6250 13-2011 132011 Business, Finance
## 6251 15-1121 151121 Computer, Math
## 6252 15-2041 152041 Computer, Math
## 6253 15-1133 151133 Computer, Math
## 6254 15-1133 151133 Computer, Math
## 6255 15-1199 151199 Computer, Math
## 6256 15-1121 151121 Computer, Math
## 6257 11-9151 119151 Management
## 6258 15-1132 151132 Computer, Math
## 6259 17-2112 172112 Architecture, Engineer
## 6260 15-1131 151131 Computer, Math
## 6261 15-1152 151152 Computer, Math
## 6262 15-1131 151131 Computer, Math
## 6263 15-1132 151132 Computer, Math
## 6264 13-1111 131111 Business, Finance
## 6265 15-1132 151132 Computer, Math
## 6266 21-1013 211013 Social Service
## 6267 15-1121 151121 Computer, Math
## 6268 17-2041 172041 Architecture, Engineer
## 6269 15-1121 151121 Computer, Math
## 6270 15-1132 151132 Computer, Math
## 6271 15-1132 151132 Computer, Math
## 6272 15-1132 151132 Computer, Math
## 6273 15-1121 151121 Computer, Math
## 6274 15-1132 151132 Computer, Math
## 6275 15-1199 151199 Computer, Math
## 6276 15-1199 151199 Computer, Math
## 6277 11-3021 113021 Management
## 6278 15-1121 151121 Computer, Math
## 6279 15-1131 151131 Computer, Math
## 6280 15-1132 151132 Computer, Math
## 6281 15-1199 151199 Computer, Math
## 6282 15-1133 151133 Computer, Math
## 6283 15-1132 151132 Computer, Math
## 6284 15-1132 151132 Computer, Math
## 6285 23-2011 232011 Legal
## 6286 17-2072 172072 Architecture, Engineer
## 6287 15-1132 151132 Computer, Math
## 6288 15-1134 151134 Computer, Math
## 6289 13-1081 131081 Business, Finance
## 6290 13-2011 132011 Business, Finance
## 6291 15-1121 151121 Computer, Math
## 6292 15-1199 151199 Computer, Math
## 6293 15-2041 152041 Computer, Math
## 6294 15-1142 151142 Computer, Math
## 6295 15-1132 151132 Computer, Math
## 6296 15-1132 151132 Computer, Math
## 6297 13-2011 132011 Business, Finance
## 6298 19-2012 192012 Life, Physcial, Social Science
## 6299 13-2051 132051 Business, Finance
## 6300 15-1121 151121 Computer, Math
## 6301 13-1161 131161 Business, Finance
## 6302 15-1121 151121 Computer, Math
## 6303 15-1131 151131 Computer, Math
## 6304 27-3031 273031 Media, Design
## 6305 15-1199 151199 Computer, Math
## 6306 15-1121 151121 Computer, Math
## 6307 15-1199 151199 Computer, Math
## 6308 13-2051 132051 Business, Finance
## 6309 15-1121 151121 Computer, Math
## 6310 15-1142 151142 Computer, Math
## 6311 15-1121 151121 Computer, Math
## 6312 15-2041 152041 Computer, Math
## 6313 15-1132 151132 Computer, Math
## 6314 15-1121 151121 Computer, Math
## 6315 25-2022 252022 Education, Training
## 6316 15-1132 151132 Computer, Math
## 6317 15-1132 151132 Computer, Math
## 6318 15-1132 151132 Computer, Math
## 6319 15-1131 151131 Computer, Math
## 6320 11-2021 112021 Management
## 6321 27-1024 271024 Media, Design
## 6322 15-1132 151132 Computer, Math
## 6323 15-1121 151121 Computer, Math
## 6324 15-1131 151131 Computer, Math
## 6325 17-2141 172141 Architecture, Engineer
## 6326 29-1199 291199 Healthcare Practitioner
## 6327 15-1199 151199 Computer, Math
## 6328 15-2041 152041 Computer, Math
## 6329 15-1142 151142 Computer, Math
## 6330 15-1132 151132 Computer, Math
## 6331 17-2141 172141 Architecture, Engineer
## 6332 15-1121 151121 Computer, Math
## 6333 15-1133 151133 Computer, Math
## 6334 13-1161 131161 Business, Finance
## 6335 15-1199 151199 Computer, Math
## 6336 15-1132 151132 Computer, Math
## 6337 15-1121 151121 Computer, Math
## 6338 15-1199 151199 Computer, Math
## 6339 17-2071 172071 Architecture, Engineer
## 6340 15-1199 151199 Computer, Math
## 6341 17-2199 172199 Architecture, Engineer
## 6342 15-1132 151132 Computer, Math
## 6343 15-1132 151132 Computer, Math
## 6344 15-1132 151132 Computer, Math
## 6345 15-1132 151132 Computer, Math
## 6346 15-1141 151141 Computer, Math
## 6347 17-2072 172072 Architecture, Engineer
## 6348 15-1199 151199 Computer, Math
## 6349 15-1132 151132 Computer, Math
## 6350 15-1121 151121 Computer, Math
## 6351 13-1111 131111 Business, Finance
## 6352 15-1199 151199 Computer, Math
## 6353 15-1199 151199 Computer, Math
## 6354 17-2131 172131 Architecture, Engineer
## 6355 13-1161 131161 Business, Finance
## 6356 11-2021 112021 Management
## 6357 11-3051 113051 Management
## 6358 15-1121 151121 Computer, Math
## 6359 15-1132 151132 Computer, Math
## 6360 15-1132 151132 Computer, Math
## 6361 15-1121 151121 Computer, Math
## 6362 15-1121 151121 Computer, Math
## 6363 17-2031 172031 Architecture, Engineer
## 6364 11-2021 112021 Management
## 6365 15-1132 151132 Computer, Math
## 6366 15-1199 151199 Computer, Math
## 6367 15-1121 151121 Computer, Math
## 6368 15-1131 151131 Computer, Math
## 6369 15-1133 151133 Computer, Math
## 6370 13-1111 131111 Business, Finance
## 6371 17-2081 172081 Architecture, Engineer
## 6372 25-1042 251042 Education, Training
## 6373 15-1121 151121 Computer, Math
## 6374 15-1199 151199 Computer, Math
## 6375 15-1199 151199 Computer, Math
## 6376 17-2141 172141 Architecture, Engineer
## 6377 11-3031 113031 Management
## 6378 15-1131 151131 Computer, Math
## 6379 17-2072 172072 Architecture, Engineer
## 6380 15-1132 151132 Computer, Math
## 6381 15-1132 151132 Computer, Math
## 6382 11-2021 112021 Management
## 6383 15-2041 152041 Computer, Math
## 6384 15-1132 151132 Computer, Math
## 6385 15-2041 152041 Computer, Math
## 6386 15-1199 151199 Computer, Math
## 6387 15-1132 151132 Computer, Math
## 6388 15-1132 151132 Computer, Math
## 6389 15-1121 151121 Computer, Math
## 6390 15-1132 151132 Computer, Math
## 6391 15-1131 151131 Computer, Math
## 6392 15-1132 151132 Computer, Math
## 6393 17-3023 173023 Architecture, Engineer
## 6394 43-9111 439111 Others
## 6395 15-2031 152031 Computer, Math
## 6396 15-1133 151133 Computer, Math
## 6397 15-1121 151121 Computer, Math
## 6398 15-1132 151132 Computer, Math
## 6399 13-2011 132011 Business, Finance
## 6400 15-1131 151131 Computer, Math
## 6401 15-1132 151132 Computer, Math
## 6402 11-9121 119121 Management
## 6403 13-2099 132099 Business, Finance
## 6404 13-1161 131161 Business, Finance
## 6405 15-1133 151133 Computer, Math
## 6406 15-1131 151131 Computer, Math
## 6407 15-1122 151122 Computer, Math
## 6408 17-2199 172199 Architecture, Engineer
## 6409 15-1121 151121 Computer, Math
## 6410 15-1141 151141 Computer, Math
## 6411 15-1199 151199 Computer, Math
## 6412 13-2051 132051 Business, Finance
## 6413 13-1111 131111 Business, Finance
## 6414 15-1132 151132 Computer, Math
## 6415 29-1123 291123 Healthcare Practitioner
## 6416 15-1199 151199 Computer, Math
## 6417 15-1121 151121 Computer, Math
## 6418 19-1021 191021 Life, Physcial, Social Science
## 6419 15-1132 151132 Computer, Math
## 6420 15-1131 151131 Computer, Math
## 6421 25-1065 251065 Education, Training
## 6422 15-1131 151131 Computer, Math
## 6423 15-1121 151121 Computer, Math
## 6424 15-1121 151121 Computer, Math
## 6425 13-1121 131121 Business, Finance
## 6426 19-1042 191042 Life, Physcial, Social Science
## 6427 15-1132 151132 Computer, Math
## 6428 15-1143 151143 Computer, Math
## 6429 15-1132 151132 Computer, Math
## 6430 13-1111 131111 Business, Finance
## 6431 15-1121 151121 Computer, Math
## 6432 13-1111 131111 Business, Finance
## 6433 25-2021 252021 Education, Training
## 6434 15-1122 151122 Computer, Math
## 6435 15-1132 151132 Computer, Math
## 6436 15-1199 151199 Computer, Math
## 6437 15-1132 151132 Computer, Math
## 6438 11-2011 112011 Management
## 6439 15-1199.01 151199 Computer, Math
## 6440 15-1132 151132 Computer, Math
## 6441 15-1121 151121 Computer, Math
## 6442 15-1121 151121 Computer, Math
## 6443 15-1121 151121 Computer, Math
## 6444 25-2021 252021 Education, Training
## 6445 17-2081 172081 Architecture, Engineer
## 6446 15-1199 151199 Computer, Math
## 6447 15-1132 151132 Computer, Math
## 6448 13-2041 132041 Business, Finance
## 6449 17-2051 172051 Architecture, Engineer
## 6450 15-1132 151132 Computer, Math
## 6451 15-1132 151132 Computer, Math
## 6452 11-2021 112021 Management
## 6453 15-1132 151132 Computer, Math
## 6454 15-1132 151132 Computer, Math
## 6455 11-3021 113021 Management
## 6456 15-1132 151132 Computer, Math
## 6457 15-1132 151132 Computer, Math
## 6458 15-1132 151132 Computer, Math
## 6459 15-1141 151141 Computer, Math
## 6460 15-1132 151132 Computer, Math
## 6461 15-2041 152041 Computer, Math
## 6462 11-9121 119121 Management
## 6463 15-1131 151131 Computer, Math
## 6464 15-1121 151121 Computer, Math
## 6465 15-1132 151132 Computer, Math
## 6466 15-1121 151121 Computer, Math
## 6467 15-1199 151199 Computer, Math
## 6468 15-1131 151131 Computer, Math
## 6469 15-2041 152041 Computer, Math
## 6470 15-1132 151132 Computer, Math
## 6471 15-1199 151199 Computer, Math
## 6472 15-2031 152031 Computer, Math
## 6473 13-2051 132051 Business, Finance
## 6474 15-1132 151132 Computer, Math
## 6475 15-2031 152031 Computer, Math
## 6476 15-1132 151132 Computer, Math
## 6477 15-1132 151132 Computer, Math
## 6478 15-1131 151131 Computer, Math
## 6479 15-1199 151199 Computer, Math
## 6480 13-1111 131111 Business, Finance
## 6481 15-1142 151142 Computer, Math
## 6482 15-1132 151132 Computer, Math
## 6483 17-1011 171011 Architecture, Engineer
## 6484 15-1121 151121 Computer, Math
## 6485 17-2051 172051 Architecture, Engineer
## 6486 15-2041 152041 Computer, Math
## 6487 15-1131 151131 Computer, Math
## 6488 15-1121 151121 Computer, Math
## 6489 15-1132 151132 Computer, Math
## 6490 15-1142 151142 Computer, Math
## 6491 17-2112 172112 Architecture, Engineer
## 6492 15-1121 151121 Computer, Math
## 6493 15-1133 151133 Computer, Math
## 6494 15-1142 151142 Computer, Math
## 6495 15-1132 151132 Computer, Math
## 6496 15-1132 151132 Computer, Math
## 6497 15-1121 151121 Computer, Math
## 6498 15-1132 151132 Computer, Math
## 6499 15-1132 151132 Computer, Math
## 6500 15-1121 151121 Computer, Math
## 6501 15-1132 151132 Computer, Math
## 6502 17-2072 172072 Architecture, Engineer
## 6503 15-1199 151199 Computer, Math
## 6504 15-1121 151121 Computer, Math
## 6505 15-1132 151132 Computer, Math
## 6506 11-2031 112031 Management
## 6507 15-1132 151132 Computer, Math
## 6508 15-1133 151133 Computer, Math
## 6509 15-1132 151132 Computer, Math
## 6510 11-3071 113071 Management
## 6511 15-1131 151131 Computer, Math
## 6512 13-2011 132011 Business, Finance
## 6513 15-1132 151132 Computer, Math
## 6514 15-2031 152031 Computer, Math
## 6515 15-1132 151132 Computer, Math
## 6516 27-1014 271014 Media, Design
## 6517 29-1199 291199 Healthcare Practitioner
## 6518 15-1132 151132 Computer, Math
## 6519 15-1132 151132 Computer, Math
## 6520 15-1122 151122 Computer, Math
## 6521 15-1132 151132 Computer, Math
## 6522 15-1133 151133 Computer, Math
## 6523 19-1029 191029 Life, Physcial, Social Science
## 6524 15-1132 151132 Computer, Math
## 6525 17-2112 172112 Architecture, Engineer
## 6526 15-1131 151131 Computer, Math
## 6527 15-1199 151199 Computer, Math
## 6528 17-2071 172071 Architecture, Engineer
## 6529 15-1132 151132 Computer, Math
## 6530 19-1042 191042 Life, Physcial, Social Science
## 6531 15-1132 151132 Computer, Math
## 6532 13-1111 131111 Business, Finance
## 6533 27-3031 273031 Media, Design
## 6534 15-1132 151132 Computer, Math
## 6535 25-1022 251022 Education, Training
## 6536 13-2051 132051 Business, Finance
## 6537 15-1199 151199 Computer, Math
## 6538 15-2041 152041 Computer, Math
## 6539 15-1131 151131 Computer, Math
## 6540 15-1132 151132 Computer, Math
## 6541 15-1132 151132 Computer, Math
## 6542 15-1131 151131 Computer, Math
## 6543 29-1021 291021 Healthcare Practitioner
## 6544 15-2031 152031 Computer, Math
## 6545 15-1121 151121 Computer, Math
## 6546 15-2041 152041 Computer, Math
## 6547 19-1042 191042 Life, Physcial, Social Science
## 6548 15-1199 151199 Computer, Math
## 6549 15-1121 151121 Computer, Math
## 6550 15-1132 151132 Computer, Math
## 6551 17-1011 171011 Architecture, Engineer
## 6552 15-1132 151132 Computer, Math
## 6553 29-1021 291021 Healthcare Practitioner
## 6554 25-1032 251032 Education, Training
## 6555 15-1132 151132 Computer, Math
## 6556 15-1199 151199 Computer, Math
## 6557 15-1132 151132 Computer, Math
## 6558 13-2051 132051 Business, Finance
## 6559 15-1132 151132 Computer, Math
## 6560 15-1121 151121 Computer, Math
## 6561 27-1024 271024 Media, Design
## 6562 19-3011 193011 Life, Physcial, Social Science
## 6563 15-1199 151199 Computer, Math
## 6564 15-1134 151134 Computer, Math
## 6565 17-2199 172199 Architecture, Engineer
## 6566 15-1132 151132 Computer, Math
## 6567 17-2141 172141 Architecture, Engineer
## 6568 15-1132 151132 Computer, Math
## 6569 15-1132 151132 Computer, Math
## 6570 15-1199 151199 Computer, Math
## 6571 15-1132 151132 Computer, Math
## 6572 19-2032 192032 Life, Physcial, Social Science
## 6573 15-1121 151121 Computer, Math
## 6574 15-1131 151131 Computer, Math
## 6575 15-1132 151132 Computer, Math
## 6576 15-1132 151132 Computer, Math
## 6577 15-1121 151121 Computer, Math
## 6578 15-1131 151131 Computer, Math
## 6579 17-2072 172072 Architecture, Engineer
## 6580 13-1111 131111 Business, Finance
## 6581 15-1199 151199 Computer, Math
## 6582 15-1121 151121 Computer, Math
## 6583 15-1132 151132 Computer, Math
## 6584 15-1131 151131 Computer, Math
## 6585 15-1132 151132 Computer, Math
## 6586 15-1131 151131 Computer, Math
## 6587 15-1132 151132 Computer, Math
## 6588 11-9199 119199 Management
## 6589 15-1121 151121 Computer, Math
## 6590 15-1132 151132 Computer, Math
## 6591 15-1132 151132 Computer, Math
## 6592 15-1199 151199 Computer, Math
## 6593 15-1121 151121 Computer, Math
## 6594 13-2051 132051 Business, Finance
## 6595 25-1011 251011 Education, Training
## 6596 15-1111 151111 Computer, Math
## 6597 19-1021 191021 Life, Physcial, Social Science
## 6598 15-1199 151199 Computer, Math
## 6599 13-2011 132011 Business, Finance
## 6600 15-2031 152031 Computer, Math
## 6601 15-1132 151132 Computer, Math
## 6602 15-1141 151141 Computer, Math
## 6603 15-1132 151132 Computer, Math
## 6604 15-1121 151121 Computer, Math
## 6605 15-1121 151121 Computer, Math
## 6606 15-1132 151132 Computer, Math
## 6607 15-1131 151131 Computer, Math
## 6608 15-1132 151132 Computer, Math
## 6609 15-1121 151121 Computer, Math
## 6610 11-9041 119041 Management
## 6611 15-2041 152041 Computer, Math
## 6612 15-1199 151199 Computer, Math
## 6613 13-1081 131081 Business, Finance
## 6614 15-1132 151132 Computer, Math
## 6615 25-2059 252059 Education, Training
## 6616 13-2051 132051 Business, Finance
## 6617 15-1133 151133 Computer, Math
## 6618 15-1131 151131 Computer, Math
## 6619 15-1121 151121 Computer, Math
## 6620 15-1111 151111 Computer, Math
## 6621 13-1161 131161 Business, Finance
## 6622 15-1121 151121 Computer, Math
## 6623 15-1121 151121 Computer, Math
## 6624 15-1199 151199 Computer, Math
## 6625 19-2031 192031 Life, Physcial, Social Science
## 6626 15-1133 151133 Computer, Math
## 6627 15-1132 151132 Computer, Math
## 6628 15-1131 151131 Computer, Math
## 6629 29-1123 291123 Healthcare Practitioner
## 6630 15-1132 151132 Computer, Math
## 6631 15-1132 151132 Computer, Math
## 6632 15-1132 151132 Computer, Math
## 6633 15-1132 151132 Computer, Math
## 6634 15-1121 151121 Computer, Math
## 6635 15-1199 151199 Computer, Math
## 6636 15-1133 151133 Computer, Math
## 6637 15-1199 151199 Computer, Math
## 6638 15-1133 151133 Computer, Math
## 6639 15-1132 151132 Computer, Math
## 6640 15-1141 151141 Computer, Math
## 6641 25-1054 251054 Education, Training
## 6642 17-2141 172141 Architecture, Engineer
## 6643 15-1132 151132 Computer, Math
## 6644 13-2011 132011 Business, Finance
## 6645 15-1132 151132 Computer, Math
## 6646 15-1131 151131 Computer, Math
## 6647 15-1132 151132 Computer, Math
## 6648 15-1133 151133 Computer, Math
## 6649 15-1132 151132 Computer, Math
## 6650 17-2072 172072 Architecture, Engineer
## 6651 15-1121 151121 Computer, Math
## 6652 29-9099 299099 Healthcare Practitioner
## 6653 15-1132 151132 Computer, Math
## 6654 15-1199 151199 Computer, Math
## 6655 17-1011 171011 Architecture, Engineer
## 6656 15-1199 151199 Computer, Math
## 6657 15-1121 151121 Computer, Math
## 6658 13-2011 132011 Business, Finance
## 6659 15-1133 151133 Computer, Math
## 6660 17-2071 172071 Architecture, Engineer
## 6661 15-1132 151132 Computer, Math
## 6662 15-1134 151134 Computer, Math
## 6663 15-2031 152031 Computer, Math
## 6664 15-2031 152031 Computer, Math
## 6665 13-1111 131111 Business, Finance
## 6666 17-2141 172141 Architecture, Engineer
## 6667 15-1121 151121 Computer, Math
## 6668 17-3022 173022 Architecture, Engineer
## 6669 17-2112 172112 Architecture, Engineer
## 6670 15-1131 151131 Computer, Math
## 6671 13-1161 131161 Business, Finance
## 6672 15-1199 151199 Computer, Math
## 6673 13-1111 131111 Business, Finance
## 6674 19-2031 192031 Life, Physcial, Social Science
## 6675 15-1121 151121 Computer, Math
## 6676 15-1132 151132 Computer, Math
## 6677 15-1199 151199 Computer, Math
## 6678 19-3011 193011 Life, Physcial, Social Science
## 6679 15-1121 151121 Computer, Math
## 6680 15-1131 151131 Computer, Math
## 6681 13-2051 132051 Business, Finance
## 6682 15-1132 151132 Computer, Math
## 6683 17-2061 172061 Architecture, Engineer
## 6684 15-1199 151199 Computer, Math
## 6685 15-1199 151199 Computer, Math
## 6686 15-1121 151121 Computer, Math
## 6687 15-1132 151132 Computer, Math
## 6688 15-1132 151132 Computer, Math
## 6689 15-1131 151131 Computer, Math
## 6690 29-1129 291129 Healthcare Practitioner
## 6691 11-3021 113021 Management
## 6692 15-1035 151035 Computer, Math
## 6693 15-1131 151131 Computer, Math
## 6694 17-2071 172071 Architecture, Engineer
## 6695 15-1121 151121 Computer, Math
## 6696 15-1132 151132 Computer, Math
## 6697 15-1131 151131 Computer, Math
## 6698 15-2031 152031 Computer, Math
## 6699 15-1141 151141 Computer, Math
## 6700 15-1132 151132 Computer, Math
## 6701 17-2072 172072 Architecture, Engineer
## 6702 17-2199 172199 Architecture, Engineer
## 6703 17-2112 172112 Architecture, Engineer
## 6704 15-1132 151132 Computer, Math
## 6705 15-2041 152041 Computer, Math
## 6706 15-1134 151134 Computer, Math
## 6707 15-2031 152031 Computer, Math
## 6708 29-2011 292011 Healthcare Practitioner
## 6709 15-1131 151131 Computer, Math
## 6710 15-1199 151199 Computer, Math
## 6711 15-1199 151199 Computer, Math
## 6712 15-1131 151131 Computer, Math
## 6713 15-1132 151132 Computer, Math
## 6714 15-1141 151141 Computer, Math
## 6715 13-2051 132051 Business, Finance
## 6716 15-1121 151121 Computer, Math
## 6717 15-1132 151132 Computer, Math
## 6718 17-1011 171011 Architecture, Engineer
## 6719 15-1199 151199 Computer, Math
## 6720 15-1132 151132 Computer, Math
## 6721 15-1199 151199 Computer, Math
## 6722 15-1199 151199 Computer, Math
## 6723 11-3021 113021 Management
## 6724 15-1141 151141 Computer, Math
## 6725 17-2071 172071 Architecture, Engineer
## 6726 15-2031 152031 Computer, Math
## 6727 15-1199 151199 Computer, Math
## 6728 15-1132 151132 Computer, Math
## 6729 19-1042 191042 Life, Physcial, Social Science
## 6730 15-1132 151132 Computer, Math
## 6731 13-1081 131081 Business, Finance
## 6732 15-1132 151132 Computer, Math
## 6733 15-1132 151132 Computer, Math
## 6734 15-1132 151132 Computer, Math
## 6735 15-2041 152041 Computer, Math
## 6736 15-1132 151132 Computer, Math
## 6737 13-1011 131011 Business, Finance
## 6738 15-2031 152031 Computer, Math
## 6739 15-1121 151121 Computer, Math
## 6740 15-1199 151199 Computer, Math
## 6741 15-1132 151132 Computer, Math
## 6742 15-1132 151132 Computer, Math
## 6743 25-1121 251121 Education, Training
## 6744 15-1199 151199 Computer, Math
## 6745 15-1121 151121 Computer, Math
## 6746 15-1199 151199 Computer, Math
## 6747 15-1132 151132 Computer, Math
## 6748 17-2072 172072 Architecture, Engineer
## 6749 23-1011 231011 Legal
## 6750 15-1132 151132 Computer, Math
## 6751 15-1132 151132 Computer, Math
## 6752 15-1142 151142 Computer, Math
## 6753 15-1132 151132 Computer, Math
## 6754 11-9199 119199 Management
## 6755 15-1132 151132 Computer, Math
## 6756 17-2072 172072 Architecture, Engineer
## 6757 15-1132 151132 Computer, Math
## 6758 15-1132 151132 Computer, Math
## 6759 17-2071 172071 Architecture, Engineer
## 6760 15-1131 151131 Computer, Math
## 6761 29-1123 291123 Healthcare Practitioner
## 6762 15-1142 151142 Computer, Math
## 6763 15-1132 151132 Computer, Math
## 6764 15-1132 151132 Computer, Math
## 6765 15-1121 151121 Computer, Math
## 6766 15-1199 151199 Computer, Math
## 6767 13-2051 132051 Business, Finance
## 6768 15-1131 151131 Computer, Math
## 6769 27-1024 271024 Media, Design
## 6770 15-1132 151132 Computer, Math
## 6771 15-1132 151132 Computer, Math
## 6772 15-1132 151132 Computer, Math
## 6773 15-1134 151134 Computer, Math
## 6774 15-1199 151199 Computer, Math
## 6775 15-2031 152031 Computer, Math
## 6776 15-1133 151133 Computer, Math
## 6777 15-1121 151121 Computer, Math
## 6778 15-1132 151132 Computer, Math
## 6779 15-1132 151132 Computer, Math
## 6780 15-1134 151134 Computer, Math
## 6781 15-1122 151122 Computer, Math
## 6782 15-1132 151132 Computer, Math
## 6783 11-3021 113021 Management
## 6784 15-1199 151199 Computer, Math
## 6785 15-1132 151132 Computer, Math
## 6786 15-1132 151132 Computer, Math
## 6787 15-1132 151132 Computer, Math
## 6788 15-1142 151142 Computer, Math
## 6789 15-1132 151132 Computer, Math
## 6790 15-1132 151132 Computer, Math
## 6791 15-1132 151132 Computer, Math
## 6792 15-1121 151121 Computer, Math
## 6793 15-1199 151199 Computer, Math
## 6794 15-1132 151132 Computer, Math
## 6795 25-2031 252031 Education, Training
## 6796 15-1121 151121 Computer, Math
## 6797 15-1132 151132 Computer, Math
## 6798 15-1132 151132 Computer, Math
## 6799 15-1132 151132 Computer, Math
## 6800 11-3021 113021 Management
## 6801 15-1199 151199 Computer, Math
## 6802 15-1121 151121 Computer, Math
## 6803 15-1132 151132 Computer, Math
## 6804 15-1132 151132 Computer, Math
## 6805 11-3021 113021 Management
## 6806 25-1071 251071 Education, Training
## 6807 15-1199 151199 Computer, Math
## 6808 15-1121 151121 Computer, Math
## 6809 15-1121 151121 Computer, Math
## 6810 15-1121 151121 Computer, Math
## 6811 11-3021 113021 Management
## 6812 15-1121 151121 Computer, Math
## 6813 15-1133 151133 Computer, Math
## 6814 15-1111 151111 Computer, Math
## 6815 15-1132 151132 Computer, Math
## 6816 29-1131 291131 Healthcare Practitioner
## 6817 15-1132 151132 Computer, Math
## 6818 15-1132 151132 Computer, Math
## 6819 15-1132 151132 Computer, Math
## 6820 15-1121 151121 Computer, Math
## 6821 15-1132 151132 Computer, Math
## 6822 41-9031 419031 Sales
## 6823 15-1199 151199 Computer, Math
## 6824 15-1132 151132 Computer, Math
## 6825 15-1132 151132 Computer, Math
## 6826 15-1121 151121 Computer, Math
## 6827 15-1199 151199 Computer, Math
## 6828 29-9099 299099 Healthcare Practitioner
## 6829 15-1132 151132 Computer, Math
## 6830 15-1132 151132 Computer, Math
## 6831 15-1131 151131 Computer, Math
## 6832 15-1199 151199 Computer, Math
## 6833 15-1141 151141 Computer, Math
## 6834 11-3031 113031 Management
## 6835 15-1121 151121 Computer, Math
## 6836 15-1133 151133 Computer, Math
## 6837 15-1121 151121 Computer, Math
## 6838 15-1132 151132 Computer, Math
## 6839 15-1132 151132 Computer, Math
## 6840 15-1199 151199 Computer, Math
## 6841 15-1131 151131 Computer, Math
## 6842 15-1121 151121 Computer, Math
## 6843 15-1121 151121 Computer, Math
## 6844 27-3031 273031 Media, Design
## 6845 13-2011 132011 Business, Finance
## 6846 13-2011 132011 Business, Finance
## 6847 17-2051 172051 Architecture, Engineer
## 6848 15-1132 151132 Computer, Math
## 6849 15-1132 151132 Computer, Math
## 6850 15-1132 151132 Computer, Math
## 6851 13-1111 131111 Business, Finance
## 6852 15-1199 151199 Computer, Math
## 6853 19-1029 191029 Life, Physcial, Social Science
## 6854 15-1132 151132 Computer, Math
## 6855 15-1121 151121 Computer, Math
## 6856 15-1132 151132 Computer, Math
## 6857 15-1121 151121 Computer, Math
## 6858 15-1199 151199 Computer, Math
## 6859 15-1131 151131 Computer, Math
## 6860 15-1199 151199 Computer, Math
## 6861 15-1132 151132 Computer, Math
## 6862 15-1034 151034 Computer, Math
## 6863 25-1124 251124 Education, Training
## 6864 15-1199 151199 Computer, Math
## 6865 15-1132 151132 Computer, Math
## 6866 15-1121 151121 Computer, Math
## 6867 15-2041 152041 Computer, Math
## 6868 15-1132 151132 Computer, Math
## 6869 15-1132 151132 Computer, Math
## 6870 27-1029 271029 Media, Design
## 6871 13-1111 131111 Business, Finance
## 6872 15-1133 151133 Computer, Math
## 6873 11-9081 119081 Management
## 6874 15-1141 151141 Computer, Math
## 6875 15-1121 151121 Computer, Math
## 6876 15-1132 151132 Computer, Math
## 6877 19-1042 191042 Life, Physcial, Social Science
## 6878 15-1133 151133 Computer, Math
## 6879 17-2071 172071 Architecture, Engineer
## 6880 13-2099 132099 Business, Finance
## 6881 15-1199 151199 Computer, Math
## 6882 15-1134 151134 Computer, Math
## 6883 15-1199 151199 Computer, Math
## 6884 13-2099 132099 Business, Finance
## 6885 17-2141 172141 Architecture, Engineer
## 6886 13-1161 131161 Business, Finance
## 6887 15-1199 151199 Computer, Math
## 6888 15-1132 151132 Computer, Math
## 6889 15-1121 151121 Computer, Math
## 6890 25-1121 251121 Education, Training
## 6891 15-1132 151132 Computer, Math
## 6892 19-1042 191042 Life, Physcial, Social Science
## 6893 15-1132 151132 Computer, Math
## 6894 25-1065 251065 Education, Training
## 6895 15-1132 151132 Computer, Math
## 6896 15-1121 151121 Computer, Math
## 6897 17-2051 172051 Architecture, Engineer
## 6898 15-1132 151132 Computer, Math
## 6899 15-1199 151199 Computer, Math
## 6900 15-1133 151133 Computer, Math
## 6901 15-1199 151199 Computer, Math
## 6902 15-1131 151131 Computer, Math
## 6903 15-1199 151199 Computer, Math
## 6904 15-1121 151121 Computer, Math
## 6905 15-1121 151121 Computer, Math
## 6906 15-2031 152031 Computer, Math
## 6907 15-2031 152031 Computer, Math
## 6908 15-1132 151132 Computer, Math
## 6909 15-1199 151199 Computer, Math
## 6910 25-9099 259099 Education, Training
## 6911 15-1132 151132 Computer, Math
## 6912 15-1199 151199 Computer, Math
## 6913 15-1133 151133 Computer, Math
## 6914 17-2112 172112 Architecture, Engineer
## 6915 15-1122 151122 Computer, Math
## 6916 15-1131 151131 Computer, Math
## 6917 15-1121 151121 Computer, Math
## 6918 15-2031 152031 Computer, Math
## 6919 15-1199 151199 Computer, Math
## 6920 17-2199 172199 Architecture, Engineer
## 6921 15-1121 151121 Computer, Math
## 6922 15-1133 151133 Computer, Math
## 6923 17-2199 172199 Architecture, Engineer
## 6924 15-1121 151121 Computer, Math
## 6925 15-1132 151132 Computer, Math
## 6926 15-1199 151199 Computer, Math
## 6927 17-2081 172081 Architecture, Engineer
## 6928 15-1199 151199 Computer, Math
## 6929 17-2051 172051 Architecture, Engineer
## 6930 15-1132 151132 Computer, Math
## 6931 15-1199 151199 Computer, Math
## 6932 15-1132 151132 Computer, Math
## 6933 13-2011 132011 Business, Finance
## 6934 13-2099 132099 Business, Finance
## 6935 15-2041 152041 Computer, Math
## 6936 15-1141 151141 Computer, Math
## 6937 15-1199 151199 Computer, Math
## 6938 15-1199 151199 Computer, Math
## 6939 15-1132 151132 Computer, Math
## 6940 15-1133 151133 Computer, Math
## 6941 15-1132 151132 Computer, Math
## 6942 15-1121 151121 Computer, Math
## 6943 15-1132 151132 Computer, Math
## 6944 15-1132 151132 Computer, Math
## 6945 15-1142 151142 Computer, Math
## 6946 15-1132 151132 Computer, Math
## 6947 15-1122 151122 Computer, Math
## 6948 15-1121 151121 Computer, Math
## 6949 19-1029 191029 Life, Physcial, Social Science
## 6950 15-1132 151132 Computer, Math
## 6951 15-1132 151132 Computer, Math
## 6952 13-1111 131111 Business, Finance
## 6953 15-1132 151132 Computer, Math
## 6954 15-1121 151121 Computer, Math
## 6955 15-1132 151132 Computer, Math
## 6956 15-1141 151141 Computer, Math
## 6957 15-1132 151132 Computer, Math
## 6958 15-1121 151121 Computer, Math
## 6959 15-1132 151132 Computer, Math
## 6960 15-2041 152041 Computer, Math
## 6961 15-1121 151121 Computer, Math
## 6962 13-2051 132051 Business, Finance
## 6963 15-1132 151132 Computer, Math
## 6964 15-1132 151132 Computer, Math
## 6965 15-1131 151131 Computer, Math
## 6966 15-1121 151121 Computer, Math
## 6967 13-1111 131111 Business, Finance
## 6968 15-1132 151132 Computer, Math
## 6969 15-1121 151121 Computer, Math
## 6970 15-1121 151121 Computer, Math
## 6971 15-1121 151121 Computer, Math
## 6972 15-1132 151132 Computer, Math
## 6973 15-1132 151132 Computer, Math
## 6974 15-2031 152031 Computer, Math
## 6975 17-2072 172072 Architecture, Engineer
## 6976 13-1111 131111 Business, Finance
## 6977 15-1132 151132 Computer, Math
## 6978 17-2112 172112 Architecture, Engineer
## 6979 15-1121 151121 Computer, Math
## 6980 15-1151 151151 Computer, Math
## 6981 15-1132 151132 Computer, Math
## 6982 15-1132 151132 Computer, Math
## 6983 15-1133 151133 Computer, Math
## 6984 17-2131 172131 Architecture, Engineer
## 6985 15-1199 151199 Computer, Math
## 6986 15-1132 151132 Computer, Math
## 6987 15-1132 151132 Computer, Math
## 6988 15-1121 151121 Computer, Math
## 6989 15-1199 151199 Computer, Math
## 6990 15-2031 152031 Computer, Math
## 6991 15-1132 151132 Computer, Math
## 6992 15-1132 151132 Computer, Math
## 6993 19-2032 192032 Life, Physcial, Social Science
## 6994 15-1132 151132 Computer, Math
## 6995 27-3091 273091 Media, Design
## 6996 15-1132 151132 Computer, Math
## 6997 13-2051 132051 Business, Finance
## 6998 15-1132 151132 Computer, Math
## 6999 15-1132 151132 Computer, Math
## 7000 15-1143 151143 Computer, Math
## 7001 15-1132 151132 Computer, Math
## 7002 15-2031 152031 Computer, Math
## 7003 29-1123 291123 Healthcare Practitioner
## 7004 15-1132 151132 Computer, Math
## 7005 15-1132 151132 Computer, Math
## 7006 15-1131 151131 Computer, Math
## 7007 15-1199 151199 Computer, Math
## 7008 15-1132 151132 Computer, Math
## 7009 15-1132 151132 Computer, Math
## 7010 15-1199 151199 Computer, Math
## 7011 15-1199 151199 Computer, Math
## 7012 15-1132 151132 Computer, Math
## 7013 27-1025 271025 Media, Design
## 7014 15-1199 151199 Computer, Math
## 7015 27-1022 271022 Media, Design
## 7016 15-1132 151132 Computer, Math
## 7017 17-2061 172061 Architecture, Engineer
## 7018 19-4021 194021 Life, Physcial, Social Science
## 7019 13-2099 132099 Business, Finance
## 7020 15-1142 151142 Computer, Math
## 7021 15-2031 152031 Computer, Math
## 7022 15-1133 151133 Computer, Math
## 7023 15-1132 151132 Computer, Math
## 7024 15-1132 151132 Computer, Math
## 7025 15-1132 151132 Computer, Math
## 7026 15-1199 151199 Computer, Math
## 7027 15-2041 152041 Computer, Math
## 7028 15-1133 151133 Computer, Math
## 7029 17-2072 172072 Architecture, Engineer
## 7030 15-1141 151141 Computer, Math
## 7031 15-1132 151132 Computer, Math
## 7032 13-1111 131111 Business, Finance
## 7033 19-2099 192099 Life, Physcial, Social Science
## 7034 11-9033 119033 Management
## 7035 15-1143 151143 Computer, Math
## 7036 15-1199 151199 Computer, Math
## 7037 15-1132 151132 Computer, Math
## 7038 19-3041 193041 Life, Physcial, Social Science
## 7039 15-2031 152031 Computer, Math
## 7040 13-2011 132011 Business, Finance
## 7041 15-1132 151132 Computer, Math
## 7042 15-1131 151131 Computer, Math
## 7043 13-1161 131161 Business, Finance
## 7044 15-1199 151199 Computer, Math
## 7045 15-1133 151133 Computer, Math
## 7046 15-2041 152041 Computer, Math
## 7047 15-1132 151132 Computer, Math
## 7048 15-1199 151199 Computer, Math
## 7049 15-1141 151141 Computer, Math
## 7050 15-2031 152031 Computer, Math
## 7051 15-1141 151141 Computer, Math
## 7052 15-1132 151132 Computer, Math
## 7053 15-1121 151121 Computer, Math
## 7054 15-1132 151132 Computer, Math
## 7055 15-1132 151132 Computer, Math
## 7056 15-1199 151199 Computer, Math
## 7057 15-1121 151121 Computer, Math
## 7058 15-1132 151132 Computer, Math
## 7059 15-2031 152031 Computer, Math
## 7060 13-1161 131161 Business, Finance
## 7061 15-1132 151132 Computer, Math
## 7062 15-1121 151121 Computer, Math
## 7063 15-1199 151199 Computer, Math
## 7064 15-1133 151133 Computer, Math
## 7065 15-1121 151121 Computer, Math
## 7066 15-1199 151199 Computer, Math
## 7067 15-1132 151132 Computer, Math
## 7068 19-1021 191021 Life, Physcial, Social Science
## 7069 15-1141 151141 Computer, Math
## 7070 13-2099 132099 Business, Finance
## 7071 15-1121 151121 Computer, Math
## 7072 15-1199 151199 Computer, Math
## 7073 15-1199 151199 Computer, Math
## 7074 13-2051 132051 Business, Finance
## 7075 15-1132 151132 Computer, Math
## 7076 15-1132 151132 Computer, Math
## 7077 15-1132 151132 Computer, Math
## 7078 11-1021 111021 Management
## 7079 15-1132 151132 Computer, Math
## 7080 15-1132 151132 Computer, Math
## 7081 17-2199 172199 Architecture, Engineer
## 7082 11-9199 119199 Management
## 7083 15-1132 151132 Computer, Math
## 7084 15-1199 151199 Computer, Math
## 7085 15-1132 151132 Computer, Math
## 7086 17-2072 172072 Architecture, Engineer
## 7087 17-2051 172051 Architecture, Engineer
## 7088 15-1121 151121 Computer, Math
## 7089 15-1199 151199 Computer, Math
## 7090 13-1071 131071 Business, Finance
## 7091 17-3013 173013 Architecture, Engineer
## 7092 15-2031 152031 Computer, Math
## 7093 15-1199 151199 Computer, Math
## 7094 13-1199 131199 Business, Finance
## 7095 15-1132 151132 Computer, Math
## 7096 15-1132 151132 Computer, Math
## 7097 15-1132 151132 Computer, Math
## 7098 15-1199 151199 Computer, Math
## 7099 15-1121 151121 Computer, Math
## 7100 15-1121 151121 Computer, Math
## 7101 11-9141 119141 Management
## 7102 15-1132 151132 Computer, Math
## 7103 15-1121 151121 Computer, Math
## 7104 15-1132 151132 Computer, Math
## 7105 13-2011 132011 Business, Finance
## 7106 15-1131 151131 Computer, Math
## 7107 13-2072 132072 Business, Finance
## 7108 15-1199 151199 Computer, Math
## 7109 15-1131 151131 Computer, Math
## 7110 15-1121 151121 Computer, Math
## 7111 19-2031 192031 Life, Physcial, Social Science
## 7112 17-2141 172141 Architecture, Engineer
## 7113 15-1142 151142 Computer, Math
## 7114 15-1132 151132 Computer, Math
## 7115 15-1121 151121 Computer, Math
## 7116 15-1133 151133 Computer, Math
## 7117 15-1121 151121 Computer, Math
## 7118 15-1121 151121 Computer, Math
## 7119 13-1161 131161 Business, Finance
## 7120 15-2031 152031 Computer, Math
## 7121 15-1111 151111 Computer, Math
## 7122 19-1042 191042 Life, Physcial, Social Science
## 7123 15-1132 151132 Computer, Math
## 7124 27-1024 271024 Media, Design
## 7125 15-1199 151199 Computer, Math
## 7126 13-2011 132011 Business, Finance
## 7127 13-1199 131199 Business, Finance
## 7128 15-1132 151132 Computer, Math
## 7129 15-1132 151132 Computer, Math
## 7130 15-1121 151121 Computer, Math
## 7131 11-2021 112021 Management
## 7132 15-1121 151121 Computer, Math
## 7133 17-2199 172199 Architecture, Engineer
## 7134 15-1132 151132 Computer, Math
## 7135 15-1132 151132 Computer, Math
## 7136 15-1121 151121 Computer, Math
## 7137 15-1121 151121 Computer, Math
## 7138 15-1132 151132 Computer, Math
## 7139 19-1042 191042 Life, Physcial, Social Science
## 7140 15-1121 151121 Computer, Math
## 7141 17-2131 172131 Architecture, Engineer
## 7142 15-1132 151132 Computer, Math
## 7143 15-1199 151199 Computer, Math
## 7144 29-1021 291021 Healthcare Practitioner
## 7145 15-1121 151121 Computer, Math
## 7146 13-2011 132011 Business, Finance
## 7147 15-1132 151132 Computer, Math
## 7148 15-1132 151132 Computer, Math
## 7149 43-4161 434161 Others
## 7150 15-1132 151132 Computer, Math
## 7151 15-1131 151131 Computer, Math
## 7152 15-1121 151121 Computer, Math
## 7153 15-1132 151132 Computer, Math
## 7154 15-2031 152031 Computer, Math
## 7155 15-1132 151132 Computer, Math
## 7156 15-1121 151121 Computer, Math
## 7157 15-1199 151199 Computer, Math
## 7158 13-2051 132051 Business, Finance
## 7159 15-1132 151132 Computer, Math
## 7160 15-1121 151121 Computer, Math
## 7161 15-1131 151131 Computer, Math
## 7162 25-1011 251011 Education, Training
## 7163 15-1199 151199 Computer, Math
## 7164 13-2051 132051 Business, Finance
## 7165 15-1133 151133 Computer, Math
## 7166 15-1132 151132 Computer, Math
## 7167 15-1121 151121 Computer, Math
## 7168 15-1132 151132 Computer, Math
## 7169 15-1132 151132 Computer, Math
## 7170 15-1121 151121 Computer, Math
## 7171 15-2041 152041 Computer, Math
## 7172 15-1199 151199 Computer, Math
## 7173 15-1132 151132 Computer, Math
## 7174 15-1199 151199 Computer, Math
## 7175 15-1199 151199 Computer, Math
## 7176 11-9021 119021 Management
## 7177 15-1132 151132 Computer, Math
## 7178 15-1133 151133 Computer, Math
## 7179 15-1131 151131 Computer, Math
## 7180 17-2141 172141 Architecture, Engineer
## 7181 15-1132 151132 Computer, Math
## 7182 15-1199 151199 Computer, Math
## 7183 17-2071 172071 Architecture, Engineer
## 7184 15-1132 151132 Computer, Math
## 7185 13-2051 132051 Business, Finance
## 7186 17-2131 172131 Architecture, Engineer
## 7187 15-1199 151199 Computer, Math
## 7188 15-1132 151132 Computer, Math
## 7189 13-2011 132011 Business, Finance
## 7190 29-1069 291069 Healthcare Practitioner
## 7191 15-1132 151132 Computer, Math
## 7192 17-2141 172141 Architecture, Engineer
## 7193 15-1132 151132 Computer, Math
## 7194 17-2112 172112 Architecture, Engineer
## 7195 15-1132 151132 Computer, Math
## 7196 15-1132 151132 Computer, Math
## 7197 15-1199 151199 Computer, Math
## 7198 15-1131 151131 Computer, Math
## 7199 17-2112 172112 Architecture, Engineer
## 7200 13-2051 132051 Business, Finance
## 7201 15-1132 151132 Computer, Math
## 7202 15-1132 151132 Computer, Math
## 7203 15-1121 151121 Computer, Math
## 7204 15-1121 151121 Computer, Math
## 7205 15-1132 151132 Computer, Math
## 7206 15-1132 151132 Computer, Math
## 7207 15-1132 151132 Computer, Math
## 7208 15-1132 151132 Computer, Math
## 7209 15-1199 151199 Computer, Math
## 7210 19-2031 192031 Life, Physcial, Social Science
## 7211 15-1132 151132 Computer, Math
## 7212 13-2099 132099 Business, Finance
## 7213 15-2041 152041 Computer, Math
## 7214 19-1023 191023 Life, Physcial, Social Science
## 7215 17-2112 172112 Architecture, Engineer
## 7216 15-1132 151132 Computer, Math
## 7217 15-1199 151199 Computer, Math
## 7218 15-1199 151199 Computer, Math
## 7219 17-3029.02 173029 Architecture, Engineer
## 7220 15-1132 151132 Computer, Math
## 7221 17-2171 172171 Architecture, Engineer
## 7222 19-1042 191042 Life, Physcial, Social Science
## 7223 13-1111 131111 Business, Finance
## 7224 15-1132 151132 Computer, Math
## 7225 15-1121 151121 Computer, Math
## 7226 15-1132 151132 Computer, Math
## 7227 15-1121 151121 Computer, Math
## 7228 13-1151 131151 Business, Finance
## 7229 11-9111 119111 Management
## 7230 15-1121 151121 Computer, Math
## 7231 15-1132 151132 Computer, Math
## 7232 17-2112 172112 Architecture, Engineer
## 7233 17-2141 172141 Architecture, Engineer
## 7234 15-1121 151121 Computer, Math
## 7235 17-2051 172051 Architecture, Engineer
## 7236 15-1132 151132 Computer, Math
## 7237 13-2011 132011 Business, Finance
## 7238 15-1132 151132 Computer, Math
## 7239 15-1132 151132 Computer, Math
## 7240 25-2021 252021 Education, Training
## 7241 15-1132 151132 Computer, Math
## 7242 15-1121 151121 Computer, Math
## 7243 29-2052 292052 Healthcare Practitioner
## 7244 15-1121 151121 Computer, Math
## 7245 15-1132 151132 Computer, Math
## 7246 27-3031 273031 Media, Design
## 7247 15-1132 151132 Computer, Math
## 7248 15-1199 151199 Computer, Math
## 7249 15-1131 151131 Computer, Math
## 7250 13-2051 132051 Business, Finance
## 7251 15-1131 151131 Computer, Math
## 7252 11-3021 113021 Management
## 7253 15-1142 151142 Computer, Math
## 7254 15-2041 152041 Computer, Math
## 7255 11-3031 113031 Management
## 7256 15-1133 151133 Computer, Math
## 7257 17-2141 172141 Architecture, Engineer
## 7258 15-1121 151121 Computer, Math
## 7259 13-1111 131111 Business, Finance
## 7260 15-1199 151199 Computer, Math
## 7261 15-1121 151121 Computer, Math
## 7262 29-2011 292011 Healthcare Practitioner
## 7263 15-1132 151132 Computer, Math
## 7264 29-1199 291199 Healthcare Practitioner
## 7265 15-1132 151132 Computer, Math
## 7266 15-1132 151132 Computer, Math
## 7267 15-1132 151132 Computer, Math
## 7268 15-1133 151133 Computer, Math
## 7269 15-2031 152031 Computer, Math
## 7270 15-1132 151132 Computer, Math
## 7271 15-1132 151132 Computer, Math
## 7272 15-1131 151131 Computer, Math
## 7273 17-2051 172051 Architecture, Engineer
## 7274 15-1132 151132 Computer, Math
## 7275 15-1121 151121 Computer, Math
## 7276 13-1111 131111 Business, Finance
## 7277 15-1132 151132 Computer, Math
## 7278 17-2141 172141 Architecture, Engineer
## 7279 15-1141 151141 Computer, Math
## 7280 15-1199 151199 Computer, Math
## 7281 15-1132 151132 Computer, Math
## 7282 15-1142 151142 Computer, Math
## 7283 15-1132 151132 Computer, Math
## 7284 19-1042 191042 Life, Physcial, Social Science
## 7285 15-1132 151132 Computer, Math
## 7286 15-1133 151133 Computer, Math
## 7287 15-1132 151132 Computer, Math
## 7288 15-1132 151132 Computer, Math
## 7289 15-1132 151132 Computer, Math
## 7290 15-1132 151132 Computer, Math
## 7291 13-2011 132011 Business, Finance
## 7292 13-1081 131081 Business, Finance
## 7293 15-1132 151132 Computer, Math
## 7294 15-1141 151141 Computer, Math
## 7295 17-2051 172051 Architecture, Engineer
## 7296 15-1199 151199 Computer, Math
## 7297 15-1131 151131 Computer, Math
## 7298 17-2072 172072 Architecture, Engineer
## 7299 15-1199 151199 Computer, Math
## 7300 15-1199 151199 Computer, Math
## 7301 15-1132 151132 Computer, Math
## 7302 15-1199 151199 Computer, Math
## 7303 15-1132 151132 Computer, Math
## 7304 15-1121 151121 Computer, Math
## 7305 11-9041 119041 Management
## 7306 15-1132 151132 Computer, Math
## 7307 15-1132 151132 Computer, Math
## 7308 17-2072 172072 Architecture, Engineer
## 7309 15-1131 151131 Computer, Math
## 7310 15-1132 151132 Computer, Math
## 7311 15-1199 151199 Computer, Math
## 7312 15-1142 151142 Computer, Math
## 7313 29-2011 292011 Healthcare Practitioner
## 7314 17-2072 172072 Architecture, Engineer
## 7315 15-1131 151131 Computer, Math
## 7316 15-1132 151132 Computer, Math
## 7317 15-1132 151132 Computer, Math
## 7318 17-2131 172131 Architecture, Engineer
## 7319 15-1132 151132 Computer, Math
## 7320 15-1133 151133 Computer, Math
## 7321 15-1132 151132 Computer, Math
## 7322 15-2041 152041 Computer, Math
## 7323 15-1132 151132 Computer, Math
## 7324 11-3021 113021 Management
## 7325 15-1133 151133 Computer, Math
## 7326 15-1132 151132 Computer, Math
## 7327 15-1121 151121 Computer, Math
## 7328 11-3021 113021 Management
## 7329 15-1132 151132 Computer, Math
## 7330 15-1132 151132 Computer, Math
## 7331 15-1133 151133 Computer, Math
## 7332 13-2041 132041 Business, Finance
## 7333 11-1021 111021 Management
## 7334 15-1141 151141 Computer, Math
## 7335 15-1132 151132 Computer, Math
## 7336 29-2011 292011 Healthcare Practitioner
## 7337 15-1121 151121 Computer, Math
## 7338 15-1132 151132 Computer, Math
## 7339 15-1121 151121 Computer, Math
## 7340 13-2051 132051 Business, Finance
## 7341 15-1132 151132 Computer, Math
## 7342 15-1121 151121 Computer, Math
## 7343 15-1132 151132 Computer, Math
## 7344 41-9031 419031 Sales
## 7345 15-1132 151132 Computer, Math
## 7346 15-1132 151132 Computer, Math
## 7347 15-1121 151121 Computer, Math
## 7348 15-1132 151132 Computer, Math
## 7349 13-2011 132011 Business, Finance
## 7350 15-1121 151121 Computer, Math
## 7351 17-3029 173029 Architecture, Engineer
## 7352 15-1133 151133 Computer, Math
## 7353 15-1132 151132 Computer, Math
## 7354 15-1121 151121 Computer, Math
## 7355 15-1199 151199 Computer, Math
## 7356 15-1133 151133 Computer, Math
## 7357 13-2011 132011 Business, Finance
## 7358 17-2072 172072 Architecture, Engineer
## 7359 13-1161 131161 Business, Finance
## 7360 17-2141 172141 Architecture, Engineer
## 7361 17-2071 172071 Architecture, Engineer
## 7362 13-2011 132011 Business, Finance
## 7363 15-1121 151121 Computer, Math
## 7364 17-2075 172075 Architecture, Engineer
## 7365 15-1134 151134 Computer, Math
## 7366 13-1161 131161 Business, Finance
## 7367 13-1041 131041 Business, Finance
## 7368 15-1132 151132 Computer, Math
## 7369 15-1132 151132 Computer, Math
## 7370 13-1111 131111 Business, Finance
## 7371 15-1134 151134 Computer, Math
## 7372 15-1132 151132 Computer, Math
## 7373 15-1121 151121 Computer, Math
## 7374 19-2021 192021 Life, Physcial, Social Science
## 7375 15-1133 151133 Computer, Math
## 7376 15-1132 151132 Computer, Math
## 7377 15-1133 151133 Computer, Math
## 7378 15-1133 151133 Computer, Math
## 7379 15-1131 151131 Computer, Math
## 7380 13-1111 131111 Business, Finance
## 7381 15-1132 151132 Computer, Math
## 7382 15-1132 151132 Computer, Math
## 7383 15-1199 151199 Computer, Math
## 7384 25-1063 251063 Education, Training
## 7385 15-1199 151199 Computer, Math
## 7386 17-2199 172199 Architecture, Engineer
## 7387 17-2141 172141 Architecture, Engineer
## 7388 15-1121 151121 Computer, Math
## 7389 11-3021 113021 Management
## 7390 15-1121 151121 Computer, Math
## 7391 17-2071 172071 Architecture, Engineer
## 7392 15-1132 151132 Computer, Math
## 7393 15-1121 151121 Computer, Math
## 7394 17-2112 172112 Architecture, Engineer
## 7395 15-1141 151141 Computer, Math
## 7396 15-1199 151199 Computer, Math
## 7397 15-1132 151132 Computer, Math
## 7398 15-1132 151132 Computer, Math
## 7399 15-1199 151199 Computer, Math
## 7400 15-1199 151199 Computer, Math
## 7401 15-1199 151199 Computer, Math
## 7402 17-2051 172051 Architecture, Engineer
## 7403 15-1121 151121 Computer, Math
## 7404 17-2199 172199 Architecture, Engineer
## 7405 15-1133 151133 Computer, Math
## 7406 15-2031 152031 Computer, Math
## 7407 15-1199 151199 Computer, Math
## 7408 15-2041 152041 Computer, Math
## 7409 15-1121 151121 Computer, Math
## 7410 15-1142 151142 Computer, Math
## 7411 15-1131 151131 Computer, Math
## 7412 15-1132 151132 Computer, Math
## 7413 13-1111 131111 Business, Finance
## 7414 51-9071 519071 Others
## 7415 27-1025 271025 Media, Design
## 7416 15-1132 151132 Computer, Math
## 7417 17-2199 172199 Architecture, Engineer
## 7418 15-1131 151131 Computer, Math
## 7419 15-1133 151133 Computer, Math
## 7420 15-1132 151132 Computer, Math
## 7421 15-1121 151121 Computer, Math
## 7422 41-9031 419031 Sales
## 7423 17-2011 172011 Architecture, Engineer
## 7424 19-1029 191029 Life, Physcial, Social Science
## 7425 15-1199 151199 Computer, Math
## 7426 15-2031 152031 Computer, Math
## 7427 15-1132 151132 Computer, Math
## 7428 15-1121 151121 Computer, Math
## 7429 15-1132 151132 Computer, Math
## 7430 15-1132 151132 Computer, Math
## 7431 13-1199 131199 Business, Finance
## 7432 15-1132 151132 Computer, Math
## 7433 25-1072 251072 Education, Training
## 7434 15-1133 151133 Computer, Math
## 7435 13-2051 132051 Business, Finance
## 7436 15-1132 151132 Computer, Math
## 7437 19-1042 191042 Life, Physcial, Social Science
## 7438 15-1132 151132 Computer, Math
## 7439 13-1111 131111 Business, Finance
## 7440 15-1132 151132 Computer, Math
## 7441 15-1132 151132 Computer, Math
## 7442 15-1132 151132 Computer, Math
## 7443 13-2051 132051 Business, Finance
## 7444 15-1132 151132 Computer, Math
## 7445 13-1111 131111 Business, Finance
## 7446 15-1132 151132 Computer, Math
## 7447 15-1121 151121 Computer, Math
## 7448 15-1132 151132 Computer, Math
## 7449 17-2141 172141 Architecture, Engineer
## 7450 15-1199 151199 Computer, Math
## 7451 13-2051 132051 Business, Finance
## 7452 15-1132 151132 Computer, Math
## 7453 15-1132 151132 Computer, Math
## 7454 25-2022 252022 Education, Training
## 7455 15-1134 151134 Computer, Math
## 7456 15-1199 151199 Computer, Math
## 7457 15-1132 151132 Computer, Math
## 7458 15-1121 151121 Computer, Math
## 7459 15-1199 151199 Computer, Math
## 7460 11-2022 112022 Management
## 7461 15-1132 151132 Computer, Math
## 7462 19-2042 192042 Life, Physcial, Social Science
## 7463 15-1132 151132 Computer, Math
## 7464 15-1132 151132 Computer, Math
## 7465 29-1123 291123 Healthcare Practitioner
## 7466 27-1021 271021 Media, Design
## 7467 15-1121 151121 Computer, Math
## 7468 15-1132 151132 Computer, Math
## 7469 15-1132 151132 Computer, Math
## 7470 17-2081 172081 Architecture, Engineer
## 7471 15-1199 151199 Computer, Math
## 7472 17-2112 172112 Architecture, Engineer
## 7473 15-1131 151131 Computer, Math
## 7474 15-1133 151133 Computer, Math
## 7475 15-1131 151131 Computer, Math
## 7476 15-1132 151132 Computer, Math
## 7477 11-2021 112021 Management
## 7478 15-1132 151132 Computer, Math
## 7479 21-1012 211012 Social Service
## 7480 13-2011 132011 Business, Finance
## 7481 13-2099 132099 Business, Finance
## 7482 15-2041 152041 Computer, Math
## 7483 15-1132 151132 Computer, Math
## 7484 27-2041 272041 Media, Design
## 7485 13-1111 131111 Business, Finance
## 7486 15-1132 151132 Computer, Math
## 7487 13-1071 131071 Business, Finance
## 7488 15-1132 151132 Computer, Math
## 7489 15-1132 151132 Computer, Math
## 7490 15-1121 151121 Computer, Math
## 7491 15-1132 151132 Computer, Math
## 7492 11-2021 112021 Management
## 7493 15-1132 151132 Computer, Math
## 7494 15-1199 151199 Computer, Math
## 7495 17-2199 172199 Architecture, Engineer
## 7496 15-1121 151121 Computer, Math
## 7497 29-2011 292011 Healthcare Practitioner
## 7498 15-1132 151132 Computer, Math
## 7499 15-1121 151121 Computer, Math
## 7500 15-1132 151132 Computer, Math
## 7501 15-1199 151199 Computer, Math
## 7502 15-1141 151141 Computer, Math
## 7503 15-1199 151199 Computer, Math
## 7504 15-1199 151199 Computer, Math
## 7505 15-1121 151121 Computer, Math
## 7506 13-1161 131161 Business, Finance
## 7507 15-1132 151132 Computer, Math
## 7508 15-1122 151122 Computer, Math
## 7509 15-1131 151131 Computer, Math
## 7510 25-1032 251032 Education, Training
## 7511 19-3011 193011 Life, Physcial, Social Science
## 7512 15-1132 151132 Computer, Math
## 7513 15-1133 151133 Computer, Math
## 7514 15-1133 151133 Computer, Math
## 7515 15-1199 151199 Computer, Math
## 7516 13-1071 131071 Business, Finance
## 7517 15-1199 151199 Computer, Math
## 7518 15-1132 151132 Computer, Math
## 7519 25-1021 251021 Education, Training
## 7520 17-2144 172144 Architecture, Engineer
## 7521 15-1142 151142 Computer, Math
## 7522 15-1199 151199 Computer, Math
## 7523 15-1132 151132 Computer, Math
## 7524 11-3071 113071 Management
## 7525 15-1121 151121 Computer, Math
## 7526 15-1132 151132 Computer, Math
## 7527 15-1132 151132 Computer, Math
## 7528 15-1132 151132 Computer, Math
## 7529 15-2031 152031 Computer, Math
## 7530 13-2051 132051 Business, Finance
## 7531 15-2031 152031 Computer, Math
## 7532 13-1161 131161 Business, Finance
## 7533 13-2051 132051 Business, Finance
## 7534 25-2022 252022 Education, Training
## 7535 17-2141 172141 Architecture, Engineer
## 7536 11-3021 113021 Management
## 7537 15-1142 151142 Computer, Math
## 7538 11-9111 119111 Management
## 7539 25-2053 252053 Education, Training
## 7540 17-2131 172131 Architecture, Engineer
## 7541 17-2112 172112 Architecture, Engineer
## 7542 15-1131 151131 Computer, Math
## 7543 15-1132 151132 Computer, Math
## 7544 15-1132 151132 Computer, Math
## 7545 15-1132 151132 Computer, Math
## 7546 15-1132 151132 Computer, Math
## 7547 15-1132 151132 Computer, Math
## 7548 15-2041 152041 Computer, Math
## 7549 13-2099 132099 Business, Finance
## 7550 15-1131 151131 Computer, Math
## 7551 15-1132 151132 Computer, Math
## 7552 15-1133 151133 Computer, Math
## 7553 15-1132 151132 Computer, Math
## 7554 15-1132 151132 Computer, Math
## 7555 15-1132 151132 Computer, Math
## 7556 13-2011 132011 Business, Finance
## 7557 15-1132 151132 Computer, Math
## 7558 15-1132 151132 Computer, Math
## 7559 15-1132 151132 Computer, Math
## 7560 15-1121 151121 Computer, Math
## 7561 29-1041 291041 Healthcare Practitioner
## 7562 15-1132 151132 Computer, Math
## 7563 15-1199 151199 Computer, Math
## 7564 29-1069 291069 Healthcare Practitioner
## 7565 15-1132 151132 Computer, Math
## 7566 29-1069 291069 Healthcare Practitioner
## 7567 15-1133 151133 Computer, Math
## 7568 15-1131 151131 Computer, Math
## 7569 15-1132 151132 Computer, Math
## 7570 15-1199 151199 Computer, Math
## 7571 15-1132 151132 Computer, Math
## 7572 15-1132 151132 Computer, Math
## 7573 15-1132 151132 Computer, Math
## 7574 15-1132 151132 Computer, Math
## 7575 15-1131 151131 Computer, Math
## 7576 17-2053 172053 Architecture, Engineer
## 7577 15-1199 151199 Computer, Math
## 7578 15-1131 151131 Computer, Math
## 7579 19-1042 191042 Life, Physcial, Social Science
## 7580 17-2072 172072 Architecture, Engineer
## 7581 17-2071 172071 Architecture, Engineer
## 7582 17-2081 172081 Architecture, Engineer
## 7583 15-1132 151132 Computer, Math
## 7584 11-3021 113021 Management
## 7585 15-1199 151199 Computer, Math
## 7586 29-9099 299099 Healthcare Practitioner
## 7587 15-2031 152031 Computer, Math
## 7588 17-2112 172112 Architecture, Engineer
## 7589 17-2131 172131 Architecture, Engineer
## 7590 41-9031 419031 Sales
## 7591 15-1132 151132 Computer, Math
## 7592 15-1132 151132 Computer, Math
## 7593 15-1131 151131 Computer, Math
## 7594 15-1131 151131 Computer, Math
## 7595 15-1199 151199 Computer, Math
## 7596 15-1199 151199 Computer, Math
## 7597 15-1121 151121 Computer, Math
## 7598 15-1121 151121 Computer, Math
## 7599 13-2011 132011 Business, Finance
## 7600 15-1132 151132 Computer, Math
## 7601 41-9031 419031 Sales
## 7602 15-1132 151132 Computer, Math
## 7603 19-2041 192041 Life, Physcial, Social Science
## 7604 13-2011 132011 Business, Finance
## 7605 15-1199 151199 Computer, Math
## 7606 15-1132 151132 Computer, Math
## 7607 15-1199 151199 Computer, Math
## 7608 15-1132 151132 Computer, Math
## 7609 15-1121 151121 Computer, Math
## 7610 15-1141 151141 Computer, Math
## 7611 15-1133 151133 Computer, Math
## 7612 15-1121 151121 Computer, Math
## 7613 15-1199 151199 Computer, Math
## 7614 15-1199 151199 Computer, Math
## 7615 11-3071 113071 Management
## 7616 15-1132 151132 Computer, Math
## 7617 15-1132 151132 Computer, Math
## 7618 11-3021 113021 Management
## 7619 15-2031 152031 Computer, Math
## 7620 15-1199 151199 Computer, Math
## 7621 15-1199 151199 Computer, Math
## 7622 15-1132 151132 Computer, Math
## 7623 15-1121 151121 Computer, Math
## 7624 15-1133 151133 Computer, Math
## 7625 15-1132 151132 Computer, Math
## 7626 15-1132 151132 Computer, Math
## 7627 15-1121 151121 Computer, Math
## 7628 15-1199 151199 Computer, Math
## 7629 15-1199 151199 Computer, Math
## 7630 25-1124 251124 Education, Training
## 7631 15-1131 151131 Computer, Math
## 7632 15-1132 151132 Computer, Math
## 7633 15-1141 151141 Computer, Math
## 7634 15-1121 151121 Computer, Math
## 7635 15-1132 151132 Computer, Math
## 7636 13-1111 131111 Business, Finance
## 7637 15-1199 151199 Computer, Math
## 7638 17-2141 172141 Architecture, Engineer
## 7639 15-1132 151132 Computer, Math
## 7640 15-1132 151132 Computer, Math
## 7641 15-1121 151121 Computer, Math
## 7642 15-1133 151133 Computer, Math
## 7643 15-1199 151199 Computer, Math
## 7644 11-9041 119041 Management
## 7645 15-1131 151131 Computer, Math
## 7646 15-1132 151132 Computer, Math
## 7647 15-1141 151141 Computer, Math
## 7648 15-1199 151199 Computer, Math
## 7649 15-1121 151121 Computer, Math
## 7650 15-1199 151199 Computer, Math
## 7651 15-1121 151121 Computer, Math
## 7652 29-1123 291123 Healthcare Practitioner
## 7653 21-1012 211012 Social Service
## 7654 15-1132 151132 Computer, Math
## 7655 15-1132 151132 Computer, Math
## 7656 15-1121 151121 Computer, Math
## 7657 15-1121 151121 Computer, Math
## 7658 29-1069 291069 Healthcare Practitioner
## 7659 15-1132 151132 Computer, Math
## 7660 15-1132 151132 Computer, Math
## 7661 13-1111 131111 Business, Finance
## 7662 15-1121 151121 Computer, Math
## 7663 15-1199 151199 Computer, Math
## 7664 15-1132 151132 Computer, Math
## 7665 15-1121 151121 Computer, Math
## 7666 13-1041 131041 Business, Finance
## 7667 15-1131 151131 Computer, Math
## 7668 15-1132 151132 Computer, Math
## 7669 15-1132 151132 Computer, Math
## 7670 15-1132 151132 Computer, Math
## 7671 13-1161 131161 Business, Finance
## 7672 27-1024 271024 Media, Design
## 7673 17-2072 172072 Architecture, Engineer
## 7674 15-1132 151132 Computer, Math
## 7675 15-1132 151132 Computer, Math
## 7676 15-1132 151132 Computer, Math
## 7677 13-1111 131111 Business, Finance
## 7678 15-1141 151141 Computer, Math
## 7679 15-1121 151121 Computer, Math
## 7680 15-1132 151132 Computer, Math
## 7681 15-1131 151131 Computer, Math
## 7682 13-1111 131111 Business, Finance
## 7683 19-3011 193011 Life, Physcial, Social Science
## 7684 17-2051 172051 Architecture, Engineer
## 7685 15-1121 151121 Computer, Math
## 7686 15-1121 151121 Computer, Math
## 7687 15-1132 151132 Computer, Math
## 7688 15-1121 151121 Computer, Math
## 7689 15-1121 151121 Computer, Math
## 7690 15-1132 151132 Computer, Math
## 7691 15-1199 151199 Computer, Math
## 7692 15-1132 151132 Computer, Math
## 7693 13-1051 131051 Business, Finance
## 7694 11-1011 111011 Management
## 7695 15-1199 151199 Computer, Math
## 7696 15-1132 151132 Computer, Math
## 7697 15-1122 151122 Computer, Math
## 7698 15-2031 152031 Computer, Math
## 7699 29-1069 291069 Healthcare Practitioner
## 7700 15-1034 151034 Computer, Math
## 7701 15-1121 151121 Computer, Math
## 7702 13-2031 132031 Business, Finance
## 7703 15-1132 151132 Computer, Math
## 7704 15-1132 151132 Computer, Math
## 7705 15-1199 151199 Computer, Math
## 7706 15-2041 152041 Computer, Math
## 7707 13-1111 131111 Business, Finance
## 7708 17-2141 172141 Architecture, Engineer
## 7709 15-1132 151132 Computer, Math
## 7710 15-1132 151132 Computer, Math
## 7711 15-1199 151199 Computer, Math
## 7712 15-1132 151132 Computer, Math
## 7713 15-1132 151132 Computer, Math
## 7714 13-1161 131161 Business, Finance
## 7715 15-1132 151132 Computer, Math
## 7716 13-1081 131081 Business, Finance
## 7717 15-1121 151121 Computer, Math
## 7718 15-1133 151133 Computer, Math
## 7719 15-2031 152031 Computer, Math
## 7720 15-1121 151121 Computer, Math
## 7721 15-1199 151199 Computer, Math
## 7722 15-1133 151133 Computer, Math
## 7723 15-2041 152041 Computer, Math
## 7724 15-1132 151132 Computer, Math
## 7725 15-1132 151132 Computer, Math
## 7726 15-1132 151132 Computer, Math
## 7727 15-1132 151132 Computer, Math
## 7728 15-1199 151199 Computer, Math
## 7729 15-1131 151131 Computer, Math
## 7730 15-1121 151121 Computer, Math
## 7731 17-2041 172041 Architecture, Engineer
## 7732 15-1132 151132 Computer, Math
## 7733 15-1132 151132 Computer, Math
## 7734 15-1132 151132 Computer, Math
## 7735 15-1131 151131 Computer, Math
## 7736 15-1132 151132 Computer, Math
## 7737 19-1029 191029 Life, Physcial, Social Science
## 7738 15-1131 151131 Computer, Math
## 7739 15-1132 151132 Computer, Math
## 7740 15-1131 151131 Computer, Math
## 7741 15-1132 151132 Computer, Math
## 7742 15-1132 151132 Computer, Math
## 7743 15-1121 151121 Computer, Math
## 7744 15-2031 152031 Computer, Math
## 7745 13-2051 132051 Business, Finance
## 7746 15-1199 151199 Computer, Math
## 7747 17-2072 172072 Architecture, Engineer
## 7748 15-1121 151121 Computer, Math
## 7749 15-1132 151132 Computer, Math
## 7750 15-1132 151132 Computer, Math
## 7751 15-1121 151121 Computer, Math
## 7752 15-1121 151121 Computer, Math
## 7753 19-1012 191012 Life, Physcial, Social Science
## 7754 13-1161 131161 Business, Finance
## 7755 15-1134 151134 Computer, Math
## 7756 15-1132 151132 Computer, Math
## 7757 15-1132 151132 Computer, Math
## 7758 15-1121 151121 Computer, Math
## 7759 13-2031 132031 Business, Finance
## 7760 13-2051 132051 Business, Finance
## 7761 15-1132 151132 Computer, Math
## 7762 15-1132 151132 Computer, Math
## 7763 15-1133 151133 Computer, Math
## 7764 13-2051 132051 Business, Finance
## 7765 15-1132 151132 Computer, Math
## 7766 15-1199 151199 Computer, Math
## 7767 15-1132 151132 Computer, Math
## 7768 41-9031 419031 Sales
## 7769 15-1121 151121 Computer, Math
## 7770 15-1121 151121 Computer, Math
## 7771 15-1132 151132 Computer, Math
## 7772 25-1071 251071 Education, Training
## 7773 15-1133 151133 Computer, Math
## 7774 15-1132 151132 Computer, Math
## 7775 15-1121 151121 Computer, Math
## 7776 15-1133 151133 Computer, Math
## 7777 15-1132 151132 Computer, Math
## 7778 13-1071 131071 Business, Finance
## 7779 15-1131 151131 Computer, Math
## 7780 15-1199 151199 Computer, Math
## 7781 41-9031 419031 Sales
## 7782 15-1132 151132 Computer, Math
## 7783 15-1133 151133 Computer, Math
## 7784 13-1111 131111 Business, Finance
## 7785 15-1132 151132 Computer, Math
## 7786 15-1132 151132 Computer, Math
## 7787 13-1161 131161 Business, Finance
## 7788 15-1132 151132 Computer, Math
## 7789 11-9041 119041 Management
## 7790 15-1142 151142 Computer, Math
## 7791 15-1132 151132 Computer, Math
## 7792 15-1199 151199 Computer, Math
## 7793 15-1121 151121 Computer, Math
## 7794 15-1121 151121 Computer, Math
## 7795 15-1132 151132 Computer, Math
## 7796 15-1034 151034 Computer, Math
## 7797 15-1121 151121 Computer, Math
## 7798 15-1199 151199 Computer, Math
## 7799 15-1199 151199 Computer, Math
## 7800 15-1121 151121 Computer, Math
## 7801 15-1132 151132 Computer, Math
## 7802 15-1132 151132 Computer, Math
## 7803 15-1132 151132 Computer, Math
## 7804 15-1199 151199 Computer, Math
## 7805 13-2051 132051 Business, Finance
## 7806 15-1199 151199 Computer, Math
## 7807 15-1121 151121 Computer, Math
## 7808 15-1121 151121 Computer, Math
## 7809 15-1132 151132 Computer, Math
## 7810 15-1132 151132 Computer, Math
## 7811 13-2051 132051 Business, Finance
## 7812 15-1132 151132 Computer, Math
## 7813 13-1111 131111 Business, Finance
## 7814 15-1121 151121 Computer, Math
## 7815 15-1132 151132 Computer, Math
## 7816 15-1132 151132 Computer, Math
## 7817 29-1066 291066 Healthcare Practitioner
## 7818 15-1121 151121 Computer, Math
## 7819 15-1132 151132 Computer, Math
## 7820 13-1111 131111 Business, Finance
## 7821 17-3023 173023 Architecture, Engineer
## 7822 17-2112 172112 Architecture, Engineer
## 7823 15-1132 151132 Computer, Math
## 7824 15-1121 151121 Computer, Math
## 7825 15-1132 151132 Computer, Math
## 7826 15-1199 151199 Computer, Math
## 7827 15-1121 151121 Computer, Math
## 7828 15-1121 151121 Computer, Math
## 7829 15-1132 151132 Computer, Math
## 7830 15-1132 151132 Computer, Math
## 7831 15-1132 151132 Computer, Math
## 7832 15-1133 151133 Computer, Math
## 7833 15-1132 151132 Computer, Math
## 7834 15-1199 151199 Computer, Math
## 7835 15-1132 151132 Computer, Math
## 7836 29-1065 291065 Healthcare Practitioner
## 7837 17-2199 172199 Architecture, Engineer
## 7838 15-1121 151121 Computer, Math
## 7839 15-1132 151132 Computer, Math
## 7840 15-1121 151121 Computer, Math
## 7841 15-1132 151132 Computer, Math
## 7842 15-1121 151121 Computer, Math
## 7843 15-1132 151132 Computer, Math
## 7844 15-2041 152041 Computer, Math
## 7845 15-1121 151121 Computer, Math
## 7846 15-1199 151199 Computer, Math
## 7847 27-3042 273042 Media, Design
## 7848 23-1011 231011 Legal
## 7849 15-1132 151132 Computer, Math
## 7850 15-1132 151132 Computer, Math
## 7851 25-1021 251021 Education, Training
## 7852 15-1132 151132 Computer, Math
## 7853 15-1121 151121 Computer, Math
## 7854 13-1081 131081 Business, Finance
## 7855 19-1042 191042 Life, Physcial, Social Science
## 7856 19-1029 191029 Life, Physcial, Social Science
## 7857 15-1142 151142 Computer, Math
## 7858 15-1199 151199 Computer, Math
## 7859 17-3011 173011 Architecture, Engineer
## 7860 15-1134 151134 Computer, Math
## 7861 15-1132 151132 Computer, Math
## 7862 15-1121 151121 Computer, Math
## 7863 15-1199 151199 Computer, Math
## 7864 15-1121 151121 Computer, Math
## 7865 15-1132 151132 Computer, Math
## 7866 15-1199 151199 Computer, Math
## 7867 15-1121 151121 Computer, Math
## 7868 13-1111 131111 Business, Finance
## 7869 15-1132 151132 Computer, Math
## 7870 15-1133 151133 Computer, Math
## 7871 15-1141 151141 Computer, Math
## 7872 15-1132 151132 Computer, Math
## 7873 25-2012 252012 Education, Training
## 7874 15-1133 151133 Computer, Math
## 7875 15-1133 151133 Computer, Math
## 7876 15-1121 151121 Computer, Math
## 7877 15-1121 151121 Computer, Math
## 7878 15-1121 151121 Computer, Math
## 7879 15-1121 151121 Computer, Math
## 7880 15-1133 151133 Computer, Math
## 7881 13-1111 131111 Business, Finance
## 7882 13-2011 132011 Business, Finance
## 7883 15-1131 151131 Computer, Math
## 7884 15-1121 151121 Computer, Math
## 7885 29-1122 291122 Healthcare Practitioner
## 7886 15-1199 151199 Computer, Math
## 7887 15-1132 151132 Computer, Math
## 7888 15-1133 151133 Computer, Math
## 7889 15-1132 151132 Computer, Math
## 7890 19-1042 191042 Life, Physcial, Social Science
## 7891 15-1199 151199 Computer, Math
## 7892 13-2051 132051 Business, Finance
## 7893 15-1142 151142 Computer, Math
## 7894 41-9031 419031 Sales
## 7895 25-2021 252021 Education, Training
## 7896 15-1121 151121 Computer, Math
## 7897 15-1132 151132 Computer, Math
## 7898 15-1121 151121 Computer, Math
## 7899 25-1071 251071 Education, Training
## 7900 15-1132 151132 Computer, Math
## 7901 15-1132 151132 Computer, Math
## 7902 15-1121 151121 Computer, Math
## 7903 15-1132 151132 Computer, Math
## 7904 17-2112 172112 Architecture, Engineer
## 7905 15-1132 151132 Computer, Math
## 7906 15-1132 151132 Computer, Math
## 7907 15-1132 151132 Computer, Math
## 7908 15-1199 151199 Computer, Math
## 7909 15-1142 151142 Computer, Math
## 7910 13-1111 131111 Business, Finance
## 7911 15-1132 151132 Computer, Math
## 7912 15-1199 151199 Computer, Math
## 7913 15-1133 151133 Computer, Math
## 7914 15-1142 151142 Computer, Math
## 7915 15-1132 151132 Computer, Math
## 7916 15-1132 151132 Computer, Math
## 7917 15-1199 151199 Computer, Math
## 7918 19-1021 191021 Life, Physcial, Social Science
## 7919 17-3011 173011 Architecture, Engineer
## 7920 15-1121 151121 Computer, Math
## 7921 17-2141 172141 Architecture, Engineer
## 7922 15-1132 151132 Computer, Math
## 7923 15-1199 151199 Computer, Math
## 7924 15-1132 151132 Computer, Math
## 7925 15-1132 151132 Computer, Math
## 7926 15-1121 151121 Computer, Math
## 7927 25-1071 251071 Education, Training
## 7928 27-3043 273043 Media, Design
## 7929 15-1132 151132 Computer, Math
## 7930 15-1132 151132 Computer, Math
## 7931 13-1081 131081 Business, Finance
## 7932 15-1132 151132 Computer, Math
## 7933 15-1132 151132 Computer, Math
## 7934 15-1132 151132 Computer, Math
## 7935 15-1141 151141 Computer, Math
## 7936 15-1132 151132 Computer, Math
## 7937 15-1132 151132 Computer, Math
## 7938 15-1133 151133 Computer, Math
## 7939 15-1121 151121 Computer, Math
## 7940 15-1132 151132 Computer, Math
## 7941 15-1121 151121 Computer, Math
## 7942 13-1111 131111 Business, Finance
## 7943 15-1132 151132 Computer, Math
## 7944 15-1132 151132 Computer, Math
## 7945 15-1133 151133 Computer, Math
## 7946 15-1132 151132 Computer, Math
## 7947 15-1132 151132 Computer, Math
## 7948 19-1042 191042 Life, Physcial, Social Science
## 7949 15-1133 151133 Computer, Math
## 7950 15-1132 151132 Computer, Math
## 7951 15-1132 151132 Computer, Math
## 7952 15-1132 151132 Computer, Math
## 7953 15-1121 151121 Computer, Math
## 7954 15-1121 151121 Computer, Math
## 7955 15-1132 151132 Computer, Math
## 7956 15-1132 151132 Computer, Math
## 7957 15-1133 151133 Computer, Math
## 7958 15-1131 151131 Computer, Math
## 7959 15-1132 151132 Computer, Math
## 7960 15-1121 151121 Computer, Math
## 7961 15-1132 151132 Computer, Math
## 7962 17-2061 172061 Architecture, Engineer
## 7963 15-1132 151132 Computer, Math
## 7964 15-1122 151122 Computer, Math
## 7965 15-1132 151132 Computer, Math
## 7966 15-1132 151132 Computer, Math
## 7967 15-1141 151141 Computer, Math
## 7968 15-1132 151132 Computer, Math
## 7969 15-1132 151132 Computer, Math
## 7970 15-1199 151199 Computer, Math
## 7971 15-1199 151199 Computer, Math
## 7972 15-1121 151121 Computer, Math
## 7973 15-1199 151199 Computer, Math
## 7974 15-1199 151199 Computer, Math
## 7975 15-1142 151142 Computer, Math
## 7976 15-1132 151132 Computer, Math
## 7977 19-1042 191042 Life, Physcial, Social Science
## 7978 15-1121 151121 Computer, Math
## 7979 17-2141 172141 Architecture, Engineer
## 7980 15-1132 151132 Computer, Math
## 7981 13-2099 132099 Business, Finance
## 7982 13-2011 132011 Business, Finance
## 7983 15-1199 151199 Computer, Math
## 7984 15-1133 151133 Computer, Math
## 7985 29-1069 291069 Healthcare Practitioner
## 7986 15-1141 151141 Computer, Math
## 7987 17-2141 172141 Architecture, Engineer
## 7988 17-2112 172112 Architecture, Engineer
## 7989 15-1141 151141 Computer, Math
## 7990 15-1132 151132 Computer, Math
## 7991 15-1111 151111 Computer, Math
## 7992 11-9041 119041 Management
## 7993 15-1134 151134 Computer, Math
## 7994 15-1134 151134 Computer, Math
## 7995 13-2051 132051 Business, Finance
## 7996 13-1161 131161 Business, Finance
## 7997 15-1132 151132 Computer, Math
## 7998 11-3021 113021 Management
## 7999 23-1011 231011 Legal
## 8000 15-1133 151133 Computer, Math
## 8001 15-1132 151132 Computer, Math
## 8002 27-1024 271024 Media, Design
## 8003 15-1121 151121 Computer, Math
## 8004 15-1133 151133 Computer, Math
## 8005 15-1131 151131 Computer, Math
## 8006 25-1022 251022 Education, Training
## 8007 15-1121 151121 Computer, Math
## 8008 15-1132 151132 Computer, Math
## 8009 15-1133 151133 Computer, Math
## 8010 17-2061 172061 Architecture, Engineer
## 8011 29-1021 291021 Healthcare Practitioner
## 8012 15-1143 151143 Computer, Math
## 8013 15-1141 151141 Computer, Math
## 8014 15-1199 151199 Computer, Math
## 8015 15-1199 151199 Computer, Math
## 8016 17-2072 172072 Architecture, Engineer
## 8017 17-2071 172071 Architecture, Engineer
## 8018 13-1111 131111 Business, Finance
## 8019 15-1141 151141 Computer, Math
## 8020 15-1121 151121 Computer, Math
## 8021 15-2031 152031 Computer, Math
## 8022 25-1071 251071 Education, Training
## 8023 15-1132 151132 Computer, Math
## 8024 41-9031 419031 Sales
## 8025 11-3021 113021 Management
## 8026 15-1132 151132 Computer, Math
## 8027 15-1121 151121 Computer, Math
## 8028 11-9033 119033 Management
## 8029 15-1121 151121 Computer, Math
## 8030 15-1132 151132 Computer, Math
## 8031 13-1111 131111 Business, Finance
## 8032 13-2051 132051 Business, Finance
## 8033 15-1132 151132 Computer, Math
## 8034 29-1069 291069 Healthcare Practitioner
## 8035 15-1132 151132 Computer, Math
## 8036 15-1132 151132 Computer, Math
## 8037 15-1133 151133 Computer, Math
## 8038 17-2051 172051 Architecture, Engineer
## 8039 19-1029 191029 Life, Physcial, Social Science
## 8040 11-9041 119041 Management
## 8041 15-1199 151199 Computer, Math
## 8042 17-2171 172171 Architecture, Engineer
## 8043 15-2091 152091 Computer, Math
## 8044 15-1132 151132 Computer, Math
## 8045 15-1199 151199 Computer, Math
## 8046 17-2071 172071 Architecture, Engineer
## 8047 11-3021 113021 Management
## 8048 15-1199 151199 Computer, Math
## 8049 15-1132 151132 Computer, Math
## 8050 15-1131 151131 Computer, Math
## 8051 15-1132 151132 Computer, Math
## 8052 15-1199 151199 Computer, Math
## 8053 15-1132 151132 Computer, Math
## 8054 15-1132 151132 Computer, Math
## 8055 29-1062 291062 Healthcare Practitioner
## 8056 15-1133 151133 Computer, Math
## 8057 15-1199 151199 Computer, Math
## 8058 29-9099 299099 Healthcare Practitioner
## 8059 15-1121 151121 Computer, Math
## 8060 15-2031 152031 Computer, Math
## 8061 15-1199 151199 Computer, Math
## 8062 17-2072 172072 Architecture, Engineer
## 8063 15-1121 151121 Computer, Math
## 8064 19-1022 191022 Life, Physcial, Social Science
## 8065 15-1132 151132 Computer, Math
## 8066 15-1132 151132 Computer, Math
## 8067 15-1132 151132 Computer, Math
## 8068 15-1121 151121 Computer, Math
## 8069 15-1132 151132 Computer, Math
## 8070 15-1199 151199 Computer, Math
## 8071 15-1121 151121 Computer, Math
## 8072 29-1123 291123 Healthcare Practitioner
## 8073 15-1131 151131 Computer, Math
## 8074 15-1122 151122 Computer, Math
## 8075 23-2011 232011 Legal
## 8076 15-1143 151143 Computer, Math
## 8077 15-1199 151199 Computer, Math
## 8078 15-1132 151132 Computer, Math
## 8079 13-2011 132011 Business, Finance
## 8080 15-1121 151121 Computer, Math
## 8081 13-2011 132011 Business, Finance
## 8082 15-1132 151132 Computer, Math
## 8083 19-1029 191029 Life, Physcial, Social Science
## 8084 15-1133 151133 Computer, Math
## 8085 15-1132 151132 Computer, Math
## 8086 15-1122 151122 Computer, Math
## 8087 15-1141 151141 Computer, Math
## 8088 15-1133 151133 Computer, Math
## 8089 11-2022 112022 Management
## 8090 29-1062 291062 Healthcare Practitioner
## 8091 15-1132 151132 Computer, Math
## 8092 29-2011 292011 Healthcare Practitioner
## 8093 15-1199 151199 Computer, Math
## 8094 15-1132 151132 Computer, Math
## 8095 15-1132 151132 Computer, Math
## 8096 17-2072 172072 Architecture, Engineer
## 8097 15-1132 151132 Computer, Math
## 8098 15-1199 151199 Computer, Math
## 8099 15-1132 151132 Computer, Math
## 8100 15-1132 151132 Computer, Math
## 8101 15-1132 151132 Computer, Math
## 8102 13-2011 132011 Business, Finance
## 8103 15-1132 151132 Computer, Math
## 8104 15-1111 151111 Computer, Math
## 8105 15-1141 151141 Computer, Math
## 8106 27-3022 273022 Media, Design
## 8107 27-1024 271024 Media, Design
## 8108 15-1199 151199 Computer, Math
## 8109 15-2041 152041 Computer, Math
## 8110 17-2199 172199 Architecture, Engineer
## 8111 15-1131 151131 Computer, Math
## 8112 13-2099 132099 Business, Finance
## 8113 25-1054 251054 Education, Training
## 8114 15-2041 152041 Computer, Math
## 8115 17-2031 172031 Architecture, Engineer
## 8116 15-1132 151132 Computer, Math
## 8117 13-2011 132011 Business, Finance
## 8118 29-2011 292011 Healthcare Practitioner
## 8119 15-1122 151122 Computer, Math
## 8120 15-1132 151132 Computer, Math
## 8121 11-3071 113071 Management
## 8122 15-1132 151132 Computer, Math
## 8123 15-1142 151142 Computer, Math
## 8124 17-2141 172141 Architecture, Engineer
## 8125 15-1199 151199 Computer, Math
## 8126 17-2199 172199 Architecture, Engineer
## 8127 15-1141 151141 Computer, Math
## 8128 15-1199 151199 Computer, Math
## 8129 15-1199 151199 Computer, Math
## 8130 15-1121 151121 Computer, Math
## 8131 15-1142 151142 Computer, Math
## 8132 15-1199 151199 Computer, Math
## 8133 15-1132 151132 Computer, Math
## 8134 15-1121 151121 Computer, Math
## 8135 15-1141 151141 Computer, Math
## 8136 15-1133 151133 Computer, Math
## 8137 13-1111 131111 Business, Finance
## 8138 15-1132 151132 Computer, Math
## 8139 29-1065 291065 Healthcare Practitioner
## 8140 15-1121 151121 Computer, Math
## 8141 15-1132 151132 Computer, Math
## 8142 15-1132 151132 Computer, Math
## 8143 15-1131 151131 Computer, Math
## 8144 15-1132 151132 Computer, Math
## 8145 19-2031 192031 Life, Physcial, Social Science
## 8146 13-2011 132011 Business, Finance
## 8147 27-3031 273031 Media, Design
## 8148 15-1132 151132 Computer, Math
## 8149 15-1199 151199 Computer, Math
## 8150 15-1121 151121 Computer, Math
## 8151 15-1132 151132 Computer, Math
## 8152 15-1133 151133 Computer, Math
## 8153 15-1121 151121 Computer, Math
## 8154 13-1111 131111 Business, Finance
## 8155 15-2041 152041 Computer, Math
## 8156 15-1121 151121 Computer, Math
## 8157 13-1161 131161 Business, Finance
## 8158 29-1069 291069 Healthcare Practitioner
## 8159 15-1121 151121 Computer, Math
## 8160 17-2071 172071 Architecture, Engineer
## 8161 15-1121 151121 Computer, Math
## 8162 15-1121 151121 Computer, Math
## 8163 15-1132 151132 Computer, Math
## 8164 15-1199 151199 Computer, Math
## 8165 13-1111 131111 Business, Finance
## 8166 13-1111 131111 Business, Finance
## 8167 11-3021 113021 Management
## 8168 15-2031 152031 Computer, Math
## 8169 15-1132 151132 Computer, Math
## 8170 15-1132 151132 Computer, Math
## 8171 15-1132 151132 Computer, Math
## 8172 17-2141 172141 Architecture, Engineer
## 8173 19-4021 194021 Life, Physcial, Social Science
## 8174 15-1199 151199 Computer, Math
## 8175 15-1121 151121 Computer, Math
## 8176 19-1042 191042 Life, Physcial, Social Science
## 8177 15-1131 151131 Computer, Math
## 8178 11-9199 119199 Management
## 8179 15-1121 151121 Computer, Math
## 8180 15-1199 151199 Computer, Math
## 8181 15-1131 151131 Computer, Math
## 8182 19-1021 191021 Life, Physcial, Social Science
## 8183 15-1121 151121 Computer, Math
## 8184 15-1131 151131 Computer, Math
## 8185 15-2041 152041 Computer, Math
## 8186 15-1141 151141 Computer, Math
## 8187 15-2031 152031 Computer, Math
## 8188 15-1199 151199 Computer, Math
## 8189 13-2051 132051 Business, Finance
## 8190 13-2099 132099 Business, Finance
## 8191 15-1132 151132 Computer, Math
## 8192 15-1132 151132 Computer, Math
## 8193 15-1121 151121 Computer, Math
## 8194 29-1131 291131 Healthcare Practitioner
## 8195 15-1132 151132 Computer, Math
## 8196 15-1142 151142 Computer, Math
## 8197 15-1131 151131 Computer, Math
## 8198 15-1132 151132 Computer, Math
## 8199 15-1121 151121 Computer, Math
## 8200 15-1121 151121 Computer, Math
## 8201 25-2021 252021 Education, Training
## 8202 15-1132 151132 Computer, Math
## 8203 15-1121 151121 Computer, Math
## 8204 19-2031 192031 Life, Physcial, Social Science
## 8205 15-1199 151199 Computer, Math
## 8206 15-1132 151132 Computer, Math
## 8207 15-1121 151121 Computer, Math
## 8208 13-1111 131111 Business, Finance
## 8209 15-1199 151199 Computer, Math
## 8210 15-1132 151132 Computer, Math
## 8211 15-1132 151132 Computer, Math
## 8212 19-3011 193011 Life, Physcial, Social Science
## 8213 15-1132 151132 Computer, Math
## 8214 15-1121 151121 Computer, Math
## 8215 15-1132 151132 Computer, Math
## 8216 13-1081 131081 Business, Finance
## 8217 11-2011 112011 Management
## 8218 15-1199 151199 Computer, Math
## 8219 15-1132 151132 Computer, Math
## 8220 15-1121 151121 Computer, Math
## 8221 15-1132 151132 Computer, Math
## 8222 15-1121 151121 Computer, Math
## 8223 17-2141 172141 Architecture, Engineer
## 8224 25-1124 251124 Education, Training
## 8225 15-1131 151131 Computer, Math
## 8226 15-1132 151132 Computer, Math
## 8227 15-1132 151132 Computer, Math
## 8228 25-2021 252021 Education, Training
## 8229 15-2031 152031 Computer, Math
## 8230 15-1131 151131 Computer, Math
## 8231 15-1133 151133 Computer, Math
## 8232 15-2041 152041 Computer, Math
## 8233 13-2011 132011 Business, Finance
## 8234 15-1132 151132 Computer, Math
## 8235 25-1071.00 251071 Education, Training
## 8236 19-3011 193011 Life, Physcial, Social Science
## 8237 15-1142 151142 Computer, Math
## 8238 15-1121 151121 Computer, Math
## 8239 13-1111 131111 Business, Finance
## 8240 15-1199 151199 Computer, Math
## 8241 15-1199 151199 Computer, Math
## 8242 15-1121 151121 Computer, Math
## 8243 15-1131 151131 Computer, Math
## 8244 15-1133 151133 Computer, Math
## 8245 19-3011 193011 Life, Physcial, Social Science
## 8246 15-1121 151121 Computer, Math
## 8247 15-1132 151132 Computer, Math
## 8248 11-9151 119151 Management
## 8249 15-1132 151132 Computer, Math
## 8250 17-2141 172141 Architecture, Engineer
## 8251 15-1132 151132 Computer, Math
## 8252 15-1121 151121 Computer, Math
## 8253 15-1199 151199 Computer, Math
## 8254 15-2031 152031 Computer, Math
## 8255 13-2051 132051 Business, Finance
## 8256 17-2072 172072 Architecture, Engineer
## 8257 15-1199 151199 Computer, Math
## 8258 13-2011 132011 Business, Finance
## 8259 17-2052 172052 Architecture, Engineer
## 8260 11-2021 112021 Management
## 8261 15-2041 152041 Computer, Math
## 8262 15-1132 151132 Computer, Math
## 8263 15-1132 151132 Computer, Math
## 8264 15-1121 151121 Computer, Math
## 8265 15-1132 151132 Computer, Math
## 8266 15-1121 151121 Computer, Math
## 8267 15-1199 151199 Computer, Math
## 8268 15-1131 151131 Computer, Math
## 8269 15-1199 151199 Computer, Math
## 8270 17-2141 172141 Architecture, Engineer
## 8271 15-1132 151132 Computer, Math
## 8272 15-1132 151132 Computer, Math
## 8273 27-3031 273031 Media, Design
## 8274 15-1132 151132 Computer, Math
## 8275 13-1111 131111 Business, Finance
## 8276 19-2042 192042 Life, Physcial, Social Science
## 8277 15-1131 151131 Computer, Math
## 8278 27-3099 273099 Media, Design
## 8279 15-1132 151132 Computer, Math
## 8280 13-1111 131111 Business, Finance
## 8281 15-1121 151121 Computer, Math
## 8282 15-1132 151132 Computer, Math
## 8283 15-1132 151132 Computer, Math
## 8284 15-1133 151133 Computer, Math
## 8285 15-1131 151131 Computer, Math
## 8286 15-1121 151121 Computer, Math
## 8287 13-2099 132099 Business, Finance
## 8288 13-1111 131111 Business, Finance
## 8289 19-1042 191042 Life, Physcial, Social Science
## 8290 15-1132 151132 Computer, Math
## 8291 15-1132 151132 Computer, Math
## 8292 17-2071 172071 Architecture, Engineer
## 8293 15-1132 151132 Computer, Math
## 8294 17-2051 172051 Architecture, Engineer
## 8295 15-1199 151199 Computer, Math
## 8296 15-1132 151132 Computer, Math
## 8297 15-1199 151199 Computer, Math
## 8298 15-1132 151132 Computer, Math
## 8299 15-1199 151199 Computer, Math
## 8300 19-2031 192031 Life, Physcial, Social Science
## 8301 17-2141 172141 Architecture, Engineer
## 8302 15-1121 151121 Computer, Math
## 8303 15-1132 151132 Computer, Math
## 8304 15-1199 151199 Computer, Math
## 8305 15-1133 151133 Computer, Math
## 8306 17-2141 172141 Architecture, Engineer
## 8307 15-1131 151131 Computer, Math
## 8308 17-2051 172051 Architecture, Engineer
## 8309 17-2112 172112 Architecture, Engineer
## 8310 15-1132 151132 Computer, Math
## 8311 15-1121 151121 Computer, Math
## 8312 15-1132 151132 Computer, Math
## 8313 15-1121 151121 Computer, Math
## 8314 27-1021 271021 Media, Design
## 8315 13-2011 132011 Business, Finance
## 8316 19-4021 194021 Life, Physcial, Social Science
## 8317 15-1121 151121 Computer, Math
## 8318 15-1134 151134 Computer, Math
## 8319 29-1021 291021 Healthcare Practitioner
## 8320 27-1024 271024 Media, Design
## 8321 17-2141 172141 Architecture, Engineer
## 8322 15-1142 151142 Computer, Math
## 8323 15-1132 151132 Computer, Math
## 8324 17-2071 172071 Architecture, Engineer
## 8325 15-2031 152031 Computer, Math
## 8326 29-1122 291122 Healthcare Practitioner
## 8327 17-2141 172141 Architecture, Engineer
## 8328 15-1121 151121 Computer, Math
## 8329 15-1121 151121 Computer, Math
## 8330 25-1071 251071 Education, Training
## 8331 15-1142 151142 Computer, Math
## 8332 13-2051 132051 Business, Finance
## 8333 29-1141 291141 Healthcare Practitioner
## 8334 13-2031 132031 Business, Finance
## 8335 15-1133 151133 Computer, Math
## 8336 15-1121 151121 Computer, Math
## 8337 19-2012 192012 Life, Physcial, Social Science
## 8338 15-1142 151142 Computer, Math
## 8339 15-1141 151141 Computer, Math
## 8340 25-1042 251042 Education, Training
## 8341 15-1132 151132 Computer, Math
## 8342 15-1132 151132 Computer, Math
## 8343 15-1133 151133 Computer, Math
## 8344 15-1132 151132 Computer, Math
## 8345 13-2051 132051 Business, Finance
## 8346 15-1132 151132 Computer, Math
## 8347 15-1132 151132 Computer, Math
## 8348 15-1132 151132 Computer, Math
## 8349 15-1132 151132 Computer, Math
## 8350 11-3031 113031 Management
## 8351 15-1132 151132 Computer, Math
## 8352 19-1031 191031 Life, Physcial, Social Science
## 8353 11-2011 112011 Management
## 8354 15-1199 151199 Computer, Math
## 8355 15-1199 151199 Computer, Math
## 8356 15-1132 151132 Computer, Math
## 8357 15-1199 151199 Computer, Math
## 8358 15-1132 151132 Computer, Math
## 8359 17-2051 172051 Architecture, Engineer
## 8360 15-2011 152011 Computer, Math
## 8361 15-1132 151132 Computer, Math
## 8362 19-1042 191042 Life, Physcial, Social Science
## 8363 15-1132 151132 Computer, Math
## 8364 15-1132 151132 Computer, Math
## 8365 15-1121 151121 Computer, Math
## 8366 15-1121 151121 Computer, Math
## 8367 13-2051 132051 Business, Finance
## 8368 15-1199 151199 Computer, Math
## 8369 15-1132 151132 Computer, Math
## 8370 17-2141 172141 Architecture, Engineer
## 8371 15-1132 151132 Computer, Math
## 8372 17-2072 172072 Architecture, Engineer
## 8373 15-2041 152041 Computer, Math
## 8374 15-1131 151131 Computer, Math
## 8375 17-2141 172141 Architecture, Engineer
## 8376 15-1121 151121 Computer, Math
## 8377 29-2011 292011 Healthcare Practitioner
## 8378 15-1132 151132 Computer, Math
## 8379 15-1132 151132 Computer, Math
## 8380 13-2031 132031 Business, Finance
## 8381 15-1132 151132 Computer, Math
## 8382 17-2071 172071 Architecture, Engineer
## 8383 15-1142 151142 Computer, Math
## 8384 15-1142 151142 Computer, Math
## 8385 15-1132 151132 Computer, Math
## 8386 15-2031 152031 Computer, Math
## 8387 15-1121 151121 Computer, Math
## 8388 41-9031 419031 Sales
## 8389 15-1121 151121 Computer, Math
## 8390 17-2071 172071 Architecture, Engineer
## 8391 15-1134 151134 Computer, Math
## 8392 17-2051 172051 Architecture, Engineer
## 8393 29-1065 291065 Healthcare Practitioner
## 8394 15-1132 151132 Computer, Math
## 8395 15-1121 151121 Computer, Math
## 8396 15-1199 151199 Computer, Math
## 8397 15-1121 151121 Computer, Math
## 8398 17-2141 172141 Architecture, Engineer
## 8399 15-1132 151132 Computer, Math
## 8400 15-1132 151132 Computer, Math
## 8401 15-1121 151121 Computer, Math
## 8402 29-1051 291051 Healthcare Practitioner
## 8403 11-2021 112021 Management
## 8404 15-1199 151199 Computer, Math
## 8405 15-1132 151132 Computer, Math
## 8406 15-1199 151199 Computer, Math
## 8407 29-1127 291127 Healthcare Practitioner
## 8408 15-1199 151199 Computer, Math
## 8409 13-1161 131161 Business, Finance
## 8410 17-2061 172061 Architecture, Engineer
## 8411 15-1132 151132 Computer, Math
## 8412 15-2041 152041 Computer, Math
## 8413 29-1127 291127 Healthcare Practitioner
## 8414 15-1132 151132 Computer, Math
## 8415 15-1132 151132 Computer, Math
## 8416 15-1132 151132 Computer, Math
## 8417 15-1132 151132 Computer, Math
## 8418 15-1121 151121 Computer, Math
## 8419 15-1143 151143 Computer, Math
## 8420 15-1199 151199 Computer, Math
## 8421 17-3011 173011 Architecture, Engineer
## 8422 15-1152 151152 Computer, Math
## 8423 15-1121 151121 Computer, Math
## 8424 15-1133 151133 Computer, Math
## 8425 15-1132 151132 Computer, Math
## 8426 15-1121 151121 Computer, Math
## 8427 15-1121 151121 Computer, Math
## 8428 15-1132 151132 Computer, Math
## 8429 15-1199 151199 Computer, Math
## 8430 15-1199 151199 Computer, Math
## 8431 15-1132 151132 Computer, Math
## 8432 15-1199 151199 Computer, Math
## 8433 15-1132 151132 Computer, Math
## 8434 15-1132 151132 Computer, Math
## 8435 15-1141 151141 Computer, Math
## 8436 13-2051 132051 Business, Finance
## 8437 15-1132 151132 Computer, Math
## 8438 41-9031 419031 Sales
## 8439 15-1199 151199 Computer, Math
## 8440 17-1021 171021 Architecture, Engineer
## 8441 19-1013 191013 Life, Physcial, Social Science
## 8442 15-1141 151141 Computer, Math
## 8443 15-1133 151133 Computer, Math
## 8444 15-1199 151199 Computer, Math
## 8445 15-1132 151132 Computer, Math
## 8446 15-1132 151132 Computer, Math
## 8447 17-2071 172071 Architecture, Engineer
## 8448 15-1132 151132 Computer, Math
## 8449 19-2012 192012 Life, Physcial, Social Science
## 8450 15-1199 151199 Computer, Math
## 8451 15-1132 151132 Computer, Math
## 8452 15-1121 151121 Computer, Math
## 8453 15-1121 151121 Computer, Math
## 8454 13-2011 132011 Business, Finance
## 8455 15-2031 152031 Computer, Math
## 8456 13-1111 131111 Business, Finance
## 8457 15-1141 151141 Computer, Math
## 8458 15-1199 151199 Computer, Math
## 8459 13-2031 132031 Business, Finance
## 8460 41-9031 419031 Sales
## 8461 13-2011 132011 Business, Finance
## 8462 15-1132 151132 Computer, Math
## 8463 15-1121 151121 Computer, Math
## 8464 15-1132 151132 Computer, Math
## 8465 15-2041 152041 Computer, Math
## 8466 17-2072 172072 Architecture, Engineer
## 8467 27-3041 273041 Media, Design
## 8468 15-1132 151132 Computer, Math
## 8469 15-1053 151053 Computer, Math
## 8470 15-1199 151199 Computer, Math
## 8471 15-1121 151121 Computer, Math
## 8472 15-2041 152041 Computer, Math
## 8473 15-1132 151132 Computer, Math
## 8474 15-1121 151121 Computer, Math
## 8475 15-1132 151132 Computer, Math
## 8476 15-1131 151131 Computer, Math
## 8477 15-1132 151132 Computer, Math
## 8478 15-1132 151132 Computer, Math
## 8479 15-1132 151132 Computer, Math
## 8480 15-1132 151132 Computer, Math
## 8481 17-2141 172141 Architecture, Engineer
## 8482 15-1132 151132 Computer, Math
## 8483 15-1199 151199 Computer, Math
## 8484 15-1132 151132 Computer, Math
## 8485 15-1132 151132 Computer, Math
## 8486 15-1121 151121 Computer, Math
## 8487 15-1142 151142 Computer, Math
## 8488 11-3021 113021 Management
## 8489 13-2099 132099 Business, Finance
## 8490 17-2061 172061 Architecture, Engineer
## 8491 19-3011 193011 Life, Physcial, Social Science
## 8492 15-1132 151132 Computer, Math
## 8493 15-1132 151132 Computer, Math
## 8494 15-1199 151199 Computer, Math
## 8495 15-1141 151141 Computer, Math
## 8496 13-2051 132051 Business, Finance
## 8497 19-2042 192042 Life, Physcial, Social Science
## 8498 17-2071 172071 Architecture, Engineer
## 8499 13-2072 132072 Business, Finance
## 8500 15-1132 151132 Computer, Math
## 8501 15-1121 151121 Computer, Math
## 8502 15-1132 151132 Computer, Math
## 8503 15-1132 151132 Computer, Math
## 8504 15-1142 151142 Computer, Math
## 8505 15-1143 151143 Computer, Math
## 8506 15-1132 151132 Computer, Math
## 8507 15-1199 151199 Computer, Math
## 8508 25-2012 252012 Education, Training
## 8509 13-1111 131111 Business, Finance
## 8510 15-1132 151132 Computer, Math
## 8511 15-1132 151132 Computer, Math
## 8512 25-2031 252031 Education, Training
## 8513 17-2141 172141 Architecture, Engineer
## 8514 15-1132 151132 Computer, Math
## 8515 13-1161 131161 Business, Finance
## 8516 15-1131 151131 Computer, Math
## 8517 11-1021 111021 Management
## 8518 15-1121 151121 Computer, Math
## 8519 15-1199 151199 Computer, Math
## 8520 15-1199 151199 Computer, Math
## 8521 25-1011 251011 Education, Training
## 8522 15-1132 151132 Computer, Math
## 8523 29-9099 299099 Healthcare Practitioner
## 8524 15-1133 151133 Computer, Math
## 8525 17-2071 172071 Architecture, Engineer
## 8526 15-1131 151131 Computer, Math
## 8527 25-1125 251125 Education, Training
## 8528 15-1132 151132 Computer, Math
## 8529 15-1131 151131 Computer, Math
## 8530 15-1121 151121 Computer, Math
## 8531 15-1199 151199 Computer, Math
## 8532 15-1132 151132 Computer, Math
## 8533 15-1132 151132 Computer, Math
## 8534 15-1121 151121 Computer, Math
## 8535 11-3021 113021 Management
## 8536 25-1021 251021 Education, Training
## 8537 15-1132 151132 Computer, Math
## 8538 13-2011 132011 Business, Finance
## 8539 15-1132 151132 Computer, Math
## 8540 15-1199 151199 Computer, Math
## 8541 13-1111 131111 Business, Finance
## 8542 15-1132 151132 Computer, Math
## 8543 15-1132 151132 Computer, Math
## 8544 15-1121 151121 Computer, Math
## 8545 13-1111 131111 Business, Finance
## 8546 19-3051 193051 Life, Physcial, Social Science
## 8547 15-1142 151142 Computer, Math
## 8548 11-3021 113021 Management
## 8549 15-1132 151132 Computer, Math
## 8550 15-1132 151132 Computer, Math
## 8551 11-9111 119111 Management
## 8552 15-2041 152041 Computer, Math
## 8553 15-1122 151122 Computer, Math
## 8554 11-3071 113071 Management
## 8555 15-1132 151132 Computer, Math
## 8556 15-1133 151133 Computer, Math
## 8557 15-2041 152041 Computer, Math
## 8558 17-2072 172072 Architecture, Engineer
## 8559 17-2051 172051 Architecture, Engineer
## 8560 15-1131 151131 Computer, Math
## 8561 15-1132 151132 Computer, Math
## 8562 15-1199 151199 Computer, Math
## 8563 19-3011 193011 Life, Physcial, Social Science
## 8564 17-2112 172112 Architecture, Engineer
## 8565 15-1132 151132 Computer, Math
## 8566 15-1132 151132 Computer, Math
## 8567 15-2041 152041 Computer, Math
## 8568 15-1132 151132 Computer, Math
## 8569 15-1199 151199 Computer, Math
## 8570 17-2072 172072 Architecture, Engineer
## 8571 15-1121 151121 Computer, Math
## 8572 15-1134 151134 Computer, Math
## 8573 11-1021 111021 Management
## 8574 15-1132 151132 Computer, Math
## 8575 13-2099 132099 Business, Finance
## 8576 17-2199 172199 Architecture, Engineer
## 8577 15-1141 151141 Computer, Math
## 8578 13-2051 132051 Business, Finance
## 8579 15-1199 151199 Computer, Math
## 8580 15-1132 151132 Computer, Math
## 8581 25-1081 251081 Education, Training
## 8582 27-1021 271021 Media, Design
## 8583 15-1121 151121 Computer, Math
## 8584 29-1041 291041 Healthcare Practitioner
## 8585 15-1121 151121 Computer, Math
## 8586 15-1132 151132 Computer, Math
## 8587 15-1132 151132 Computer, Math
## 8588 25-1022 251022 Education, Training
## 8589 15-1132 151132 Computer, Math
## 8590 15-2031 152031 Computer, Math
## 8591 15-1132 151132 Computer, Math
## 8592 25-1063 251063 Education, Training
## 8593 15-1143 151143 Computer, Math
## 8594 13-1111 131111 Business, Finance
## 8595 15-1132 151132 Computer, Math
## 8596 13-2099 132099 Business, Finance
## 8597 15-1132 151132 Computer, Math
## 8598 13-2051 132051 Business, Finance
## 8599 19-1042 191042 Life, Physcial, Social Science
## 8600 15-1121 151121 Computer, Math
## 8601 15-1199 151199 Computer, Math
## 8602 11-3021 113021 Management
## 8603 15-1199 151199 Computer, Math
## 8604 15-1141 151141 Computer, Math
## 8605 15-1133 151133 Computer, Math
## 8606 15-1133 151133 Computer, Math
## 8607 15-1121 151121 Computer, Math
## 8608 15-1132 151132 Computer, Math
## 8609 13-2051 132051 Business, Finance
## 8610 29-1123 291123 Healthcare Practitioner
## 8611 15-1132 151132 Computer, Math
## 8612 13-2051 132051 Business, Finance
## 8613 15-1121 151121 Computer, Math
## 8614 15-1199 151199 Computer, Math
## 8615 15-1132 151132 Computer, Math
## 8616 15-1132 151132 Computer, Math
## 8617 17-2071 172071 Architecture, Engineer
## 8618 15-2031 152031 Computer, Math
## 8619 13-1161 131161 Business, Finance
## 8620 15-1121 151121 Computer, Math
## 8621 17-2072 172072 Architecture, Engineer
## 8622 15-1131 151131 Computer, Math
## 8623 15-1121 151121 Computer, Math
## 8624 15-1132 151132 Computer, Math
## 8625 15-1141 151141 Computer, Math
## 8626 15-1121 151121 Computer, Math
## 8627 15-1199 151199 Computer, Math
## 8628 15-1111 151111 Computer, Math
## 8629 15-1132 151132 Computer, Math
## 8630 15-1199 151199 Computer, Math
## 8631 15-1121 151121 Computer, Math
## 8632 15-1121 151121 Computer, Math
## 8633 15-1199 151199 Computer, Math
## 8634 11-3131 113131 Management
## 8635 15-1132 151132 Computer, Math
## 8636 15-1133 151133 Computer, Math
## 8637 15-1199 151199 Computer, Math
## 8638 15-1131 151131 Computer, Math
## 8639 15-1132 151132 Computer, Math
## 8640 13-2051 132051 Business, Finance
## 8641 15-1132 151132 Computer, Math
## 8642 13-2011 132011 Business, Finance
## 8643 19-3094 193094 Life, Physcial, Social Science
## 8644 15-1132 151132 Computer, Math
## 8645 11-3051 113051 Management
## 8646 11-2031 112031 Management
## 8647 15-1142 151142 Computer, Math
## 8648 15-1121 151121 Computer, Math
## 8649 19-1042 191042 Life, Physcial, Social Science
## 8650 15-1151 151151 Computer, Math
## 8651 17-2112 172112 Architecture, Engineer
## 8652 13-2051 132051 Business, Finance
## 8653 15-1132 151132 Computer, Math
## 8654 17-2072 172072 Architecture, Engineer
## 8655 13-2051 132051 Business, Finance
## 8656 15-1132 151132 Computer, Math
## 8657 15-2011 152011 Computer, Math
## 8658 15-1142 151142 Computer, Math
## 8659 15-1132 151132 Computer, Math
## 8660 15-1133 151133 Computer, Math
## 8661 15-1121 151121 Computer, Math
## 8662 15-1132 151132 Computer, Math
## 8663 15-1199 151199 Computer, Math
## 8664 15-1132 151132 Computer, Math
## 8665 15-1132 151132 Computer, Math
## 8666 17-2051 172051 Architecture, Engineer
## 8667 15-1121 151121 Computer, Math
## 8668 13-1111 131111 Business, Finance
## 8669 15-1132 151132 Computer, Math
## 8670 15-1199 151199 Computer, Math
## 8671 15-1132 151132 Computer, Math
## 8672 15-1121 151121 Computer, Math
## 8673 15-1132 151132 Computer, Math
## 8674 15-1132 151132 Computer, Math
## 8675 15-1132 151132 Computer, Math
## 8676 15-1121 151121 Computer, Math
## 8677 15-1132 151132 Computer, Math
## 8678 23-1011 231011 Legal
## 8679 13-2011 132011 Business, Finance
## 8680 15-1132 151132 Computer, Math
## 8681 15-1133 151133 Computer, Math
## 8682 23-1011 231011 Legal
## 8683 15-1121 151121 Computer, Math
## 8684 17-2072 172072 Architecture, Engineer
## 8685 27-1024 271024 Media, Design
## 8686 15-1132 151132 Computer, Math
## 8687 11-2022 112022 Management
## 8688 15-1132 151132 Computer, Math
## 8689 15-1199 151199 Computer, Math
## 8690 15-1132 151132 Computer, Math
## 8691 15-1132 151132 Computer, Math
## 8692 15-1132 151132 Computer, Math
## 8693 15-1132 151132 Computer, Math
## 8694 15-1132 151132 Computer, Math
## 8695 15-1134 151134 Computer, Math
## 8696 15-1199 151199 Computer, Math
## 8697 15-2031 152031 Computer, Math
## 8698 11-3021 113021 Management
## 8699 15-1121 151121 Computer, Math
## 8700 19-1021 191021 Life, Physcial, Social Science
## 8701 15-1121 151121 Computer, Math
## 8702 17-2071 172071 Architecture, Engineer
## 8703 15-1132 151132 Computer, Math
## 8704 15-1132 151132 Computer, Math
## 8705 15-1133 151133 Computer, Math
## 8706 15-1132 151132 Computer, Math
## 8707 27-1021 271021 Media, Design
## 8708 13-2011 132011 Business, Finance
## 8709 15-1132 151132 Computer, Math
## 8710 25-1011 251011 Education, Training
## 8711 15-1133 151133 Computer, Math
## 8712 15-1132 151132 Computer, Math
## 8713 25-1011 251011 Education, Training
## 8714 15-1199 151199 Computer, Math
## 8715 15-1199 151199 Computer, Math
## 8716 15-1133 151133 Computer, Math
## 8717 15-2041 152041 Computer, Math
## 8718 15-1132 151132 Computer, Math
## 8719 15-1132 151132 Computer, Math
## 8720 15-1121 151121 Computer, Math
## 8721 15-1121 151121 Computer, Math
## 8722 13-2051 132051 Business, Finance
## 8723 15-2031 152031 Computer, Math
## 8724 19-1042 191042 Life, Physcial, Social Science
## 8725 15-1132 151132 Computer, Math
## 8726 15-1132 151132 Computer, Math
## 8727 13-2051 132051 Business, Finance
## 8728 15-1132 151132 Computer, Math
## 8729 15-1132 151132 Computer, Math
## 8730 11-3031 113031 Management
## 8731 15-1132 151132 Computer, Math
## 8732 15-1141 151141 Computer, Math
## 8733 15-1143 151143 Computer, Math
## 8734 15-2031 152031 Computer, Math
## 8735 15-1132 151132 Computer, Math
## 8736 19-1021 191021 Life, Physcial, Social Science
## 8737 15-1132 151132 Computer, Math
## 8738 19-1029 191029 Life, Physcial, Social Science
## 8739 15-1132 151132 Computer, Math
## 8740 15-1132 151132 Computer, Math
## 8741 15-1121 151121 Computer, Math
## 8742 11-2021 112021 Management
## 8743 15-1121 151121 Computer, Math
## 8744 13-1111 131111 Business, Finance
## 8745 15-1121 151121 Computer, Math
## 8746 19-3039 193039 Life, Physcial, Social Science
## 8747 13-2011 132011 Business, Finance
## 8748 15-1132 151132 Computer, Math
## 8749 15-1199 151199 Computer, Math
## 8750 15-1133 151133 Computer, Math
## 8751 15-1132 151132 Computer, Math
## 8752 29-1069 291069 Healthcare Practitioner
## 8753 15-1121 151121 Computer, Math
## 8754 15-1133 151133 Computer, Math
## 8755 15-1141 151141 Computer, Math
## 8756 15-1121 151121 Computer, Math
## 8757 15-1121 151121 Computer, Math
## 8758 27-1024 271024 Media, Design
## 8759 21-2011 212011 Social Service
## 8760 15-1133 151133 Computer, Math
## 8761 11-9041 119041 Management
## 8762 15-1131 151131 Computer, Math
## 8763 15-1121 151121 Computer, Math
## 8764 19-1029 191029 Life, Physcial, Social Science
## 8765 15-1131 151131 Computer, Math
## 8766 15-1121 151121 Computer, Math
## 8767 15-1132 151132 Computer, Math
## 8768 15-1132 151132 Computer, Math
## 8769 15-1133 151133 Computer, Math
## 8770 15-1121 151121 Computer, Math
## 8771 15-1132 151132 Computer, Math
## 8772 27-1011 271011 Media, Design
## 8773 27-1024 271024 Media, Design
## 8774 15-1132 151132 Computer, Math
## 8775 15-1121 151121 Computer, Math
## 8776 13-2051 132051 Business, Finance
## 8777 15-1121 151121 Computer, Math
## 8778 13-1161 131161 Business, Finance
## 8779 15-1133 151133 Computer, Math
## 8780 13-2051 132051 Business, Finance
## 8781 15-1121 151121 Computer, Math
## 8782 15-1132 151132 Computer, Math
## 8783 15-1121 151121 Computer, Math
## 8784 15-2041 152041 Computer, Math
## 8785 15-1122 151122 Computer, Math
## 8786 11-9021 119021 Management
## 8787 15-1199 151199 Computer, Math
## 8788 15-1132 151132 Computer, Math
## 8789 15-1199 151199 Computer, Math
## 8790 13-2051 132051 Business, Finance
## 8791 15-1131 151131 Computer, Math
## 8792 15-1132 151132 Computer, Math
## 8793 15-1121 151121 Computer, Math
## 8794 15-1199 151199 Computer, Math
## 8795 15-1132 151132 Computer, Math
## 8796 39-9032 399032 Others
## 8797 15-1131 151131 Computer, Math
## 8798 15-1121 151121 Computer, Math
## 8799 15-1121 151121 Computer, Math
## 8800 15-1121 151121 Computer, Math
## 8801 15-1132 151132 Computer, Math
## 8802 15-1052 151052 Computer, Math
## 8803 15-1132 151132 Computer, Math
## 8804 19-1042 191042 Life, Physcial, Social Science
## 8805 15-1132 151132 Computer, Math
## 8806 15-1199 151199 Computer, Math
## 8807 15-1132 151132 Computer, Math
## 8808 15-1133 151133 Computer, Math
## 8809 13-1041 131041 Business, Finance
## 8810 15-1121 151121 Computer, Math
## 8811 17-2121 172121 Architecture, Engineer
## 8812 17-2112 172112 Architecture, Engineer
## 8813 15-1121 151121 Computer, Math
## 8814 15-1199 151199 Computer, Math
## 8815 15-1121 151121 Computer, Math
## 8816 15-1133 151133 Computer, Math
## 8817 15-1132 151132 Computer, Math
## 8818 15-1132 151132 Computer, Math
## 8819 15-1132 151132 Computer, Math
## 8820 17-2141 172141 Architecture, Engineer
## 8821 15-1141 151141 Computer, Math
## 8822 15-1132 151132 Computer, Math
## 8823 15-1034 151034 Computer, Math
## 8824 15-1199 151199 Computer, Math
## 8825 15-1131 151131 Computer, Math
## 8826 13-1111 131111 Business, Finance
## 8827 15-1132 151132 Computer, Math
## 8828 17-2141 172141 Architecture, Engineer
## 8829 15-1132 151132 Computer, Math
## 8830 15-1132 151132 Computer, Math
## 8831 13-1161 131161 Business, Finance
## 8832 15-1121 151121 Computer, Math
## 8833 13-2099 132099 Business, Finance
## 8834 15-1132 151132 Computer, Math
## 8835 15-1121 151121 Computer, Math
## 8836 15-1132 151132 Computer, Math
## 8837 15-1132 151132 Computer, Math
## 8838 15-1199 151199 Computer, Math
## 8839 15-1199 151199 Computer, Math
## 8840 15-1121 151121 Computer, Math
## 8841 15-1199 151199 Computer, Math
## 8842 17-2199 172199 Architecture, Engineer
## 8843 15-1132 151132 Computer, Math
## 8844 17-2072 172072 Architecture, Engineer
## 8845 15-1121 151121 Computer, Math
## 8846 15-1132 151132 Computer, Math
## 8847 15-1132 151132 Computer, Math
## 8848 15-1132 151132 Computer, Math
## 8849 15-1132 151132 Computer, Math
## 8850 15-1121 151121 Computer, Math
## 8851 15-1132 151132 Computer, Math
## 8852 15-1132 151132 Computer, Math
## 8853 15-1121 151121 Computer, Math
## 8854 15-1199 151199 Computer, Math
## 8855 15-1199 151199 Computer, Math
## 8856 15-1132 151132 Computer, Math
## 8857 15-1132 151132 Computer, Math
## 8858 13-2061 132061 Business, Finance
## 8859 15-1132 151132 Computer, Math
## 8860 15-1131 151131 Computer, Math
## 8861 15-1132 151132 Computer, Math
## 8862 13-2011 132011 Business, Finance
## 8863 15-1132 151132 Computer, Math
## 8864 15-1121 151121 Computer, Math
## 8865 13-2011 132011 Business, Finance
## 8866 15-1121 151121 Computer, Math
## 8867 15-1121 151121 Computer, Math
## 8868 15-1199 151199 Computer, Math
## 8869 15-1199 151199 Computer, Math
## 8870 15-1132 151132 Computer, Math
## 8871 15-1132 151132 Computer, Math
## 8872 15-1199 151199 Computer, Math
## 8873 15-1132 151132 Computer, Math
## 8874 15-1132 151132 Computer, Math
## 8875 15-1121 151121 Computer, Math
## 8876 15-1132 151132 Computer, Math
## 8877 25-1011 251011 Education, Training
## 8878 15-1133 151133 Computer, Math
## 8879 15-1132 151132 Computer, Math
## 8880 15-1143 151143 Computer, Math
## 8881 15-1132 151132 Computer, Math
## 8882 17-2071 172071 Architecture, Engineer
## 8883 15-1121 151121 Computer, Math
## 8884 17-2072 172072 Architecture, Engineer
## 8885 15-1132 151132 Computer, Math
## 8886 15-1132 151132 Computer, Math
## 8887 15-1132 151132 Computer, Math
## 8888 41-3031 413031 Sales
## 8889 15-1133 151133 Computer, Math
## 8890 15-1133 151133 Computer, Math
## 8891 15-1121 151121 Computer, Math
## 8892 15-1132 151132 Computer, Math
## 8893 15-1132 151132 Computer, Math
## 8894 17-2141 172141 Architecture, Engineer
## 8895 17-2072 172072 Architecture, Engineer
## 8896 15-1121 151121 Computer, Math
## 8897 15-1199 151199 Computer, Math
## 8898 13-2099 132099 Business, Finance
## 8899 15-1132 151132 Computer, Math
## 8900 15-1132 151132 Computer, Math
## 8901 25-1032 251032 Education, Training
## 8902 15-1121 151121 Computer, Math
## 8903 15-1199 151199 Computer, Math
## 8904 15-1132 151132 Computer, Math
## 8905 17-2071 172071 Architecture, Engineer
## 8906 15-1131 151131 Computer, Math
## 8907 15-1132 151132 Computer, Math
## 8908 11-3021 113021 Management
## 8909 11-1021 111021 Management
## 8910 15-1132 151132 Computer, Math
## 8911 15-1132 151132 Computer, Math
## 8912 15-1132 151132 Computer, Math
## 8913 15-1133 151133 Computer, Math
## 8914 15-2031 152031 Computer, Math
## 8915 15-1132 151132 Computer, Math
## 8916 17-2141 172141 Architecture, Engineer
## 8917 15-1199 151199 Computer, Math
## 8918 15-1132 151132 Computer, Math
## 8919 25-2021 252021 Education, Training
## 8920 15-1142 151142 Computer, Math
## 8921 15-1132 151132 Computer, Math
## 8922 17-2071 172071 Architecture, Engineer
## 8923 15-1132 151132 Computer, Math
## 8924 15-1199 151199 Computer, Math
## 8925 15-1111 151111 Computer, Math
## 8926 15-1199 151199 Computer, Math
## 8927 17-2141 172141 Architecture, Engineer
## 8928 15-1121 151121 Computer, Math
## 8929 15-1121 151121 Computer, Math
## 8930 15-1132 151132 Computer, Math
## 8931 15-1134 151134 Computer, Math
## 8932 15-1142 151142 Computer, Math
## 8933 15-1131 151131 Computer, Math
## 8934 15-2031 152031 Computer, Math
## 8935 15-1121 151121 Computer, Math
## 8936 25-1021 251021 Education, Training
## 8937 15-1132 151132 Computer, Math
## 8938 15-1199 151199 Computer, Math
## 8939 15-1132 151132 Computer, Math
## 8940 11-3021 113021 Management
## 8941 15-1121 151121 Computer, Math
## 8942 13-1161 131161 Business, Finance
## 8943 15-1121 151121 Computer, Math
## 8944 15-1132 151132 Computer, Math
## 8945 15-1132 151132 Computer, Math
## 8946 15-1121 151121 Computer, Math
## 8947 17-2112 172112 Architecture, Engineer
## 8948 15-1142 151142 Computer, Math
## 8949 17-2141 172141 Architecture, Engineer
## 8950 15-1111 151111 Computer, Math
## 8951 25-2031 252031 Education, Training
## 8952 15-1121 151121 Computer, Math
## 8953 15-1199 151199 Computer, Math
## 8954 15-1132 151132 Computer, Math
## 8955 15-1199 151199 Computer, Math
## 8956 15-1121 151121 Computer, Math
## 8957 15-1121 151121 Computer, Math
## 8958 17-2072 172072 Architecture, Engineer
## 8959 15-1132 151132 Computer, Math
## 8960 15-1133 151133 Computer, Math
## 8961 15-1132 151132 Computer, Math
## 8962 25-1052 251052 Education, Training
## 8963 15-1132 151132 Computer, Math
## 8964 15-1111 151111 Computer, Math
## 8965 27-3042 273042 Media, Design
## 8966 15-1121 151121 Computer, Math
## 8967 15-1132 151132 Computer, Math
## 8968 11-9041 119041 Management
## 8969 41-4011 414011 Sales
## 8970 15-1121 151121 Computer, Math
## 8971 15-1121 151121 Computer, Math
## 8972 11-1021 111021 Management
## 8973 25-1011 251011 Education, Training
## 8974 15-1132 151132 Computer, Math
## 8975 15-1199 151199 Computer, Math
## 8976 17-2141 172141 Architecture, Engineer
## 8977 21-1014 211014 Social Service
## 8978 15-1132 151132 Computer, Math
## 8979 15-1134 151134 Computer, Math
## 8980 15-1132 151132 Computer, Math
## 8981 15-1199 151199 Computer, Math
## 8982 15-2041 152041 Computer, Math
## 8983 15-1199 151199 Computer, Math
## 8984 13-2011 132011 Business, Finance
## 8985 15-1121 151121 Computer, Math
## 8986 15-1132 151132 Computer, Math
## 8987 15-1199 151199 Computer, Math
## 8988 13-2099 132099 Business, Finance
## 8989 15-1199 151199 Computer, Math
## 8990 15-1132 151132 Computer, Math
## 8991 25-1071 251071 Education, Training
## 8992 15-1131 151131 Computer, Math
## 8993 15-1131 151131 Computer, Math
## 8994 29-1141 291141 Healthcare Practitioner
## 8995 17-2141 172141 Architecture, Engineer
## 8996 19-1042 191042 Life, Physcial, Social Science
## 8997 15-1132 151132 Computer, Math
## 8998 13-2011 132011 Business, Finance
## 8999 15-1132 151132 Computer, Math
## 9000 29-1123 291123 Healthcare Practitioner
## 9001 15-1132 151132 Computer, Math
## 9002 15-2031 152031 Computer, Math
## 9003 15-1199 151199 Computer, Math
## 9004 15-1121 151121 Computer, Math
## 9005 13-1111 131111 Business, Finance
## 9006 15-1132 151132 Computer, Math
## 9007 15-1132 151132 Computer, Math
## 9008 15-1199 151199 Computer, Math
## 9009 15-1199 151199 Computer, Math
## 9010 15-1199 151199 Computer, Math
## 9011 15-1133 151133 Computer, Math
## 9012 19-1021 191021 Life, Physcial, Social Science
## 9013 15-1199 151199 Computer, Math
## 9014 15-1132 151132 Computer, Math
## 9015 15-1132 151132 Computer, Math
## 9016 15-1152 151152 Computer, Math
## 9017 15-1132 151132 Computer, Math
## 9018 15-1132 151132 Computer, Math
## 9019 15-1199 151199 Computer, Math
## 9020 15-1132 151132 Computer, Math
## 9021 15-1132 151132 Computer, Math
## 9022 15-1199 151199 Computer, Math
## 9023 19-2031 192031 Life, Physcial, Social Science
## 9024 15-1199 151199 Computer, Math
## 9025 15-1132 151132 Computer, Math
## 9026 15-1151 151151 Computer, Math
## 9027 15-1121 151121 Computer, Math
## 9028 29-2011 292011 Healthcare Practitioner
## 9029 15-1121 151121 Computer, Math
## 9030 15-1132 151132 Computer, Math
## 9031 15-1199 151199 Computer, Math
## 9032 15-1199 151199 Computer, Math
## 9033 15-2041 152041 Computer, Math
## 9034 15-1121 151121 Computer, Math
## 9035 13-1151 131151 Business, Finance
## 9036 15-1132 151132 Computer, Math
## 9037 15-1132 151132 Computer, Math
## 9038 15-1199 151199 Computer, Math
## 9039 17-2144 172144 Architecture, Engineer
## 9040 15-1121 151121 Computer, Math
## 9041 15-1199 151199 Computer, Math
## 9042 15-1199 151199 Computer, Math
## 9043 25-3099 253099 Education, Training
## 9044 13-2099 132099 Business, Finance
## 9045 19-1042 191042 Life, Physcial, Social Science
## 9046 17-2112 172112 Architecture, Engineer
## 9047 25-1021 251021 Education, Training
## 9048 27-3041 273041 Media, Design
## 9049 15-1199 151199 Computer, Math
## 9050 15-2041 152041 Computer, Math
## 9051 15-2031 152031 Computer, Math
## 9052 15-2031 152031 Computer, Math
## 9053 19-4021 194021 Life, Physcial, Social Science
## 9054 15-1199 151199 Computer, Math
## 9055 15-1121 151121 Computer, Math
## 9056 29-2011 292011 Healthcare Practitioner
## 9057 15-1132 151132 Computer, Math
## 9058 25-1199 251199 Education, Training
## 9059 15-1121 151121 Computer, Math
## 9060 15-1132 151132 Computer, Math
## 9061 19-1021 191021 Life, Physcial, Social Science
## 9062 15-1121 151121 Computer, Math
## 9063 17-2112 172112 Architecture, Engineer
## 9064 15-1132 151132 Computer, Math
## 9065 15-1121 151121 Computer, Math
## 9066 15-1132 151132 Computer, Math
## 9067 15-1133 151133 Computer, Math
## 9068 19-3051 193051 Life, Physcial, Social Science
## 9069 15-1121 151121 Computer, Math
## 9070 27-1025 271025 Media, Design
## 9071 15-1121 151121 Computer, Math
## 9072 15-1199 151199 Computer, Math
## 9073 25-1066 251066 Education, Training
## 9074 15-1131 151131 Computer, Math
## 9075 25-1011 251011 Education, Training
## 9076 13-2099 132099 Business, Finance
## 9077 15-1121 151121 Computer, Math
## 9078 13-1141 131141 Business, Finance
## 9079 15-1121 151121 Computer, Math
## 9080 15-1131 151131 Computer, Math
## 9081 15-1121 151121 Computer, Math
## 9082 15-1132 151132 Computer, Math
## 9083 17-1021 171021 Architecture, Engineer
## 9084 15-1132 151132 Computer, Math
## 9085 13-2051 132051 Business, Finance
## 9086 41-9031 419031 Sales
## 9087 15-1199 151199 Computer, Math
## 9088 11-3021 113021 Management
## 9089 15-1132 151132 Computer, Math
## 9090 15-1199 151199 Computer, Math
## 9091 15-1199 151199 Computer, Math
## 9092 15-1199 151199 Computer, Math
## 9093 15-1132 151132 Computer, Math
## 9094 15-1132 151132 Computer, Math
## 9095 15-1132 151132 Computer, Math
## 9096 15-1132 151132 Computer, Math
## 9097 15-1131 151131 Computer, Math
## 9098 17-2071 172071 Architecture, Engineer
## 9099 15-1121 151121 Computer, Math
## 9100 11-9151 119151 Management
## 9101 15-1131 151131 Computer, Math
## 9102 15-1199 151199 Computer, Math
## 9103 15-1141 151141 Computer, Math
## 9104 15-1133 151133 Computer, Math
## 9105 15-1132 151132 Computer, Math
## 9106 15-2031 152031 Computer, Math
## 9107 15-1132 151132 Computer, Math
## 9108 15-2011 152011 Computer, Math
## 9109 15-1121 151121 Computer, Math
## 9110 11-9033 119033 Management
## 9111 15-1199 151199 Computer, Math
## 9112 15-1132 151132 Computer, Math
## 9113 15-1132 151132 Computer, Math
## 9114 15-1131 151131 Computer, Math
## 9115 17-2071.00 172071 Architecture, Engineer
## 9116 15-1132 151132 Computer, Math
## 9117 15-1133 151133 Computer, Math
## 9118 19-1042 191042 Life, Physcial, Social Science
## 9119 17-2199 172199 Architecture, Engineer
## 9120 15-1133 151133 Computer, Math
## 9121 15-1121 151121 Computer, Math
## 9122 15-1132 151132 Computer, Math
## 9123 27-1024 271024 Media, Design
## 9124 13-2051 132051 Business, Finance
## 9125 15-1132 151132 Computer, Math
## 9126 15-1133 151133 Computer, Math
## 9127 15-1131 151131 Computer, Math
## 9128 15-1121 151121 Computer, Math
## 9129 15-1121 151121 Computer, Math
## 9130 15-1121 151121 Computer, Math
## 9131 15-1132 151132 Computer, Math
## 9132 15-1132 151132 Computer, Math
## 9133 17-2072 172072 Architecture, Engineer
## 9134 15-1132 151132 Computer, Math
## 9135 15-1121 151121 Computer, Math
## 9136 13-1081 131081 Business, Finance
## 9137 15-2041 152041 Computer, Math
## 9138 15-1199 151199 Computer, Math
## 9139 15-1121 151121 Computer, Math
## 9140 15-1121 151121 Computer, Math
## 9141 15-1132 151132 Computer, Math
## 9142 15-1132 151132 Computer, Math
## 9143 15-1121 151121 Computer, Math
## 9144 11-9021 119021 Management
## 9145 15-1199 151199 Computer, Math
## 9146 25-4012 254012 Education, Training
## 9147 13-1161 131161 Business, Finance
## 9148 29-1123 291123 Healthcare Practitioner
## 9149 23-2011 232011 Legal
## 9150 15-1132 151132 Computer, Math
## 9151 15-1132 151132 Computer, Math
## 9152 25-1072 251072 Education, Training
## 9153 15-1131 151131 Computer, Math
## 9154 13-1111 131111 Business, Finance
## 9155 13-2011 132011 Business, Finance
## 9156 15-1132 151132 Computer, Math
## 9157 15-1121 151121 Computer, Math
## 9158 15-1132 151132 Computer, Math
## 9159 15-1121 151121 Computer, Math
## 9160 17-1011 171011 Architecture, Engineer
## 9161 19-3099 193099 Life, Physcial, Social Science
## 9162 15-1131 151131 Computer, Math
## 9163 15-1132 151132 Computer, Math
## 9164 15-1132 151132 Computer, Math
## 9165 13-2099 132099 Business, Finance
## 9166 13-1161 131161 Business, Finance
## 9167 15-1132 151132 Computer, Math
## 9168 19-1042 191042 Life, Physcial, Social Science
## 9169 15-1132 151132 Computer, Math
## 9170 15-1132 151132 Computer, Math
## 9171 13-2011 132011 Business, Finance
## 9172 15-1142 151142 Computer, Math
## 9173 15-1132 151132 Computer, Math
## 9174 15-1131 151131 Computer, Math
## 9175 15-1121 151121 Computer, Math
## 9176 15-1199 151199 Computer, Math
## 9177 17-2199 172199 Architecture, Engineer
## 9178 15-1132 151132 Computer, Math
## 9179 11-3021 113021 Management
## 9180 19-1029 191029 Life, Physcial, Social Science
## 9181 15-1141 151141 Computer, Math
## 9182 17-2041 172041 Architecture, Engineer
## 9183 17-2072 172072 Architecture, Engineer
## 9184 15-1121 151121 Computer, Math
## 9185 15-1199 151199 Computer, Math
## 9186 25-2022 252022 Education, Training
## 9187 13-1161 131161 Business, Finance
## 9188 15-1199 151199 Computer, Math
## 9189 29-1051 291051 Healthcare Practitioner
## 9190 11-3021 113021 Management
## 9191 11-3021 113021 Management
## 9192 15-1111 151111 Computer, Math
## 9193 15-1132 151132 Computer, Math
## 9194 15-1132 151132 Computer, Math
## 9195 29-1021 291021 Healthcare Practitioner
## 9196 15-1121 151121 Computer, Math
## 9197 15-1132 151132 Computer, Math
## 9198 15-1132 151132 Computer, Math
## 9199 15-1143 151143 Computer, Math
## 9200 15-1132 151132 Computer, Math
## 9201 15-1132 151132 Computer, Math
## 9202 17-2041 172041 Architecture, Engineer
## 9203 15-1199 151199 Computer, Math
## 9204 15-1121 151121 Computer, Math
## 9205 15-1121 151121 Computer, Math
## 9206 13-1041 131041 Business, Finance
## 9207 15-1133 151133 Computer, Math
## 9208 17-2141 172141 Architecture, Engineer
## 9209 29-2011 292011 Healthcare Practitioner
## 9210 15-1132 151132 Computer, Math
## 9211 15-1132 151132 Computer, Math
## 9212 15-1132 151132 Computer, Math
## 9213 17-2141 172141 Architecture, Engineer
## 9214 11-2021 112021 Management
## 9215 15-1132 151132 Computer, Math
## 9216 15-1121 151121 Computer, Math
## 9217 15-1132 151132 Computer, Math
## 9218 15-1199 151199 Computer, Math
## 9219 15-1199 151199 Computer, Math
## 9220 15-1199 151199 Computer, Math
## 9221 15-1132 151132 Computer, Math
## 9222 15-1199 151199 Computer, Math
## 9223 11-1021 111021 Management
## 9224 29-9099 299099 Healthcare Practitioner
## 9225 11-3031 113031 Management
## 9226 29-1123 291123 Healthcare Practitioner
## 9227 13-1161 131161 Business, Finance
## 9228 15-1199 151199 Computer, Math
## 9229 15-1199 151199 Computer, Math
## 9230 15-1132 151132 Computer, Math
## 9231 11-9151 119151 Management
## 9232 15-1132 151132 Computer, Math
## 9233 15-1133 151133 Computer, Math
## 9234 15-1199 151199 Computer, Math
## 9235 15-1142 151142 Computer, Math
## 9236 15-1132 151132 Computer, Math
## 9237 15-1132 151132 Computer, Math
## 9238 15-1121 151121 Computer, Math
## 9239 15-1132 151132 Computer, Math
## 9240 15-1132 151132 Computer, Math
## 9241 15-1132 151132 Computer, Math
## 9242 15-1199 151199 Computer, Math
## 9243 15-1132 151132 Computer, Math
## 9244 15-1142 151142 Computer, Math
## 9245 15-1199 151199 Computer, Math
## 9246 15-1132 151132 Computer, Math
## 9247 15-1131 151131 Computer, Math
## 9248 15-1121 151121 Computer, Math
## 9249 15-1132 151132 Computer, Math
## 9250 19-2031 192031 Life, Physcial, Social Science
## 9251 15-1132 151132 Computer, Math
## 9252 15-1132 151132 Computer, Math
## 9253 15-1199 151199 Computer, Math
## 9254 15-1132 151132 Computer, Math
## 9255 11-9041 119041 Management
## 9256 11-3021 113021 Management
## 9257 15-1199 151199 Computer, Math
## 9258 15-1142 151142 Computer, Math
## 9259 15-1199 151199 Computer, Math
## 9260 15-2041 152041 Computer, Math
## 9261 19-1021 191021 Life, Physcial, Social Science
## 9262 15-1131 151131 Computer, Math
## 9263 15-1132 151132 Computer, Math
## 9264 15-1132 151132 Computer, Math
## 9265 15-1199 151199 Computer, Math
## 9266 15-1133 151133 Computer, Math
## 9267 25-1122 251122 Education, Training
## 9268 15-1132 151132 Computer, Math
## 9269 15-1121 151121 Computer, Math
## 9270 19-4061 194061 Life, Physcial, Social Science
## 9271 13-1199 131199 Business, Finance
## 9272 19-2042 192042 Life, Physcial, Social Science
## 9273 13-1161 131161 Business, Finance
## 9274 15-1199 151199 Computer, Math
## 9275 15-1133 151133 Computer, Math
## 9276 15-1132 151132 Computer, Math
## 9277 15-1132 151132 Computer, Math
## 9278 13-2051 132051 Business, Finance
## 9279 15-1132 151132 Computer, Math
## 9280 15-1121 151121 Computer, Math
## 9281 13-1071 131071 Business, Finance
## 9282 15-1132 151132 Computer, Math
## 9283 15-1132 151132 Computer, Math
## 9284 15-1199 151199 Computer, Math
## 9285 13-1111 131111 Business, Finance
## 9286 15-1199 151199 Computer, Math
## 9287 15-1132 151132 Computer, Math
## 9288 13-2011 132011 Business, Finance
## 9289 15-1132 151132 Computer, Math
## 9290 13-2051 132051 Business, Finance
## 9291 19-1029 191029 Life, Physcial, Social Science
## 9292 17-2141 172141 Architecture, Engineer
## 9293 19-2031 192031 Life, Physcial, Social Science
## 9294 15-1121 151121 Computer, Math
## 9295 15-1132 151132 Computer, Math
## 9296 15-1132 151132 Computer, Math
## 9297 19-2043 192043 Life, Physcial, Social Science
## 9298 13-2011 132011 Business, Finance
## 9299 15-2031 152031 Computer, Math
## 9300 13-1111 131111 Business, Finance
## 9301 15-1132 151132 Computer, Math
## 9302 15-1132 151132 Computer, Math
## 9303 15-1132 151132 Computer, Math
## 9304 15-1133 151133 Computer, Math
## 9305 15-1121 151121 Computer, Math
## 9306 15-1199 151199 Computer, Math
## 9307 15-1132 151132 Computer, Math
## 9308 15-1132 151132 Computer, Math
## 9309 15-1132 151132 Computer, Math
## 9310 15-1132 151132 Computer, Math
## 9311 15-1199 151199 Computer, Math
## 9312 15-1132 151132 Computer, Math
## 9313 15-1199 151199 Computer, Math
## 9314 17-2141 172141 Architecture, Engineer
## 9315 19-1041 191041 Life, Physcial, Social Science
## 9316 29-1021 291021 Healthcare Practitioner
## 9317 15-1132 151132 Computer, Math
## 9318 17-2011 172011 Architecture, Engineer
## 9319 15-1199 151199 Computer, Math
## 9320 15-1143 151143 Computer, Math
## 9321 15-1132 151132 Computer, Math
## 9322 15-1199 151199 Computer, Math
## 9323 15-1131 151131 Computer, Math
## 9324 17-2199 172199 Architecture, Engineer
## 9325 27-1024 271024 Media, Design
## 9326 15-1132 151132 Computer, Math
## 9327 15-1132 151132 Computer, Math
## 9328 19-1029 191029 Life, Physcial, Social Science
## 9329 11-3021 113021 Management
## 9330 15-1121 151121 Computer, Math
## 9331 15-1132 151132 Computer, Math
## 9332 15-1199 151199 Computer, Math
## 9333 13-1111 131111 Business, Finance
## 9334 15-1132 151132 Computer, Math
## 9335 15-2031 152031 Computer, Math
## 9336 15-1121 151121 Computer, Math
## 9337 15-1132 151132 Computer, Math
## 9338 15-1132 151132 Computer, Math
## 9339 13-1081 131081 Business, Finance
## 9340 15-1121 151121 Computer, Math
## 9341 15-1134 151134 Computer, Math
## 9342 27-1024 271024 Media, Design
## 9343 15-1199 151199 Computer, Math
## 9344 15-1132 151132 Computer, Math
## 9345 15-2031 152031 Computer, Math
## 9346 15-1132 151132 Computer, Math
## 9347 41-9031 419031 Sales
## 9348 15-1121 151121 Computer, Math
## 9349 15-1132 151132 Computer, Math
## 9350 15-1132 151132 Computer, Math
## 9351 15-2041 152041 Computer, Math
## 9352 15-1199 151199 Computer, Math
## 9353 15-1199 151199 Computer, Math
## 9354 15-1141 151141 Computer, Math
## 9355 15-1132 151132 Computer, Math
## 9356 15-1132 151132 Computer, Math
## 9357 15-1132 151132 Computer, Math
## 9358 15-1121 151121 Computer, Math
## 9359 15-1133 151133 Computer, Math
## 9360 29-1067 291067 Healthcare Practitioner
## 9361 15-1132 151132 Computer, Math
## 9362 15-1199 151199 Computer, Math
## 9363 15-1132 151132 Computer, Math
## 9364 15-1121 151121 Computer, Math
## 9365 15-1134 151134 Computer, Math
## 9366 15-1133 151133 Computer, Math
## 9367 15-1132 151132 Computer, Math
## 9368 15-1121 151121 Computer, Math
## 9369 15-1132 151132 Computer, Math
## 9370 17-2071 172071 Architecture, Engineer
## 9371 15-2031 152031 Computer, Math
## 9372 15-1132 151132 Computer, Math
## 9373 17-2051 172051 Architecture, Engineer
## 9374 15-1132 151132 Computer, Math
## 9375 13-2051 132051 Business, Finance
## 9376 13-1041 131041 Business, Finance
## 9377 15-1132 151132 Computer, Math
## 9378 15-1132 151132 Computer, Math
## 9379 13-2011 132011 Business, Finance
## 9380 15-1133 151133 Computer, Math
## 9381 15-1132 151132 Computer, Math
## 9382 15-1199 151199 Computer, Math
## 9383 13-1111 131111 Business, Finance
## 9384 15-1132 151132 Computer, Math
## 9385 25-1071 251071 Education, Training
## 9386 13-2031 132031 Business, Finance
## 9387 15-1131 151131 Computer, Math
## 9388 15-1132 151132 Computer, Math
## 9389 15-1121 151121 Computer, Math
## 9390 15-1132 151132 Computer, Math
## 9391 15-1121 151121 Computer, Math
## 9392 15-1132 151132 Computer, Math
## 9393 19-2032 192032 Life, Physcial, Social Science
## 9394 15-1132 151132 Computer, Math
## 9395 15-1132 151132 Computer, Math
## 9396 15-1121 151121 Computer, Math
## 9397 15-1132 151132 Computer, Math
## 9398 13-2051 132051 Business, Finance
## 9399 15-1132 151132 Computer, Math
## 9400 15-1121 151121 Computer, Math
## 9401 19-3011 193011 Life, Physcial, Social Science
## 9402 15-1132 151132 Computer, Math
## 9403 15-2031 152031 Computer, Math
## 9404 15-1132 151132 Computer, Math
## 9405 13-1161 131161 Business, Finance
## 9406 15-1132 151132 Computer, Math
## 9407 15-1133 151133 Computer, Math
## 9408 15-1132 151132 Computer, Math
## 9409 15-1121 151121 Computer, Math
## 9410 19-1042 191042 Life, Physcial, Social Science
## 9411 15-1132 151132 Computer, Math
## 9412 15-1132 151132 Computer, Math
## 9413 13-1161 131161 Business, Finance
## 9414 15-1132 151132 Computer, Math
## 9415 15-1143 151143 Computer, Math
## 9416 13-2051 132051 Business, Finance
## 9417 15-1132 151132 Computer, Math
## 9418 17-2112 172112 Architecture, Engineer
## 9419 15-1199 151199 Computer, Math
## 9420 15-1121 151121 Computer, Math
## 9421 11-2021 112021 Management
## 9422 15-1121 151121 Computer, Math
## 9423 15-1199 151199 Computer, Math
## 9424 29-1063 291063 Healthcare Practitioner
## 9425 13-2051 132051 Business, Finance
## 9426 17-2141 172141 Architecture, Engineer
## 9427 17-2071 172071 Architecture, Engineer
## 9428 15-1199 151199 Computer, Math
## 9429 13-1161 131161 Business, Finance
## 9430 29-1065 291065 Healthcare Practitioner
## 9431 15-1121 151121 Computer, Math
## 9432 25-1022 251022 Education, Training
## 9433 13-1161 131161 Business, Finance
## 9434 13-2051 132051 Business, Finance
## 9435 15-2041 152041 Computer, Math
## 9436 15-1121 151121 Computer, Math
## 9437 29-9092 299092 Healthcare Practitioner
## 9438 15-1132 151132 Computer, Math
## 9439 23-1011 231011 Legal
## 9440 15-1132 151132 Computer, Math
## 9441 25-2031 252031 Education, Training
## 9442 29-1063 291063 Healthcare Practitioner
## 9443 15-1131 151131 Computer, Math
## 9444 15-1121 151121 Computer, Math
## 9445 15-1132 151132 Computer, Math
## 9446 15-1132 151132 Computer, Math
## 9447 15-1133 151133 Computer, Math
## 9448 15-1199 151199 Computer, Math
## 9449 15-1132 151132 Computer, Math
## 9450 17-2072 172072 Architecture, Engineer
## 9451 45-2011 452011 Others
## 9452 15-1141 151141 Computer, Math
## 9453 25-2031 252031 Education, Training
## 9454 15-1121 151121 Computer, Math
## 9455 15-1121 151121 Computer, Math
## 9456 41-9031 419031 Sales
## 9457 15-1132 151132 Computer, Math
## 9458 15-1133 151133 Computer, Math
## 9459 15-1132 151132 Computer, Math
## 9460 15-1131 151131 Computer, Math
## 9461 29-1069 291069 Healthcare Practitioner
## 9462 13-2011 132011 Business, Finance
## 9463 15-1133 151133 Computer, Math
## 9464 15-1132 151132 Computer, Math
## 9465 29-1021 291021 Healthcare Practitioner
## 9466 15-1131 151131 Computer, Math
## 9467 15-1132 151132 Computer, Math
## 9468 15-1132 151132 Computer, Math
## 9469 15-1133 151133 Computer, Math
## 9470 15-1132 151132 Computer, Math
## 9471 15-1132 151132 Computer, Math
## 9472 15-1132 151132 Computer, Math
## 9473 15-1132 151132 Computer, Math
## 9474 15-1132 151132 Computer, Math
## 9475 15-1131 151131 Computer, Math
## 9476 13-2099 132099 Business, Finance
## 9477 15-1132 151132 Computer, Math
## 9478 15-1131 151131 Computer, Math
## 9479 15-1132 151132 Computer, Math
## 9480 15-1121 151121 Computer, Math
## 9481 15-1131 151131 Computer, Math
## 9482 15-1132 151132 Computer, Math
## 9483 15-1132 151132 Computer, Math
## 9484 41-9031 419031 Sales
## 9485 15-1132 151132 Computer, Math
## 9486 17-2071 172071 Architecture, Engineer
## 9487 15-1121 151121 Computer, Math
## 9488 15-1133 151133 Computer, Math
## 9489 15-1132 151132 Computer, Math
## 9490 15-1141 151141 Computer, Math
## 9491 15-1132 151132 Computer, Math
## 9492 15-1133 151133 Computer, Math
## 9493 15-1199 151199 Computer, Math
## 9494 13-1161 131161 Business, Finance
## 9495 15-1133 151133 Computer, Math
## 9496 15-1132 151132 Computer, Math
## 9497 15-1199 151199 Computer, Math
## 9498 15-1199 151199 Computer, Math
## 9499 15-1132 151132 Computer, Math
## 9500 15-1132 151132 Computer, Math
## 9501 15-1199 151199 Computer, Math
## 9502 19-2012 192012 Life, Physcial, Social Science
## 9503 15-1132 151132 Computer, Math
## 9504 15-1132 151132 Computer, Math
## 9505 15-1132 151132 Computer, Math
## 9506 29-1127 291127 Healthcare Practitioner
## 9507 15-1132 151132 Computer, Math
## 9508 15-1132 151132 Computer, Math
## 9509 15-1132 151132 Computer, Math
## 9510 15-1132 151132 Computer, Math
## 9511 15-1121 151121 Computer, Math
## 9512 15-1121 151121 Computer, Math
## 9513 15-1121 151121 Computer, Math
## 9514 11-9041 119041 Management
## 9515 15-1133 151133 Computer, Math
## 9516 17-2071 172071 Architecture, Engineer
## 9517 29-1123 291123 Healthcare Practitioner
## 9518 15-1132 151132 Computer, Math
## 9519 11-3031 113031 Management
## 9520 17-2151 172151 Architecture, Engineer
## 9521 13-1161 131161 Business, Finance
## 9522 15-1132 151132 Computer, Math
## 9523 15-2031 152031 Computer, Math
## 9524 15-1132 151132 Computer, Math
## 9525 15-1132 151132 Computer, Math
## 9526 15-1132 151132 Computer, Math
## 9527 13-1111 131111 Business, Finance
## 9528 15-1132 151132 Computer, Math
## 9529 15-1132 151132 Computer, Math
## 9530 23-1011 231011 Legal
## 9531 15-1132 151132 Computer, Math
## 9532 15-1132 151132 Computer, Math
## 9533 15-1132 151132 Computer, Math
## 9534 17-2112 172112 Architecture, Engineer
## 9535 15-1131 151131 Computer, Math
## 9536 15-1132 151132 Computer, Math
## 9537 15-1131 151131 Computer, Math
## 9538 15-1133 151133 Computer, Math
## 9539 15-1131 151131 Computer, Math
## 9540 15-1132 151132 Computer, Math
## 9541 15-1143 151143 Computer, Math
## 9542 15-1132 151132 Computer, Math
## 9543 15-1141 151141 Computer, Math
## 9544 15-1132 151132 Computer, Math
## 9545 15-1132 151132 Computer, Math
## 9546 19-2031 192031 Life, Physcial, Social Science
## 9547 15-1199 151199 Computer, Math
## 9548 15-1131 151131 Computer, Math
## 9549 15-1199 151199 Computer, Math
## 9550 15-1141 151141 Computer, Math
## 9551 13-1111 131111 Business, Finance
## 9552 15-1132 151132 Computer, Math
## 9553 15-1132 151132 Computer, Math
## 9554 15-1132 151132 Computer, Math
## 9555 15-1133 151133 Computer, Math
## 9556 15-2031 152031 Computer, Math
## 9557 15-1121 151121 Computer, Math
## 9558 15-1132 151132 Computer, Math
## 9559 19-1099 191099 Life, Physcial, Social Science
## 9560 15-1132 151132 Computer, Math
## 9561 15-1132 151132 Computer, Math
## 9562 17-2072 172072 Architecture, Engineer
## 9563 15-1132 151132 Computer, Math
## 9564 15-1134 151134 Computer, Math
## 9565 15-1132 151132 Computer, Math
## 9566 17-2072 172072 Architecture, Engineer
## 9567 15-1132 151132 Computer, Math
## 9568 15-1133 151133 Computer, Math
## 9569 15-1121 151121 Computer, Math
## 9570 15-1199 151199 Computer, Math
## 9571 25-1065 251065 Education, Training
## 9572 15-1199 151199 Computer, Math
## 9573 15-1132 151132 Computer, Math
## 9574 15-1132 151132 Computer, Math
## 9575 15-1121 151121 Computer, Math
## 9576 13-2051 132051 Business, Finance
## 9577 15-1132 151132 Computer, Math
## 9578 15-2011 152011 Computer, Math
## 9579 15-1199 151199 Computer, Math
## 9580 25-1067 251067 Education, Training
## 9581 15-1132 151132 Computer, Math
## 9582 15-1132 151132 Computer, Math
## 9583 13-1161 131161 Business, Finance
## 9584 15-1132 151132 Computer, Math
## 9585 13-1111 131111 Business, Finance
## 9586 13-2011 132011 Business, Finance
## 9587 15-1132 151132 Computer, Math
## 9588 15-1132 151132 Computer, Math
## 9589 15-1121 151121 Computer, Math
## 9590 41-9031 419031 Sales
## 9591 17-2021 172021 Architecture, Engineer
## 9592 19-1042 191042 Life, Physcial, Social Science
## 9593 15-1132 151132 Computer, Math
## 9594 15-1141 151141 Computer, Math
## 9595 15-1121 151121 Computer, Math
## 9596 15-1121 151121 Computer, Math
## 9597 15-1132 151132 Computer, Math
## 9598 15-1132 151132 Computer, Math
## 9599 15-1132 151132 Computer, Math
## 9600 17-2199 172199 Architecture, Engineer
## 9601 13-2051 132051 Business, Finance
## 9602 13-1111 131111 Business, Finance
## 9603 15-1132 151132 Computer, Math
## 9604 15-1132 151132 Computer, Math
## 9605 15-1132 151132 Computer, Math
## 9606 15-1132 151132 Computer, Math
## 9607 15-1132 151132 Computer, Math
## 9608 15-1199 151199 Computer, Math
## 9609 15-1121 151121 Computer, Math
## 9610 13-2051 132051 Business, Finance
## 9611 15-1131 151131 Computer, Math
## 9612 29-9099 299099 Healthcare Practitioner
## 9613 15-1121 151121 Computer, Math
## 9614 13-2011 132011 Business, Finance
## 9615 17-2071 172071 Architecture, Engineer
## 9616 15-1131 151131 Computer, Math
## 9617 15-1121 151121 Computer, Math
## 9618 15-1141 151141 Computer, Math
## 9619 15-1121 151121 Computer, Math
## 9620 15-1121 151121 Computer, Math
## 9621 15-1132 151132 Computer, Math
## 9622 15-1131 151131 Computer, Math
## 9623 15-1199 151199 Computer, Math
## 9624 29-1065 291065 Healthcare Practitioner
## 9625 15-1132 151132 Computer, Math
## 9626 15-1132 151132 Computer, Math
## 9627 13-2011 132011 Business, Finance
## 9628 15-1132 151132 Computer, Math
## 9629 15-1131 151131 Computer, Math
## 9630 13-1041 131041 Business, Finance
## 9631 15-1121 151121 Computer, Math
## 9632 15-1111 151111 Computer, Math
## 9633 15-1199 151199 Computer, Math
## 9634 15-1034 151034 Computer, Math
## 9635 15-1132 151132 Computer, Math
## 9636 15-1132 151132 Computer, Math
## 9637 15-1199 151199 Computer, Math
## 9638 19-2031 192031 Life, Physcial, Social Science
## 9639 15-1121 151121 Computer, Math
## 9640 15-1132 151132 Computer, Math
## 9641 15-1199 151199 Computer, Math
## 9642 15-1132 151132 Computer, Math
## 9643 15-1133 151133 Computer, Math
## 9644 15-1142 151142 Computer, Math
## 9645 15-1132 151132 Computer, Math
## 9646 15-1121 151121 Computer, Math
## 9647 13-1081 131081 Business, Finance
## 9648 17-2171 172171 Architecture, Engineer
## 9649 15-1131 151131 Computer, Math
## 9650 15-1132 151132 Computer, Math
## 9651 15-1132 151132 Computer, Math
## 9652 15-1132 151132 Computer, Math
## 9653 15-1133 151133 Computer, Math
## 9654 15-2031 152031 Computer, Math
## 9655 13-1111 131111 Business, Finance
## 9656 15-1132 151132 Computer, Math
## 9657 13-1111 131111 Business, Finance
## 9658 15-1133 151133 Computer, Math
## 9659 15-1132 151132 Computer, Math
## 9660 15-1132 151132 Computer, Math
## 9661 15-1132 151132 Computer, Math
## 9662 15-1132 151132 Computer, Math
## 9663 15-1132 151132 Computer, Math
## 9664 15-1121 151121 Computer, Math
## 9665 15-1132 151132 Computer, Math
## 9666 15-1132 151132 Computer, Math
## 9667 15-1132 151132 Computer, Math
## 9668 15-1132 151132 Computer, Math
## 9669 15-1132 151132 Computer, Math
## 9670 25-1063 251063 Education, Training
## 9671 15-1132 151132 Computer, Math
## 9672 15-1132 151132 Computer, Math
## 9673 15-1131 151131 Computer, Math
## 9674 15-1199 151199 Computer, Math
## 9675 25-1022 251022 Education, Training
## 9676 11-9021 119021 Management
## 9677 15-1132 151132 Computer, Math
## 9678 15-1132 151132 Computer, Math
## 9679 15-1132 151132 Computer, Math
## 9680 15-1199 151199 Computer, Math
## 9681 15-1131 151131 Computer, Math
## 9682 19-3011 193011 Life, Physcial, Social Science
## 9683 15-1132 151132 Computer, Math
## 9684 29-1123 291123 Healthcare Practitioner
## 9685 15-1121 151121 Computer, Math
## 9686 15-1132 151132 Computer, Math
## 9687 13-2011 132011 Business, Finance
## 9688 15-1121 151121 Computer, Math
## 9689 15-1133 151133 Computer, Math
## 9690 13-2099 132099 Business, Finance
## 9691 15-1199 151199 Computer, Math
## 9692 15-2041 152041 Computer, Math
## 9693 19-1021 191021 Life, Physcial, Social Science
## 9694 15-1133 151133 Computer, Math
## 9695 13-1111 131111 Business, Finance
## 9696 15-1132 151132 Computer, Math
## 9697 15-1132 151132 Computer, Math
## 9698 15-1132 151132 Computer, Math
## 9699 15-1141 151141 Computer, Math
## 9700 15-1121 151121 Computer, Math
## 9701 19-1042 191042 Life, Physcial, Social Science
## 9702 15-1132 151132 Computer, Math
## 9703 15-2031 152031 Computer, Math
## 9704 15-1199 151199 Computer, Math
## 9705 15-1111 151111 Computer, Math
## 9706 25-1121 251121 Education, Training
## 9707 15-1132 151132 Computer, Math
## 9708 15-1132 151132 Computer, Math
## 9709 17-2072 172072 Architecture, Engineer
## 9710 15-1199 151199 Computer, Math
## 9711 11-1021 111021 Management
## 9712 15-1199 151199 Computer, Math
## 9713 15-1199 151199 Computer, Math
## 9714 15-1132 151132 Computer, Math
## 9715 15-1199 151199 Computer, Math
## 9716 15-1132 151132 Computer, Math
## 9717 15-1142 151142 Computer, Math
## 9718 15-1132 151132 Computer, Math
## 9719 15-1132 151132 Computer, Math
## 9720 17-2051 172051 Architecture, Engineer
## 9721 15-2031 152031 Computer, Math
## 9722 15-1122 151122 Computer, Math
## 9723 15-2031 152031 Computer, Math
## 9724 15-1131 151131 Computer, Math
## 9725 15-1132 151132 Computer, Math
## 9726 15-1132 151132 Computer, Math
## 9727 15-1132 151132 Computer, Math
## 9728 15-1199 151199 Computer, Math
## 9729 15-1133 151133 Computer, Math
## 9730 15-1199 151199 Computer, Math
## 9731 15-2031 152031 Computer, Math
## 9732 15-1199 151199 Computer, Math
## 9733 15-1121 151121 Computer, Math
## 9734 15-1132 151132 Computer, Math
## 9735 17-2141 172141 Architecture, Engineer
## 9736 15-1132 151132 Computer, Math
## 9737 15-1199 151199 Computer, Math
## 9738 15-1199 151199 Computer, Math
## 9739 15-1132 151132 Computer, Math
## 9740 13-2011 132011 Business, Finance
## 9741 17-2071 172071 Architecture, Engineer
## 9742 15-1121 151121 Computer, Math
## 9743 15-1132 151132 Computer, Math
## 9744 15-1132 151132 Computer, Math
## 9745 15-1199 151199 Computer, Math
## 9746 15-1142 151142 Computer, Math
## 9747 15-1132 151132 Computer, Math
## 9748 15-1199 151199 Computer, Math
## 9749 15-1199 151199 Computer, Math
## 9750 15-1131 151131 Computer, Math
## 9751 11-3071 113071 Management
## 9752 15-1132 151132 Computer, Math
## 9753 15-1199 151199 Computer, Math
## 9754 15-1199 151199 Computer, Math
## 9755 15-1132 151132 Computer, Math
## 9756 15-1199 151199 Computer, Math
## 9757 15-1121 151121 Computer, Math
## 9758 29-1069 291069 Healthcare Practitioner
## 9759 15-2031 152031 Computer, Math
## 9760 13-2011 132011 Business, Finance
## 9761 15-1132 151132 Computer, Math
## 9762 15-1121 151121 Computer, Math
## 9763 15-1132 151132 Computer, Math
## 9764 15-1131 151131 Computer, Math
## 9765 15-1121 151121 Computer, Math
## 9766 15-1132 151132 Computer, Math
## 9767 19-1042 191042 Life, Physcial, Social Science
## 9768 11-3021 113021 Management
## 9769 15-1121 151121 Computer, Math
## 9770 15-1132 151132 Computer, Math
## 9771 13-1161 131161 Business, Finance
## 9772 15-1132 151132 Computer, Math
## 9773 15-1121 151121 Computer, Math
## 9774 15-1134 151134 Computer, Math
## 9775 15-1121 151121 Computer, Math
## 9776 15-1132 151132 Computer, Math
## 9777 13-2011 132011 Business, Finance
## 9778 15-1199 151199 Computer, Math
## 9779 15-1121 151121 Computer, Math
## 9780 15-1132 151132 Computer, Math
## 9781 13-2011 132011 Business, Finance
## 9782 15-1132 151132 Computer, Math
## 9783 15-1121 151121 Computer, Math
## 9784 17-2141 172141 Architecture, Engineer
## 9785 15-1132 151132 Computer, Math
## 9786 13-1111 131111 Business, Finance
## 9787 15-1132 151132 Computer, Math
## 9788 15-1199 151199 Computer, Math
## 9789 15-1142 151142 Computer, Math
## 9790 15-1134 151134 Computer, Math
## 9791 13-1161 131161 Business, Finance
## 9792 15-2031 152031 Computer, Math
## 9793 15-1035 151035 Computer, Math
## 9794 19-4061 194061 Life, Physcial, Social Science
## 9795 15-1132 151132 Computer, Math
## 9796 27-3031 273031 Media, Design
## 9797 15-1132 151132 Computer, Math
## 9798 15-1133 151133 Computer, Math
## 9799 27-1021 271021 Media, Design
## 9800 15-1132 151132 Computer, Math
## 9801 15-1121 151121 Computer, Math
## 9802 15-1132 151132 Computer, Math
## 9803 15-1132 151132 Computer, Math
## 9804 29-1063 291063 Healthcare Practitioner
## 9805 15-1132 151132 Computer, Math
## 9806 15-1132 151132 Computer, Math
## 9807 13-1111 131111 Business, Finance
## 9808 25-1193 251193 Education, Training
## 9809 17-2141 172141 Architecture, Engineer
## 9810 15-1132 151132 Computer, Math
## 9811 29-1069 291069 Healthcare Practitioner
## 9812 15-1199 151199 Computer, Math
## 9813 17-2141 172141 Architecture, Engineer
## 9814 15-1199 151199 Computer, Math
## 9815 13-1111 131111 Business, Finance
## 9816 17-2112 172112 Architecture, Engineer
## 9817 15-1133 151133 Computer, Math
## 9818 25-1122 251122 Education, Training
## 9819 15-1141 151141 Computer, Math
## 9820 15-1199 151199 Computer, Math
## 9821 15-1132 151132 Computer, Math
## 9822 15-2031 152031 Computer, Math
## 9823 13-2011 132011 Business, Finance
## 9824 19-1029 191029 Life, Physcial, Social Science
## 9825 15-1141 151141 Computer, Math
## 9826 13-1161 131161 Business, Finance
## 9827 15-1132 151132 Computer, Math
## 9828 15-1121 151121 Computer, Math
## 9829 15-1199 151199 Computer, Math
## 9830 15-1132 151132 Computer, Math
## 9831 17-2031 172031 Architecture, Engineer
## 9832 17-2199 172199 Architecture, Engineer
## 9833 15-1132 151132 Computer, Math
## 9834 15-1132 151132 Computer, Math
## 9835 15-1199 151199 Computer, Math
## 9836 15-1132 151132 Computer, Math
## 9837 13-2011 132011 Business, Finance
## 9838 15-1132 151132 Computer, Math
## 9839 15-1121 151121 Computer, Math
## 9840 15-1121 151121 Computer, Math
## 9841 13-1111 131111 Business, Finance
## 9842 25-1022 251022 Education, Training
## 9843 15-1132 151132 Computer, Math
## 9844 15-1132 151132 Computer, Math
## 9845 15-1132 151132 Computer, Math
## 9846 29-1069 291069 Healthcare Practitioner
## 9847 15-1131 151131 Computer, Math
## 9848 15-1132 151132 Computer, Math
## 9849 15-1121 151121 Computer, Math
## 9850 15-1132 151132 Computer, Math
## 9851 15-1111 151111 Computer, Math
## 9852 15-1132 151132 Computer, Math
## 9853 25-1121 251121 Education, Training
## 9854 15-1199 151199 Computer, Math
## 9855 15-1141 151141 Computer, Math
## 9856 15-1132 151132 Computer, Math
## 9857 15-1199 151199 Computer, Math
## 9858 15-1121 151121 Computer, Math
## 9859 15-1121 151121 Computer, Math
## 9860 13-2011 132011 Business, Finance
## 9861 15-1121 151121 Computer, Math
## 9862 15-1121 151121 Computer, Math
## 9863 15-1121 151121 Computer, Math
## 9864 25-1052 251052 Education, Training
## 9865 15-1132 151132 Computer, Math
## 9866 15-1199 151199 Computer, Math
## 9867 15-1132 151132 Computer, Math
## 9868 15-1121 151121 Computer, Math
## 9869 15-1132 151132 Computer, Math
## 9870 15-1132 151132 Computer, Math
## 9871 15-1199 151199 Computer, Math
## 9872 15-1132 151132 Computer, Math
## 9873 27-1014 271014 Media, Design
## 9874 15-1132 151132 Computer, Math
## 9875 15-1121 151121 Computer, Math
## 9876 13-1161 131161 Business, Finance
## 9877 13-2011 132011 Business, Finance
## 9878 15-1199 151199 Computer, Math
## 9879 15-1199 151199 Computer, Math
## 9880 15-1132 151132 Computer, Math
## 9881 15-2031 152031 Computer, Math
## 9882 15-1199 151199 Computer, Math
## 9883 15-1142 151142 Computer, Math
## 9884 15-1133 151133 Computer, Math
## 9885 17-2053 172053 Architecture, Engineer
## 9886 17-2199 172199 Architecture, Engineer
## 9887 15-1199 151199 Computer, Math
## 9888 15-1132 151132 Computer, Math
## 9889 15-1132 151132 Computer, Math
## 9890 15-1132 151132 Computer, Math
## 9891 15-1132 151132 Computer, Math
## 9892 13-2099 132099 Business, Finance
## 9893 15-1132 151132 Computer, Math
## 9894 15-1199 151199 Computer, Math
## 9895 19-1099 191099 Life, Physcial, Social Science
## 9896 13-1111 131111 Business, Finance
## 9897 15-1132 151132 Computer, Math
## 9898 13-1161 131161 Business, Finance
## 9899 11-9021 119021 Management
## 9900 15-1121 151121 Computer, Math
## 9901 17-2199 172199 Architecture, Engineer
## 9902 15-1121 151121 Computer, Math
## 9903 25-1071 251071 Education, Training
## 9904 15-1131 151131 Computer, Math
## 9905 15-1132 151132 Computer, Math
## 9906 15-1132 151132 Computer, Math
## 9907 19-1029 191029 Life, Physcial, Social Science
## 9908 15-1143 151143 Computer, Math
## 9909 15-1132 151132 Computer, Math
## 9910 13-2099 132099 Business, Finance
## 9911 29-1021 291021 Healthcare Practitioner
## 9912 15-1132 151132 Computer, Math
## 9913 11-3021 113021 Management
## 9914 15-1199 151199 Computer, Math
## 9915 15-1132 151132 Computer, Math
## 9916 15-1132 151132 Computer, Math
## 9917 13-2051 132051 Business, Finance
## 9918 15-1199 151199 Computer, Math
## 9919 15-1122 151122 Computer, Math
## 9920 15-1132 151132 Computer, Math
## 9921 15-1121 151121 Computer, Math
## 9922 15-1132 151132 Computer, Math
## 9923 15-1121 151121 Computer, Math
## 9924 17-2131 172131 Architecture, Engineer
## 9925 13-1111 131111 Business, Finance
## 9926 15-1131 151131 Computer, Math
## 9927 15-1131 151131 Computer, Math
## 9928 29-1141 291141 Healthcare Practitioner
## 9929 29-1127 291127 Healthcare Practitioner
## 9930 15-1199 151199 Computer, Math
## 9931 13-1111 131111 Business, Finance
## 9932 15-1132 151132 Computer, Math
## 9933 15-1132 151132 Computer, Math
## 9934 15-2031 152031 Computer, Math
## 9935 15-1141 151141 Computer, Math
## 9936 15-1132 151132 Computer, Math
## 9937 15-1199 151199 Computer, Math
## 9938 15-1121 151121 Computer, Math
## 9939 15-1142 151142 Computer, Math
## 9940 17-2112 172112 Architecture, Engineer
## 9941 15-1132 151132 Computer, Math
## 9942 13-2051 132051 Business, Finance
## 9943 15-1132 151132 Computer, Math
## 9944 13-2051 132051 Business, Finance
## 9945 15-1199 151199 Computer, Math
## 9946 15-1132 151132 Computer, Math
## 9947 27-1024 271024 Media, Design
## 9948 15-1199 151199 Computer, Math
## 9949 15-1121 151121 Computer, Math
## 9950 15-1199 151199 Computer, Math
## 9951 13-2099 132099 Business, Finance
## 9952 11-3021 113021 Management
## 9953 15-1132 151132 Computer, Math
## 9954 15-1132 151132 Computer, Math
## 9955 15-1132 151132 Computer, Math
## 9956 11-3021 113021 Management
## 9957 13-2099 132099 Business, Finance
## 9958 15-1132 151132 Computer, Math
## 9959 17-2112 172112 Architecture, Engineer
## 9960 15-1132 151132 Computer, Math
## 9961 15-2031 152031 Computer, Math
## 9962 41-9031 419031 Sales
## 9963 25-1067 251067 Education, Training
## 9964 15-1132 151132 Computer, Math
## 9965 15-1132 151132 Computer, Math
## 9966 25-2053 252053 Education, Training
## 9967 11-9033 119033 Management
## 9968 15-1132 151132 Computer, Math
## 9969 15-1133 151133 Computer, Math
## 9970 15-1121 151121 Computer, Math
## 9971 15-1199 151199 Computer, Math
## 9972 15-1132 151132 Computer, Math
## 9973 15-1132 151132 Computer, Math
## 9974 15-1132 151132 Computer, Math
## 9975 19-3011 193011 Life, Physcial, Social Science
## 9976 15-1132 151132 Computer, Math
## 9977 15-1121 151121 Computer, Math
## 9978 13-2051 132051 Business, Finance
## 9979 15-1134 151134 Computer, Math
## 9980 15-1132 151132 Computer, Math
## 9981 15-1132 151132 Computer, Math
## 9982 17-2141 172141 Architecture, Engineer
## 9983 15-1121 151121 Computer, Math
## 9984 15-1133 151133 Computer, Math
## 9985 15-1121 151121 Computer, Math
## 9986 15-1132 151132 Computer, Math
## 9987 15-1132 151132 Computer, Math
## 9988 15-1132 151132 Computer, Math
## 9989 15-1132 151132 Computer, Math
## 9990 11-3021 113021 Management
## 9991 15-1121 151121 Computer, Math
## 9992 13-2011 132011 Business, Finance
## 9993 15-1132 151132 Computer, Math
## 9994 17-2051 172051 Architecture, Engineer
## 9995 15-1121 151121 Computer, Math
## 9996 15-1199 151199 Computer, Math
## 9997 15-1133 151133 Computer, Math
## 9998 15-1121 151121 Computer, Math
## 9999 15-1132 151132 Computer, Math
## 10000 15-1132 151132 Computer, Math
## 10001 15-1131 151131 Computer, Math
## 10002 17-2071 172071 Architecture, Engineer
## 10003 15-1121 151121 Computer, Math
## 10004 15-1132 151132 Computer, Math
## 10005 15-1132 151132 Computer, Math
## 10006 11-2021 112021 Management
## 10007 15-1132 151132 Computer, Math
## 10008 15-2031 152031 Computer, Math
## 10009 15-1133 151133 Computer, Math
## 10010 15-1132 151132 Computer, Math
## 10011 15-1132 151132 Computer, Math
## 10012 19-3011 193011 Life, Physcial, Social Science
## 10013 17-2112 172112 Architecture, Engineer
## 10014 15-2031 152031 Computer, Math
## 10015 17-2141 172141 Architecture, Engineer
## 10016 15-1133 151133 Computer, Math
## 10017 15-2041 152041 Computer, Math
## 10018 17-2071 172071 Architecture, Engineer
## 10019 15-1132 151132 Computer, Math
## 10020 15-1133 151133 Computer, Math
## 10021 15-1132 151132 Computer, Math
## 10022 17-2141 172141 Architecture, Engineer
## 10023 15-2041 152041 Computer, Math
## 10024 15-1199 151199 Computer, Math
## 10025 15-1199 151199 Computer, Math
## 10026 15-1133 151133 Computer, Math
## 10027 15-1132 151132 Computer, Math
## 10028 15-1132 151132 Computer, Math
## 10029 17-2112 172112 Architecture, Engineer
## 10030 15-1132 151132 Computer, Math
## 10031 15-2031 152031 Computer, Math
## 10032 13-2011 132011 Business, Finance
## 10033 15-1131 151131 Computer, Math
## 10034 15-1132 151132 Computer, Math
## 10035 17-2141 172141 Architecture, Engineer
## 10036 19-1021 191021 Life, Physcial, Social Science
## 10037 15-1121 151121 Computer, Math
## 10038 15-1199 151199 Computer, Math
## 10039 15-1132 151132 Computer, Math
## 10040 15-1121 151121 Computer, Math
## 10041 15-1132 151132 Computer, Math
## 10042 15-1121 151121 Computer, Math
## 10043 15-1132 151132 Computer, Math
## 10044 17-2141 172141 Architecture, Engineer
## 10045 15-1121 151121 Computer, Math
## 10046 15-1131 151131 Computer, Math
## 10047 15-1199 151199 Computer, Math
## 10048 15-1132 151132 Computer, Math
## 10049 17-2051 172051 Architecture, Engineer
## 10050 15-1132 151132 Computer, Math
## 10051 15-1141 151141 Computer, Math
## 10052 13-1111 131111 Business, Finance
## 10053 15-1199 151199 Computer, Math
## 10054 15-1199 151199 Computer, Math
## 10055 15-2041 152041 Computer, Math
## 10056 13-2099 132099 Business, Finance
## 10057 15-1132 151132 Computer, Math
## 10058 19-1042 191042 Life, Physcial, Social Science
## 10059 15-1199 151199 Computer, Math
## 10060 15-1121 151121 Computer, Math
## 10061 15-1132 151132 Computer, Math
## 10062 15-1132 151132 Computer, Math
## 10063 15-1132 151132 Computer, Math
## 10064 15-1132 151132 Computer, Math
## 10065 15-1132 151132 Computer, Math
## 10066 15-1199 151199 Computer, Math
## 10067 13-2011 132011 Business, Finance
## 10068 15-1141 151141 Computer, Math
## 10069 15-1121 151121 Computer, Math
## 10070 11-9199 119199 Management
## 10071 15-2041 152041 Computer, Math
## 10072 15-1132 151132 Computer, Math
## 10073 15-1132 151132 Computer, Math
## 10074 15-1132 151132 Computer, Math
## 10075 17-2041 172041 Architecture, Engineer
## 10076 17-2051 172051 Architecture, Engineer
## 10077 13-2011 132011 Business, Finance
## 10078 17-2131 172131 Architecture, Engineer
## 10079 15-1132 151132 Computer, Math
## 10080 17-2141 172141 Architecture, Engineer
## 10081 15-1132 151132 Computer, Math
## 10082 15-2041 152041 Computer, Math
## 10083 15-2041 152041 Computer, Math
## 10084 15-2031 152031 Computer, Math
## 10085 15-1132 151132 Computer, Math
## 10086 17-2141 172141 Architecture, Engineer
## 10087 17-2199 172199 Architecture, Engineer
## 10088 13-2051 132051 Business, Finance
## 10089 13-1111 131111 Business, Finance
## 10090 15-1132 151132 Computer, Math
## 10091 29-1123 291123 Healthcare Practitioner
## 10092 15-1141 151141 Computer, Math
## 10093 15-1132 151132 Computer, Math
## 10094 15-1199 151199 Computer, Math
## 10095 15-1143 151143 Computer, Math
## 10096 13-1111 131111 Business, Finance
## 10097 17-2141 172141 Architecture, Engineer
## 10098 15-1132 151132 Computer, Math
## 10099 17-2071 172071 Architecture, Engineer
## 10100 15-1132 151132 Computer, Math
## 10101 15-1133 151133 Computer, Math
## 10102 15-2021 152021 Computer, Math
## 10103 15-1132 151132 Computer, Math
## 10104 15-1132 151132 Computer, Math
## 10105 15-1121 151121 Computer, Math
## 10106 15-1199 151199 Computer, Math
## 10107 15-1132 151132 Computer, Math
## 10108 19-1042 191042 Life, Physcial, Social Science
## 10109 15-1132 151132 Computer, Math
## 10110 29-1063 291063 Healthcare Practitioner
## 10111 17-2199 172199 Architecture, Engineer
## 10112 15-1121 151121 Computer, Math
## 10113 25-1193 251193 Education, Training
## 10114 15-1142 151142 Computer, Math
## 10115 15-1132 151132 Computer, Math
## 10116 15-1132 151132 Computer, Math
## 10117 19-3011 193011 Life, Physcial, Social Science
## 10118 15-1132 151132 Computer, Math
## 10119 15-1143 151143 Computer, Math
## 10120 15-1141 151141 Computer, Math
## 10121 15-1142 151142 Computer, Math
## 10122 17-2041 172041 Architecture, Engineer
## 10123 11-3021 113021 Management
## 10124 15-1121 151121 Computer, Math
## 10125 15-1132 151132 Computer, Math
## 10126 15-1133 151133 Computer, Math
## 10127 15-1131 151131 Computer, Math
## 10128 15-1132 151132 Computer, Math
## 10129 15-1199 151199 Computer, Math
## 10130 15-1142 151142 Computer, Math
## 10131 11-3021 113021 Management
## 10132 15-1199 151199 Computer, Math
## 10133 19-2012 192012 Life, Physcial, Social Science
## 10134 15-1122 151122 Computer, Math
## 10135 15-1132 151132 Computer, Math
## 10136 17-2112 172112 Architecture, Engineer
## 10137 15-1121 151121 Computer, Math
## 10138 11-9039 119039 Management
## 10139 15-1131 151131 Computer, Math
## 10140 15-1132 151132 Computer, Math
## 10141 29-1021 291021 Healthcare Practitioner
## 10142 13-2031 132031 Business, Finance
## 10143 11-1021 111021 Management
## 10144 15-1132 151132 Computer, Math
## 10145 15-1133 151133 Computer, Math
## 10146 15-1133 151133 Computer, Math
## 10147 15-1132 151132 Computer, Math
## 10148 13-1081 131081 Business, Finance
## 10149 15-1121 151121 Computer, Math
## 10150 19-1022 191022 Life, Physcial, Social Science
## 10151 13-2011 132011 Business, Finance
## 10152 15-1133 151133 Computer, Math
## 10153 15-1132 151132 Computer, Math
## 10154 15-1121 151121 Computer, Math
## 10155 15-1132 151132 Computer, Math
## 10156 15-1121 151121 Computer, Math
## 10157 17-2199 172199 Architecture, Engineer
## 10158 15-1199 151199 Computer, Math
## 10159 15-1133 151133 Computer, Math
## 10160 15-1132 151132 Computer, Math
## 10161 15-1142 151142 Computer, Math
## 10162 15-1132 151132 Computer, Math
## 10163 15-1132 151132 Computer, Math
## 10164 15-1132 151132 Computer, Math
## 10165 17-2131 172131 Architecture, Engineer
## 10166 15-1132 151132 Computer, Math
## 10167 15-1142 151142 Computer, Math
## 10168 15-1199 151199 Computer, Math
## 10169 25-2052 252052 Education, Training
## 10170 15-1132 151132 Computer, Math
## 10171 27-3043 273043 Media, Design
## 10172 15-1131 151131 Computer, Math
## 10173 29-1069 291069 Healthcare Practitioner
## 10174 15-1132 151132 Computer, Math
## 10175 15-1131 151131 Computer, Math
## 10176 15-1121 151121 Computer, Math
## 10177 15-1132 151132 Computer, Math
## 10178 11-3021 113021 Management
## 10179 17-2071 172071 Architecture, Engineer
## 10180 23-1011 231011 Legal
## 10181 11-3031 113031 Management
## 10182 17-2141 172141 Architecture, Engineer
## 10183 15-1121 151121 Computer, Math
## 10184 15-1141 151141 Computer, Math
## 10185 15-1199 151199 Computer, Math
## 10186 25-2022 252022 Education, Training
## 10187 15-1132 151132 Computer, Math
## 10188 15-2031 152031 Computer, Math
## 10189 17-2112 172112 Architecture, Engineer
## 10190 15-1132 151132 Computer, Math
## 10191 15-2031 152031 Computer, Math
## 10192 19-1021 191021 Life, Physcial, Social Science
## 10193 15-1132 151132 Computer, Math
## 10194 17-2072 172072 Architecture, Engineer
## 10195 15-1132 151132 Computer, Math
## 10196 15-1199 151199 Computer, Math
## 10197 13-2011 132011 Business, Finance
## 10198 15-1121 151121 Computer, Math
## 10199 15-1132 151132 Computer, Math
## 10200 15-1132 151132 Computer, Math
## 10201 17-2112 172112 Architecture, Engineer
## 10202 17-2141 172141 Architecture, Engineer
## 10203 15-1132 151132 Computer, Math
## 10204 19-1021 191021 Life, Physcial, Social Science
## 10205 15-1132 151132 Computer, Math
## 10206 27-1021 271021 Media, Design
## 10207 29-1123 291123 Healthcare Practitioner
## 10208 25-2031 252031 Education, Training
## 10209 13-1111 131111 Business, Finance
## 10210 15-1121 151121 Computer, Math
## 10211 17-2141 172141 Architecture, Engineer
## 10212 17-2141 172141 Architecture, Engineer
## 10213 13-2051 132051 Business, Finance
## 10214 15-1132 151132 Computer, Math
## 10215 29-1123 291123 Healthcare Practitioner
## 10216 15-2041 152041 Computer, Math
## 10217 15-1132 151132 Computer, Math
## 10218 11-3021 113021 Management
## 10219 15-1199 151199 Computer, Math
## 10220 15-1121 151121 Computer, Math
## 10221 15-1121 151121 Computer, Math
## 10222 15-1132 151132 Computer, Math
## 10223 15-1199 151199 Computer, Math
## 10224 15-1121 151121 Computer, Math
## 10225 15-2031 152031 Computer, Math
## 10226 15-1199 151199 Computer, Math
## 10227 15-1121 151121 Computer, Math
## 10228 19-1021 191021 Life, Physcial, Social Science
## 10229 15-1132 151132 Computer, Math
## 10230 15-1132 151132 Computer, Math
## 10231 15-1121 151121 Computer, Math
## 10232 15-1199 151199 Computer, Math
## 10233 15-1199 151199 Computer, Math
## 10234 15-1141 151141 Computer, Math
## 10235 11-3021 113021 Management
## 10236 15-1131 151131 Computer, Math
## 10237 15-1121 151121 Computer, Math
## 10238 15-1132 151132 Computer, Math
## 10239 15-1132 151132 Computer, Math
## 10240 15-1132 151132 Computer, Math
## 10241 15-1132 151132 Computer, Math
## 10242 15-1131 151131 Computer, Math
## 10243 25-1042 251042 Education, Training
## 10244 15-1131 151131 Computer, Math
## 10245 15-1199 151199 Computer, Math
## 10246 15-1132 151132 Computer, Math
## 10247 15-1121 151121 Computer, Math
## 10248 15-1142 151142 Computer, Math
## 10249 19-2031 192031 Life, Physcial, Social Science
## 10250 15-1132 151132 Computer, Math
## 10251 15-2041 152041 Computer, Math
## 10252 25-1124 251124 Education, Training
## 10253 15-1141 151141 Computer, Math
## 10254 15-1121 151121 Computer, Math
## 10255 15-1199 151199 Computer, Math
## 10256 15-1199 151199 Computer, Math
## 10257 15-1132 151132 Computer, Math
## 10258 15-1199 151199 Computer, Math
## 10259 15-1199 151199 Computer, Math
## 10260 15-2031 152031 Computer, Math
## 10261 15-1121 151121 Computer, Math
## 10262 15-1132 151132 Computer, Math
## 10263 15-1132 151132 Computer, Math
## 10264 15-1132 151132 Computer, Math
## 10265 15-1132 151132 Computer, Math
## 10266 15-1132 151132 Computer, Math
## 10267 15-1121 151121 Computer, Math
## 10268 15-1132 151132 Computer, Math
## 10269 15-1199 151199 Computer, Math
## 10270 15-1132 151132 Computer, Math
## 10271 13-1161 131161 Business, Finance
## 10272 15-1132 151132 Computer, Math
## 10273 15-1133 151133 Computer, Math
## 10274 15-1199 151199 Computer, Math
## 10275 15-1132 151132 Computer, Math
## 10276 15-1132 151132 Computer, Math
## 10277 15-1132 151132 Computer, Math
## 10278 15-1134 151134 Computer, Math
## 10279 15-1132 151132 Computer, Math
## 10280 15-1132 151132 Computer, Math
## 10281 15-1131 151131 Computer, Math
## 10282 15-1132 151132 Computer, Math
## 10283 15-1121 151121 Computer, Math
## 10284 15-1121 151121 Computer, Math
## 10285 15-1199 151199 Computer, Math
## 10286 15-1121 151121 Computer, Math
## 10287 19-1022 191022 Life, Physcial, Social Science
## 10288 15-1132 151132 Computer, Math
## 10289 15-1132 151132 Computer, Math
## 10290 15-1132 151132 Computer, Math
## 10291 15-1199 151199 Computer, Math
## 10292 27-1024 271024 Media, Design
## 10293 15-1134 151134 Computer, Math
## 10294 41-9031 419031 Sales
## 10295 15-1131 151131 Computer, Math
## 10296 17-2112 172112 Architecture, Engineer
## 10297 23-2011 232011 Legal
## 10298 15-1132 151132 Computer, Math
## 10299 15-1132 151132 Computer, Math
## 10300 15-1132 151132 Computer, Math
## 10301 15-2041 152041 Computer, Math
## 10302 15-1199 151199 Computer, Math
## 10303 25-1071 251071 Education, Training
## 10304 15-1121 151121 Computer, Math
## 10305 15-1132 151132 Computer, Math
## 10306 15-1121 151121 Computer, Math
## 10307 15-1131 151131 Computer, Math
## 10308 15-1132 151132 Computer, Math
## 10309 15-1133 151133 Computer, Math
## 10310 15-1132 151132 Computer, Math
## 10311 15-1132 151132 Computer, Math
## 10312 15-1133 151133 Computer, Math
## 10313 15-1111 151111 Computer, Math
## 10314 15-1132 151132 Computer, Math
## 10315 15-1132 151132 Computer, Math
## 10316 17-2199 172199 Architecture, Engineer
## 10317 15-1132 151132 Computer, Math
## 10318 15-1132 151132 Computer, Math
## 10319 17-2071 172071 Architecture, Engineer
## 10320 17-2112 172112 Architecture, Engineer
## 10321 15-1132 151132 Computer, Math
## 10322 13-1161 131161 Business, Finance
## 10323 15-1199 151199 Computer, Math
## 10324 15-1132 151132 Computer, Math
## 10325 15-1133 151133 Computer, Math
## 10326 15-1132 151132 Computer, Math
## 10327 15-1132 151132 Computer, Math
## 10328 15-2031 152031 Computer, Math
## 10329 15-1132 151132 Computer, Math
## 10330 29-2011 292011 Healthcare Practitioner
## 10331 15-1199 151199 Computer, Math
## 10332 13-2099 132099 Business, Finance
## 10333 15-1199 151199 Computer, Math
## 10334 15-1133 151133 Computer, Math
## 10335 15-1199 151199 Computer, Math
## 10336 15-1131 151131 Computer, Math
## 10337 15-1199 151199 Computer, Math
## 10338 15-1141 151141 Computer, Math
## 10339 15-1199 151199 Computer, Math
## 10340 15-1121 151121 Computer, Math
## 10341 11-9041 119041 Management
## 10342 17-2071 172071 Architecture, Engineer
## 10343 15-1121 151121 Computer, Math
## 10344 15-1199 151199 Computer, Math
## 10345 15-1199 151199 Computer, Math
## 10346 17-2141 172141 Architecture, Engineer
## 10347 17-2072 172072 Architecture, Engineer
## 10348 15-1199 151199 Computer, Math
## 10349 15-1132 151132 Computer, Math
## 10350 25-1071 251071 Education, Training
## 10351 17-2061 172061 Architecture, Engineer
## 10352 15-1131 151131 Computer, Math
## 10353 15-1199 151199 Computer, Math
## 10354 15-1132 151132 Computer, Math
## 10355 15-1121 151121 Computer, Math
## 10356 13-1111 131111 Business, Finance
## 10357 17-1011 171011 Architecture, Engineer
## 10358 17-2141 172141 Architecture, Engineer
## 10359 15-1132 151132 Computer, Math
## 10360 15-1132 151132 Computer, Math
## 10361 15-1133 151133 Computer, Math
## 10362 15-1121 151121 Computer, Math
## 10363 17-2141 172141 Architecture, Engineer
## 10364 15-1199 151199 Computer, Math
## 10365 13-1199 131199 Business, Finance
## 10366 15-1132 151132 Computer, Math
## 10367 13-1161 131161 Business, Finance
## 10368 15-1121 151121 Computer, Math
## 10369 15-1132 151132 Computer, Math
## 10370 15-1132 151132 Computer, Math
## 10371 15-1133 151133 Computer, Math
## 10372 15-1132 151132 Computer, Math
## 10373 15-1199 151199 Computer, Math
## 10374 15-1132 151132 Computer, Math
## 10375 19-1012 191012 Life, Physcial, Social Science
## 10376 15-2031 152031 Computer, Math
## 10377 15-1121 151121 Computer, Math
## 10378 15-2031 152031 Computer, Math
## 10379 15-1121 151121 Computer, Math
## 10380 15-1132 151132 Computer, Math
## 10381 15-1199 151199 Computer, Math
## 10382 15-1132 151132 Computer, Math
## 10383 15-1199 151199 Computer, Math
## 10384 15-1132 151132 Computer, Math
## 10385 15-2031 152031 Computer, Math
## 10386 15-1132 151132 Computer, Math
## 10387 15-1121 151121 Computer, Math
## 10388 15-1132 151132 Computer, Math
## 10389 19-1042 191042 Life, Physcial, Social Science
## 10390 15-1121 151121 Computer, Math
## 10391 13-1081 131081 Business, Finance
## 10392 15-1131 151131 Computer, Math
## 10393 15-1132 151132 Computer, Math
## 10394 15-1133 151133 Computer, Math
## 10395 15-1121 151121 Computer, Math
## 10396 15-1132 151132 Computer, Math
## 10397 15-1199 151199 Computer, Math
## 10398 15-1141 151141 Computer, Math
## 10399 15-1132 151132 Computer, Math
## 10400 15-1132 151132 Computer, Math
## 10401 15-1141 151141 Computer, Math
## 10402 15-1199 151199 Computer, Math
## 10403 15-1132 151132 Computer, Math
## 10404 15-1132 151132 Computer, Math
## 10405 15-1199 151199 Computer, Math
## 10406 17-2072 172072 Architecture, Engineer
## 10407 15-1199 151199 Computer, Math
## 10408 13-1111 131111 Business, Finance
## 10409 25-2021 252021 Education, Training
## 10410 15-1132 151132 Computer, Math
## 10411 19-1029 191029 Life, Physcial, Social Science
## 10412 15-1131 151131 Computer, Math
## 10413 15-1132 151132 Computer, Math
## 10414 15-1121 151121 Computer, Math
## 10415 15-1132 151132 Computer, Math
## 10416 15-1132 151132 Computer, Math
## 10417 17-2199 172199 Architecture, Engineer
## 10418 15-1132 151132 Computer, Math
## 10419 15-1132 151132 Computer, Math
## 10420 15-2031 152031 Computer, Math
## 10421 15-1132 151132 Computer, Math
## 10422 17-2061 172061 Architecture, Engineer
## 10423 11-3021 113021 Management
## 10424 15-1132 151132 Computer, Math
## 10425 15-1132 151132 Computer, Math
## 10426 13-1111 131111 Business, Finance
## 10427 13-1081 131081 Business, Finance
## 10428 11-9041 119041 Management
## 10429 15-1199 151199 Computer, Math
## 10430 13-1111 131111 Business, Finance
## 10431 15-1132 151132 Computer, Math
## 10432 15-1133 151133 Computer, Math
## 10433 15-1133 151133 Computer, Math
## 10434 15-1132 151132 Computer, Math
## 10435 15-1132 151132 Computer, Math
## 10436 25-4012 254012 Education, Training
## 10437 15-1132 151132 Computer, Math
## 10438 15-1132 151132 Computer, Math
## 10439 15-1199 151199 Computer, Math
## 10440 13-1111 131111 Business, Finance
## 10441 15-1121 151121 Computer, Math
## 10442 29-1123 291123 Healthcare Practitioner
## 10443 15-1132 151132 Computer, Math
## 10444 15-1133 151133 Computer, Math
## 10445 15-1134 151134 Computer, Math
## 10446 17-2141 172141 Architecture, Engineer
## 10447 15-1151 151151 Computer, Math
## 10448 15-2041 152041 Computer, Math
## 10449 15-1143 151143 Computer, Math
## 10450 15-1141 151141 Computer, Math
## 10451 15-1132 151132 Computer, Math
## 10452 15-1132 151132 Computer, Math
## 10453 15-2031 152031 Computer, Math
## 10454 15-1132 151132 Computer, Math
## 10455 13-1111 131111 Business, Finance
## 10456 15-1133 151133 Computer, Math
## 10457 13-1111 131111 Business, Finance
## 10458 13-2011 132011 Business, Finance
## 10459 17-2071 172071 Architecture, Engineer
## 10460 15-1132 151132 Computer, Math
## 10461 25-1071 251071 Education, Training
## 10462 17-2141 172141 Architecture, Engineer
## 10463 15-1142 151142 Computer, Math
## 10464 15-1199 151199 Computer, Math
## 10465 15-1132 151132 Computer, Math
## 10466 15-1121 151121 Computer, Math
## 10467 15-1121 151121 Computer, Math
## 10468 13-2051 132051 Business, Finance
## 10469 15-2031 152031 Computer, Math
## 10470 13-1161 131161 Business, Finance
## 10471 15-1133 151133 Computer, Math
## 10472 13-2011 132011 Business, Finance
## 10473 15-1142 151142 Computer, Math
## 10474 15-1133 151133 Computer, Math
## 10475 15-1121 151121 Computer, Math
## 10476 13-2031 132031 Business, Finance
## 10477 15-1121 151121 Computer, Math
## 10478 15-2041 152041 Computer, Math
## 10479 15-1132 151132 Computer, Math
## 10480 15-1121 151121 Computer, Math
## 10481 15-1142 151142 Computer, Math
## 10482 15-1122 151122 Computer, Math
## 10483 17-2141 172141 Architecture, Engineer
## 10484 15-1121 151121 Computer, Math
## 10485 15-1199 151199 Computer, Math
## 10486 13-1111 131111 Business, Finance
## 10487 17-2112 172112 Architecture, Engineer
## 10488 13-2011 132011 Business, Finance
## 10489 15-1132 151132 Computer, Math
## 10490 17-2071 172071 Architecture, Engineer
## 10491 15-1133 151133 Computer, Math
## 10492 15-1199 151199 Computer, Math
## 10493 15-1199 151199 Computer, Math
## 10494 15-1132 151132 Computer, Math
## 10495 15-1199 151199 Computer, Math
## 10496 25-1124 251124 Education, Training
## 10497 15-1121 151121 Computer, Math
## 10498 15-1132 151132 Computer, Math
## 10499 15-1121 151121 Computer, Math
## 10500 15-1143 151143 Computer, Math
## 10501 17-2051 172051 Architecture, Engineer
## 10502 15-1132 151132 Computer, Math
## 10503 13-1111 131111 Business, Finance
## 10504 15-1132 151132 Computer, Math
## 10505 17-2071 172071 Architecture, Engineer
## 10506 15-1141 151141 Computer, Math
## 10507 13-1081 131081 Business, Finance
## 10508 17-2071 172071 Architecture, Engineer
## 10509 15-2031 152031 Computer, Math
## 10510 15-2031 152031 Computer, Math
## 10511 15-1132 151132 Computer, Math
## 10512 15-1133 151133 Computer, Math
## 10513 15-2031 152031 Computer, Math
## 10514 13-1111 131111 Business, Finance
## 10515 15-1132 151132 Computer, Math
## 10516 15-1132 151132 Computer, Math
## 10517 15-1132 151132 Computer, Math
## 10518 15-1142 151142 Computer, Math
## 10519 15-1132 151132 Computer, Math
## 10520 17-2071 172071 Architecture, Engineer
## 10521 13-2051 132051 Business, Finance
## 10522 15-1121 151121 Computer, Math
## 10523 15-1199 151199 Computer, Math
## 10524 15-2041 152041 Computer, Math
## 10525 17-2141 172141 Architecture, Engineer
## 10526 15-1121 151121 Computer, Math
## 10527 15-1132 151132 Computer, Math
## 10528 15-1199 151199 Computer, Math
## 10529 15-1121 151121 Computer, Math
## 10530 15-1132 151132 Computer, Math
## 10531 17-2072 172072 Architecture, Engineer
## 10532 17-2199 172199 Architecture, Engineer
## 10533 17-2061 172061 Architecture, Engineer
## 10534 15-1199 151199 Computer, Math
## 10535 15-1132 151132 Computer, Math
## 10536 15-1132 151132 Computer, Math
## 10537 13-1161 131161 Business, Finance
## 10538 15-1132 151132 Computer, Math
## 10539 13-2011 132011 Business, Finance
## 10540 15-1121 151121 Computer, Math
## 10541 15-2041 152041 Computer, Math
## 10542 15-1199.01 151199 Computer, Math
## 10543 15-1121 151121 Computer, Math
## 10544 15-1132 151132 Computer, Math
## 10545 19-1021 191021 Life, Physcial, Social Science
## 10546 15-1121 151121 Computer, Math
## 10547 15-1132 151132 Computer, Math
## 10548 13-2011 132011 Business, Finance
## 10549 15-1131 151131 Computer, Math
## 10550 15-1121 151121 Computer, Math
## 10551 41-3031 413031 Sales
## 10552 17-2072 172072 Architecture, Engineer
## 10553 15-1132 151132 Computer, Math
## 10554 17-2011 172011 Architecture, Engineer
## 10555 15-1142 151142 Computer, Math
## 10556 15-1132 151132 Computer, Math
## 10557 15-1132 151132 Computer, Math
## 10558 15-1133 151133 Computer, Math
## 10559 15-1142 151142 Computer, Math
## 10560 15-1132 151132 Computer, Math
## 10561 15-1121 151121 Computer, Math
## 10562 15-1132 151132 Computer, Math
## 10563 15-1199 151199 Computer, Math
## 10564 15-1132 151132 Computer, Math
## 10565 15-1121 151121 Computer, Math
## 10566 15-1121 151121 Computer, Math
## 10567 15-1121 151121 Computer, Math
## 10568 15-1131 151131 Computer, Math
## 10569 15-1199 151199 Computer, Math
## 10570 29-1063 291063 Healthcare Practitioner
## 10571 13-1111 131111 Business, Finance
## 10572 15-1132 151132 Computer, Math
## 10573 15-1132 151132 Computer, Math
## 10574 15-1132 151132 Computer, Math
## 10575 19-1013 191013 Life, Physcial, Social Science
## 10576 15-1199 151199 Computer, Math
## 10577 13-2051 132051 Business, Finance
## 10578 15-1121 151121 Computer, Math
## 10579 15-1132 151132 Computer, Math
## 10580 11-3021 113021 Management
## 10581 15-1132 151132 Computer, Math
## 10582 15-1121 151121 Computer, Math
## 10583 15-1121 151121 Computer, Math
## 10584 15-1199 151199 Computer, Math
## 10585 15-1121 151121 Computer, Math
## 10586 15-1132 151132 Computer, Math
## 10587 15-1199 151199 Computer, Math
## 10588 15-2041 152041 Computer, Math
## 10589 15-1121 151121 Computer, Math
## 10590 15-1132 151132 Computer, Math
## 10591 15-1121 151121 Computer, Math
## 10592 17-2199 172199 Architecture, Engineer
## 10593 15-1132 151132 Computer, Math
## 10594 25-1022 251022 Education, Training
## 10595 15-1199 151199 Computer, Math
## 10596 11-9033 119033 Management
## 10597 17-2141 172141 Architecture, Engineer
## 10598 15-1121 151121 Computer, Math
## 10599 17-2071 172071 Architecture, Engineer
## 10600 15-1121 151121 Computer, Math
## 10601 15-1142 151142 Computer, Math
## 10602 13-1111 131111 Business, Finance
## 10603 15-1141 151141 Computer, Math
## 10604 15-1132 151132 Computer, Math
## 10605 25-1021 251021 Education, Training
## 10606 13-1111 131111 Business, Finance
## 10607 15-1199 151199 Computer, Math
## 10608 15-1134 151134 Computer, Math
## 10609 15-1134 151134 Computer, Math
## 10610 15-1132 151132 Computer, Math
## 10611 17-2141 172141 Architecture, Engineer
## 10612 15-1133 151133 Computer, Math
## 10613 15-1132 151132 Computer, Math
## 10614 15-1132 151132 Computer, Math
## 10615 17-2141 172141 Architecture, Engineer
## 10616 17-2071 172071 Architecture, Engineer
## 10617 19-2031 192031 Life, Physcial, Social Science
## 10618 15-1132 151132 Computer, Math
## 10619 15-1132 151132 Computer, Math
## 10620 15-1199 151199 Computer, Math
## 10621 15-1131 151131 Computer, Math
## 10622 27-1024 271024 Media, Design
## 10623 15-1131 151131 Computer, Math
## 10624 15-1132 151132 Computer, Math
## 10625 15-1121 151121 Computer, Math
## 10626 15-1132 151132 Computer, Math
## 10627 19-1012 191012 Life, Physcial, Social Science
## 10628 15-1143 151143 Computer, Math
## 10629 11-3021 113021 Management
## 10630 13-1161 131161 Business, Finance
## 10631 15-1142 151142 Computer, Math
## 10632 25-1042 251042 Education, Training
## 10633 17-2141 172141 Architecture, Engineer
## 10634 15-1121 151121 Computer, Math
## 10635 25-1071 251071 Education, Training
## 10636 19-2031 192031 Life, Physcial, Social Science
## 10637 15-1199 151199 Computer, Math
## 10638 15-1132 151132 Computer, Math
## 10639 15-1132 151132 Computer, Math
## 10640 17-2071 172071 Architecture, Engineer
## 10641 15-1132 151132 Computer, Math
## 10642 17-2199 172199 Architecture, Engineer
## 10643 15-1132 151132 Computer, Math
## 10644 27-1014 271014 Media, Design
## 10645 15-1132 151132 Computer, Math
## 10646 15-1132 151132 Computer, Math
## 10647 13-2011 132011 Business, Finance
## 10648 19-3022 193022 Life, Physcial, Social Science
## 10649 17-2074 172074 Architecture, Engineer
## 10650 15-1142 151142 Computer, Math
## 10651 15-2031 152031 Computer, Math
## 10652 15-1132 151132 Computer, Math
## 10653 19-2012 192012 Life, Physcial, Social Science
## 10654 15-2041 152041 Computer, Math
## 10655 15-1121 151121 Computer, Math
## 10656 15-1131 151131 Computer, Math
## 10657 15-1121 151121 Computer, Math
## 10658 15-1121 151121 Computer, Math
## 10659 15-1121 151121 Computer, Math
## 10660 15-1142 151142 Computer, Math
## 10661 15-1133 151133 Computer, Math
## 10662 15-1132 151132 Computer, Math
## 10663 15-1141 151141 Computer, Math
## 10664 13-1111 131111 Business, Finance
## 10665 15-1132 151132 Computer, Math
## 10666 15-1121 151121 Computer, Math
## 10667 15-1121 151121 Computer, Math
## 10668 15-1132 151132 Computer, Math
## 10669 15-1132 151132 Computer, Math
## 10670 15-1133 151133 Computer, Math
## 10671 15-1121 151121 Computer, Math
## 10672 15-1132 151132 Computer, Math
## 10673 15-1199 151199 Computer, Math
## 10674 15-1121 151121 Computer, Math
## 10675 13-1161 131161 Business, Finance
## 10676 19-1042 191042 Life, Physcial, Social Science
## 10677 15-1132 151132 Computer, Math
## 10678 15-2031 152031 Computer, Math
## 10679 15-1132 151132 Computer, Math
## 10680 15-1199 151199 Computer, Math
## 10681 15-1132 151132 Computer, Math
## 10682 17-2199 172199 Architecture, Engineer
## 10683 15-1132 151132 Computer, Math
## 10684 13-2011 132011 Business, Finance
## 10685 15-1111 151111 Computer, Math
## 10686 15-1133 151133 Computer, Math
## 10687 13-1161 131161 Business, Finance
## 10688 17-2112 172112 Architecture, Engineer
## 10689 15-1133 151133 Computer, Math
## 10690 15-1132 151132 Computer, Math
## 10691 15-1132 151132 Computer, Math
## 10692 15-1199 151199 Computer, Math
## 10693 11-3021 113021 Management
## 10694 15-1121 151121 Computer, Math
## 10695 25-1011 251011 Education, Training
## 10696 15-1199 151199 Computer, Math
## 10697 15-1121 151121 Computer, Math
## 10698 11-9031 119031 Management
## 10699 15-1132 151132 Computer, Math
## 10700 15-1199 151199 Computer, Math
## 10701 15-1132 151132 Computer, Math
## 10702 15-1132 151132 Computer, Math
## 10703 15-1132 151132 Computer, Math
## 10704 15-1132 151132 Computer, Math
## 10705 15-1199 151199 Computer, Math
## 10706 15-1132 151132 Computer, Math
## 10707 15-1132 151132 Computer, Math
## 10708 41-9031 419031 Sales
## 10709 15-1199 151199 Computer, Math
## 10710 13-2011 132011 Business, Finance
## 10711 17-2061 172061 Architecture, Engineer
## 10712 15-1132 151132 Computer, Math
## 10713 13-1111 131111 Business, Finance
## 10714 15-1132 151132 Computer, Math
## 10715 41-9031 419031 Sales
## 10716 15-1132 151132 Computer, Math
## 10717 13-2099 132099 Business, Finance
## 10718 15-1121 151121 Computer, Math
## 10719 15-1131 151131 Computer, Math
## 10720 15-1143 151143 Computer, Math
## 10721 15-1132 151132 Computer, Math
## 10722 15-1132 151132 Computer, Math
## 10723 15-1121 151121 Computer, Math
## 10724 15-1121 151121 Computer, Math
## 10725 15-1132 151132 Computer, Math
## 10726 15-1132 151132 Computer, Math
## 10727 15-1131 151131 Computer, Math
## 10728 15-1132 151132 Computer, Math
## 10729 15-1121 151121 Computer, Math
## 10730 15-2031 152031 Computer, Math
## 10731 29-1131 291131 Healthcare Practitioner
## 10732 15-1132 151132 Computer, Math
## 10733 15-1132 151132 Computer, Math
## 10734 15-1132 151132 Computer, Math
## 10735 15-1132 151132 Computer, Math
## 10736 15-1199 151199 Computer, Math
## 10737 15-1142 151142 Computer, Math
## 10738 15-1132 151132 Computer, Math
## 10739 15-1132 151132 Computer, Math
## 10740 15-1132 151132 Computer, Math
## 10741 17-2199 172199 Architecture, Engineer
## 10742 15-1132 151132 Computer, Math
## 10743 15-1132 151132 Computer, Math
## 10744 15-1132 151132 Computer, Math
## 10745 15-1133 151133 Computer, Math
## 10746 15-1199 151199 Computer, Math
## 10747 15-1132 151132 Computer, Math
## 10748 15-1121 151121 Computer, Math
## 10749 15-1131 151131 Computer, Math
## 10750 15-1121 151121 Computer, Math
## 10751 17-2061 172061 Architecture, Engineer
## 10752 17-2141 172141 Architecture, Engineer
## 10753 15-1132 151132 Computer, Math
## 10754 15-1132 151132 Computer, Math
## 10755 15-1132 151132 Computer, Math
## 10756 15-1132 151132 Computer, Math
## 10757 15-1199 151199 Computer, Math
## 10758 15-1199 151199 Computer, Math
## 10759 17-2141 172141 Architecture, Engineer
## 10760 25-1021 251021 Education, Training
## 10761 17-2071 172071 Architecture, Engineer
## 10762 15-1133 151133 Computer, Math
## 10763 17-2141 172141 Architecture, Engineer
## 10764 15-1133 151133 Computer, Math
## 10765 15-1142 151142 Computer, Math
## 10766 15-1134 151134 Computer, Math
## 10767 17-2199 172199 Architecture, Engineer
## 10768 15-2031 152031 Computer, Math
## 10769 15-1132 151132 Computer, Math
## 10770 15-1199 151199 Computer, Math
## 10771 15-1199 151199 Computer, Math
## 10772 15-1121 151121 Computer, Math
## 10773 15-1132 151132 Computer, Math
## 10774 15-1132 151132 Computer, Math
## 10775 19-1042 191042 Life, Physcial, Social Science
## 10776 15-1132 151132 Computer, Math
## 10777 15-1132 151132 Computer, Math
## 10778 17-2112 172112 Architecture, Engineer
## 10779 15-1132 151132 Computer, Math
## 10780 15-1121 151121 Computer, Math
## 10781 17-2199 172199 Architecture, Engineer
## 10782 15-1132 151132 Computer, Math
## 10783 15-1121 151121 Computer, Math
## 10784 29-2011 292011 Healthcare Practitioner
## 10785 11-9199 119199 Management
## 10786 15-1132 151132 Computer, Math
## 10787 17-2141 172141 Architecture, Engineer
## 10788 15-1131 151131 Computer, Math
## 10789 15-1132 151132 Computer, Math
## 10790 15-1121 151121 Computer, Math
## 10791 15-1132 151132 Computer, Math
## 10792 13-1071 131071 Business, Finance
## 10793 15-1121 151121 Computer, Math
## 10794 15-1132 151132 Computer, Math
## 10795 41-4012 414012 Sales
## 10796 15-1132 151132 Computer, Math
## 10797 15-1121 151121 Computer, Math
## 10798 15-1121 151121 Computer, Math
## 10799 13-2011 132011 Business, Finance
## 10800 15-1132 151132 Computer, Math
## 10801 15-1131 151131 Computer, Math
## 10802 15-1199 151199 Computer, Math
## 10803 15-1132 151132 Computer, Math
## 10804 15-1199 151199 Computer, Math
## 10805 25-2031 252031 Education, Training
## 10806 15-1132 151132 Computer, Math
## 10807 15-1132 151132 Computer, Math
## 10808 15-1199 151199 Computer, Math
## 10809 15-1132 151132 Computer, Math
## 10810 11-2021 112021 Management
## 10811 15-1131 151131 Computer, Math
## 10812 15-2041 152041 Computer, Math
## 10813 15-1132 151132 Computer, Math
## 10814 15-1121 151121 Computer, Math
## 10815 15-1121 151121 Computer, Math
## 10816 15-1121 151121 Computer, Math
## 10817 15-1132 151132 Computer, Math
## 10818 15-1199 151199 Computer, Math
## 10819 17-2061 172061 Architecture, Engineer
## 10820 25-1011 251011 Education, Training
## 10821 15-1121 151121 Computer, Math
## 10822 15-1132 151132 Computer, Math
## 10823 15-2031 152031 Computer, Math
## 10824 15-1052 151052 Computer, Math
## 10825 15-2031 152031 Computer, Math
## 10826 15-1132 151132 Computer, Math
## 10827 15-1199 151199 Computer, Math
## 10828 15-1199 151199 Computer, Math
## 10829 15-1132 151132 Computer, Math
## 10830 15-1121 151121 Computer, Math
## 10831 13-1161 131161 Business, Finance
## 10832 11-1021 111021 Management
## 10833 15-1199 151199 Computer, Math
## 10834 15-1199 151199 Computer, Math
## 10835 15-1133 151133 Computer, Math
## 10836 13-1161 131161 Business, Finance
## 10837 15-1132 151132 Computer, Math
## 10838 15-1121 151121 Computer, Math
## 10839 15-1132 151132 Computer, Math
## 10840 15-1199 151199 Computer, Math
## 10841 15-1132 151132 Computer, Math
## 10842 15-1132 151132 Computer, Math
## 10843 15-1141 151141 Computer, Math
## 10844 15-1132 151132 Computer, Math
## 10845 15-1132 151132 Computer, Math
## 10846 15-1199 151199 Computer, Math
## 10847 15-1133 151133 Computer, Math
## 10848 19-1023 191023 Life, Physcial, Social Science
## 10849 15-1132 151132 Computer, Math
## 10850 15-1132 151132 Computer, Math
## 10851 13-2052 132052 Business, Finance
## 10852 15-1111 151111 Computer, Math
## 10853 15-1199 151199 Computer, Math
## 10854 15-1131 151131 Computer, Math
## 10855 15-1132 151132 Computer, Math
## 10856 13-2011 132011 Business, Finance
## 10857 15-1141 151141 Computer, Math
## 10858 15-1132 151132 Computer, Math
## 10859 15-2041 152041 Computer, Math
## 10860 15-1199 151199 Computer, Math
## 10861 13-1041 131041 Business, Finance
## 10862 15-1199 151199 Computer, Math
## 10863 15-1132 151132 Computer, Math
## 10864 13-1111 131111 Business, Finance
## 10865 17-2141 172141 Architecture, Engineer
## 10866 15-1132 151132 Computer, Math
## 10867 17-2112 172112 Architecture, Engineer
## 10868 19-2012 192012 Life, Physcial, Social Science
## 10869 15-2031 152031 Computer, Math
## 10870 15-1132 151132 Computer, Math
## 10871 13-2051 132051 Business, Finance
## 10872 17-2112 172112 Architecture, Engineer
## 10873 15-1132 151132 Computer, Math
## 10874 15-1132 151132 Computer, Math
## 10875 17-2112 172112 Architecture, Engineer
## 10876 15-1121 151121 Computer, Math
## 10877 13-2099 132099 Business, Finance
## 10878 15-1121 151121 Computer, Math
## 10879 15-1132 151132 Computer, Math
## 10880 15-1132 151132 Computer, Math
## 10881 15-1132 151132 Computer, Math
## 10882 15-1121 151121 Computer, Math
## 10883 15-1132 151132 Computer, Math
## 10884 15-1132 151132 Computer, Math
## 10885 15-1133 151133 Computer, Math
## 10886 15-1132 151132 Computer, Math
## 10887 15-1132 151132 Computer, Math
## 10888 15-1199 151199 Computer, Math
## 10889 15-1121 151121 Computer, Math
## 10890 15-1132 151132 Computer, Math
## 10891 15-1121 151121 Computer, Math
## 10892 13-1111 131111 Business, Finance
## 10893 15-1132 151132 Computer, Math
## 10894 15-1132 151132 Computer, Math
## 10895 11-3021 113021 Management
## 10896 13-1041 131041 Business, Finance
## 10897 15-1199 151199 Computer, Math
## 10898 15-1132 151132 Computer, Math
## 10899 15-1132 151132 Computer, Math
## 10900 15-1199 151199 Computer, Math
## 10901 15-1199 151199 Computer, Math
## 10902 13-1161 131161 Business, Finance
## 10903 15-2031 152031 Computer, Math
## 10904 15-1131 151131 Computer, Math
## 10905 15-1132 151132 Computer, Math
## 10906 15-1199 151199 Computer, Math
## 10907 15-1132 151132 Computer, Math
## 10908 15-1141 151141 Computer, Math
## 10909 15-1133 151133 Computer, Math
## 10910 15-1199 151199 Computer, Math
## 10911 15-1199 151199 Computer, Math
## 10912 15-2041 152041 Computer, Math
## 10913 15-1142 151142 Computer, Math
## 10914 15-1132 151132 Computer, Math
## 10915 15-1132 151132 Computer, Math
## 10916 15-1121 151121 Computer, Math
## 10917 15-1199 151199 Computer, Math
## 10918 19-1029 191029 Life, Physcial, Social Science
## 10919 15-1199 151199 Computer, Math
## 10920 15-1199 151199 Computer, Math
## 10921 15-1199 151199 Computer, Math
## 10922 15-1199 151199 Computer, Math
## 10923 15-1199 151199 Computer, Math
## 10924 15-1132 151132 Computer, Math
## 10925 19-1012 191012 Life, Physcial, Social Science
## 10926 15-1132 151132 Computer, Math
## 10927 15-1132 151132 Computer, Math
## 10928 15-2031 152031 Computer, Math
## 10929 15-1199 151199 Computer, Math
## 10930 19-2012 192012 Life, Physcial, Social Science
## 10931 15-2031 152031 Computer, Math
## 10932 29-1031 291031 Healthcare Practitioner
## 10933 15-1132 151132 Computer, Math
## 10934 15-1132 151132 Computer, Math
## 10935 13-1111 131111 Business, Finance
## 10936 15-1132 151132 Computer, Math
## 10937 15-1034 151034 Computer, Math
## 10938 15-1121 151121 Computer, Math
## 10939 13-2099 132099 Business, Finance
## 10940 19-2031 192031 Life, Physcial, Social Science
## 10941 19-2031 192031 Life, Physcial, Social Science
## 10942 15-1132 151132 Computer, Math
## 10943 15-1132 151132 Computer, Math
## 10944 29-9099 299099 Healthcare Practitioner
## 10945 15-1132 151132 Computer, Math
## 10946 15-1132 151132 Computer, Math
## 10947 15-1132 151132 Computer, Math
## 10948 13-1111 131111 Business, Finance
## 10949 15-1132 151132 Computer, Math
## 10950 15-1143 151143 Computer, Math
## 10951 15-1199 151199 Computer, Math
## 10952 15-1141 151141 Computer, Math
## 10953 25-9031 259031 Education, Training
## 10954 15-1132 151132 Computer, Math
## 10955 15-1111 151111 Computer, Math
## 10956 29-2011 292011 Healthcare Practitioner
## 10957 15-1199 151199 Computer, Math
## 10958 15-1132 151132 Computer, Math
## 10959 15-1132 151132 Computer, Math
## 10960 15-1132 151132 Computer, Math
## 10961 15-1132 151132 Computer, Math
## 10962 15-1132 151132 Computer, Math
## 10963 15-1131 151131 Computer, Math
## 10964 11-3021 113021 Management
## 10965 15-1121 151121 Computer, Math
## 10966 13-2051 132051 Business, Finance
## 10967 15-1199 151199 Computer, Math
## 10968 15-1132 151132 Computer, Math
## 10969 15-1121 151121 Computer, Math
## 10970 15-1121 151121 Computer, Math
## 10971 15-1132 151132 Computer, Math
## 10972 19-1042 191042 Life, Physcial, Social Science
## 10973 15-1142 151142 Computer, Math
## 10974 15-1132 151132 Computer, Math
## 10975 15-1121 151121 Computer, Math
## 10976 15-1132 151132 Computer, Math
## 10977 29-1063 291063 Healthcare Practitioner
## 10978 13-1111 131111 Business, Finance
## 10979 15-1199 151199 Computer, Math
## 10980 15-1132 151132 Computer, Math
## 10981 15-1199 151199 Computer, Math
## 10982 15-1132 151132 Computer, Math
## 10983 15-1121 151121 Computer, Math
## 10984 11-3021 113021 Management
## 10985 19-1021 191021 Life, Physcial, Social Science
## 10986 15-2031 152031 Computer, Math
## 10987 15-1132 151132 Computer, Math
## 10988 15-1121 151121 Computer, Math
## 10989 11-9051 119051 Management
## 10990 19-1042 191042 Life, Physcial, Social Science
## 10991 15-1132 151132 Computer, Math
## 10992 11-2022 112022 Management
## 10993 23-1011 231011 Legal
## 10994 15-1132 151132 Computer, Math
## 10995 15-1132 151132 Computer, Math
## 10996 17-2072 172072 Architecture, Engineer
## 10997 15-1199 151199 Computer, Math
## 10998 15-1132 151132 Computer, Math
## 10999 13-1111 131111 Business, Finance
## 11000 13-1111 131111 Business, Finance
## 11001 15-1141 151141 Computer, Math
## 11002 15-1143 151143 Computer, Math
## 11003 13-1161 131161 Business, Finance
## 11004 15-1132 151132 Computer, Math
## 11005 15-1131 151131 Computer, Math
## 11006 27-1022 271022 Media, Design
## 11007 15-1141 151141 Computer, Math
## 11008 17-2141 172141 Architecture, Engineer
## 11009 17-2112 172112 Architecture, Engineer
## 11010 15-1121 151121 Computer, Math
## 11011 15-1132 151132 Computer, Math
## 11012 15-2041 152041 Computer, Math
## 11013 15-1132 151132 Computer, Math
## 11014 15-1132 151132 Computer, Math
## 11015 17-2112 172112 Architecture, Engineer
## 11016 15-1121 151121 Computer, Math
## 11017 15-1199 151199 Computer, Math
## 11018 29-2011 292011 Healthcare Practitioner
## 11019 15-1132 151132 Computer, Math
## 11020 15-1199 151199 Computer, Math
## 11021 19-1042 191042 Life, Physcial, Social Science
## 11022 13-2011 132011 Business, Finance
## 11023 15-2031 152031 Computer, Math
## 11024 15-1199 151199 Computer, Math
## 11025 15-1121 151121 Computer, Math
## 11026 17-2141 172141 Architecture, Engineer
## 11027 17-2131 172131 Architecture, Engineer
## 11028 15-1132 151132 Computer, Math
## 11029 15-1141 151141 Computer, Math
## 11030 17-2141 172141 Architecture, Engineer
## 11031 15-1132 151132 Computer, Math
## 11032 13-2099 132099 Business, Finance
## 11033 15-1134 151134 Computer, Math
## 11034 15-2041 152041 Computer, Math
## 11035 13-1121 131121 Business, Finance
## 11036 15-1132 151132 Computer, Math
## 11037 11-3021 113021 Management
## 11038 13-1111 131111 Business, Finance
## 11039 15-1121 151121 Computer, Math
## 11040 11-3061 113061 Management
## 11041 23-1011 231011 Legal
## 11042 13-1199 131199 Business, Finance
## 11043 41-9031 419031 Sales
## 11044 15-1121 151121 Computer, Math
## 11045 15-1132 151132 Computer, Math
## 11046 15-1121 151121 Computer, Math
## 11047 13-2051 132051 Business, Finance
## 11048 13-1111 131111 Business, Finance
## 11049 15-1199 151199 Computer, Math
## 11050 15-1199 151199 Computer, Math
## 11051 15-1199 151199 Computer, Math
## 11052 15-1132 151132 Computer, Math
## 11053 15-1131 151131 Computer, Math
## 11054 17-2199 172199 Architecture, Engineer
## 11055 15-1132 151132 Computer, Math
## 11056 15-1132 151132 Computer, Math
## 11057 15-2041 152041 Computer, Math
## 11058 15-2041 152041 Computer, Math
## 11059 15-1132 151132 Computer, Math
## 11060 13-1111 131111 Business, Finance
## 11061 15-1132 151132 Computer, Math
## 11062 29-1069 291069 Healthcare Practitioner
## 11063 15-1132 151132 Computer, Math
## 11064 15-1131 151131 Computer, Math
## 11065 15-2031 152031 Computer, Math
## 11066 27-3042 273042 Media, Design
## 11067 13-2011 132011 Business, Finance
## 11068 15-2031 152031 Computer, Math
## 11069 15-1199 151199 Computer, Math
## 11070 15-1132 151132 Computer, Math
## 11071 25-1071 251071 Education, Training
## 11072 17-2161 172161 Architecture, Engineer
## 11073 15-1121 151121 Computer, Math
## 11074 15-1199 151199 Computer, Math
## 11075 15-1132 151132 Computer, Math
## 11076 15-1199 151199 Computer, Math
## 11077 15-1133 151133 Computer, Math
## 11078 15-1199 151199 Computer, Math
## 11079 15-1132 151132 Computer, Math
## 11080 15-1122 151122 Computer, Math
## 11081 15-1141 151141 Computer, Math
## 11082 15-1121 151121 Computer, Math
## 11083 11-3021 113021 Management
## 11084 15-1132 151132 Computer, Math
## 11085 15-1133 151133 Computer, Math
## 11086 19-2031 192031 Life, Physcial, Social Science
## 11087 15-1132 151132 Computer, Math
## 11088 15-1199 151199 Computer, Math
## 11089 15-1132 151132 Computer, Math
## 11090 17-2112 172112 Architecture, Engineer
## 11091 15-1199 151199 Computer, Math
## 11092 15-1132 151132 Computer, Math
## 11093 15-1199 151199 Computer, Math
## 11094 11-3021 113021 Management
## 11095 13-2011 132011 Business, Finance
## 11096 15-1132 151132 Computer, Math
## 11097 15-1132 151132 Computer, Math
## 11098 17-2051 172051 Architecture, Engineer
## 11099 15-1121 151121 Computer, Math
## 11100 13-1111 131111 Business, Finance
## 11101 15-1121 151121 Computer, Math
## 11102 15-1199 151199 Computer, Math
## 11103 15-1132 151132 Computer, Math
## 11104 13-2011 132011 Business, Finance
## 11105 13-1111 131111 Business, Finance
## 11106 15-1121 151121 Computer, Math
## 11107 15-1132 151132 Computer, Math
## 11108 15-1133 151133 Computer, Math
## 11109 25-2021 252021 Education, Training
## 11110 15-1199 151199 Computer, Math
## 11111 15-1132 151132 Computer, Math
## 11112 17-2131 172131 Architecture, Engineer
## 11113 15-1132 151132 Computer, Math
## 11114 15-1121 151121 Computer, Math
## 11115 29-1021 291021 Healthcare Practitioner
## 11116 15-1132 151132 Computer, Math
## 11117 15-1199 151199 Computer, Math
## 11118 15-1131 151131 Computer, Math
## 11119 29-1021 291021 Healthcare Practitioner
## 11120 15-1199 151199 Computer, Math
## 11121 15-1199 151199 Computer, Math
## 11122 19-1012 191012 Life, Physcial, Social Science
## 11123 27-3042 273042 Media, Design
## 11124 15-1121 151121 Computer, Math
## 11125 15-1199 151199 Computer, Math
## 11126 15-1132 151132 Computer, Math
## 11127 15-2031 152031 Computer, Math
## 11128 15-1121 151121 Computer, Math
## 11129 15-1132 151132 Computer, Math
## 11130 17-2141 172141 Architecture, Engineer
## 11131 15-2041 152041 Computer, Math
## 11132 13-1111 131111 Business, Finance
## 11133 15-1199 151199 Computer, Math
## 11134 11-3021 113021 Management
## 11135 15-1132 151132 Computer, Math
## 11136 15-1132 151132 Computer, Math
## 11137 17-2072 172072 Architecture, Engineer
## 11138 19-1029 191029 Life, Physcial, Social Science
## 11139 15-1121 151121 Computer, Math
## 11140 15-1131 151131 Computer, Math
## 11141 15-1199 151199 Computer, Math
## 11142 15-2041 152041 Computer, Math
## 11143 15-1133 151133 Computer, Math
## 11144 15-1199 151199 Computer, Math
## 11145 15-1132 151132 Computer, Math
## 11146 19-3092 193092 Life, Physcial, Social Science
## 11147 11-3021 113021 Management
## 11148 15-1132 151132 Computer, Math
## 11149 15-1131 151131 Computer, Math
## 11150 13-1051 131051 Business, Finance
## 11151 15-1132 151132 Computer, Math
## 11152 15-1142 151142 Computer, Math
## 11153 13-1111 131111 Business, Finance
## 11154 15-1199 151199 Computer, Math
## 11155 15-1121 151121 Computer, Math
## 11156 15-1199 151199 Computer, Math
## 11157 17-2041 172041 Architecture, Engineer
## 11158 15-1132 151132 Computer, Math
## 11159 13-2051 132051 Business, Finance
## 11160 17-2051 172051 Architecture, Engineer
## 11161 15-1121 151121 Computer, Math
## 11162 19-2099 192099 Life, Physcial, Social Science
## 11163 29-1069 291069 Healthcare Practitioner
## 11164 15-1121 151121 Computer, Math
## 11165 11-3021 113021 Management
## 11166 15-1121 151121 Computer, Math
## 11167 15-1121 151121 Computer, Math
## 11168 17-2071 172071 Architecture, Engineer
## 11169 29-1123 291123 Healthcare Practitioner
## 11170 15-1132 151132 Computer, Math
## 11171 19-1012 191012 Life, Physcial, Social Science
## 11172 13-2051 132051 Business, Finance
## 11173 17-2072 172072 Architecture, Engineer
## 11174 15-1121 151121 Computer, Math
## 11175 17-2071 172071 Architecture, Engineer
## 11176 15-2031 152031 Computer, Math
## 11177 15-1199 151199 Computer, Math
## 11178 15-1121 151121 Computer, Math
## 11179 15-1131 151131 Computer, Math
## 11180 17-2072 172072 Architecture, Engineer
## 11181 15-1134 151134 Computer, Math
## 11182 13-1041 131041 Business, Finance
## 11183 15-2041 152041 Computer, Math
## 11184 15-1121 151121 Computer, Math
## 11185 15-1132 151132 Computer, Math
## 11186 15-1131 151131 Computer, Math
## 11187 13-1111 131111 Business, Finance
## 11188 15-1132 151132 Computer, Math
## 11189 15-1133 151133 Computer, Math
## 11190 15-1132 151132 Computer, Math
## 11191 15-2041 152041 Computer, Math
## 11192 15-1199 151199 Computer, Math
## 11193 17-2071 172071 Architecture, Engineer
## 11194 15-1131 151131 Computer, Math
## 11195 19-1021 191021 Life, Physcial, Social Science
## 11196 15-1199 151199 Computer, Math
## 11197 15-1132 151132 Computer, Math
## 11198 13-1041 131041 Business, Finance
## 11199 15-1121 151121 Computer, Math
## 11200 15-1133 151133 Computer, Math
## 11201 15-1132 151132 Computer, Math
## 11202 15-1199 151199 Computer, Math
## 11203 15-1132 151132 Computer, Math
## 11204 17-2071 172071 Architecture, Engineer
## 11205 13-2051 132051 Business, Finance
## 11206 41-9031 419031 Sales
## 11207 15-1199 151199 Computer, Math
## 11208 15-1199 151199 Computer, Math
## 11209 15-1121 151121 Computer, Math
## 11210 17-2031 172031 Architecture, Engineer
## 11211 15-1121 151121 Computer, Math
## 11212 15-1133 151133 Computer, Math
## 11213 17-2141 172141 Architecture, Engineer
## 11214 15-1121 151121 Computer, Math
## 11215 15-1121 151121 Computer, Math
## 11216 15-1132 151132 Computer, Math
## 11217 15-1132 151132 Computer, Math
## 11218 15-1132 151132 Computer, Math
## 11219 15-1133 151133 Computer, Math
## 11220 15-1199 151199 Computer, Math
## 11221 15-1121 151121 Computer, Math
## 11222 15-1132 151132 Computer, Math
## 11223 15-1132 151132 Computer, Math
## 11224 15-1199 151199 Computer, Math
## 11225 15-1199 151199 Computer, Math
## 11226 15-1132 151132 Computer, Math
## 11227 15-1132 151132 Computer, Math
## 11228 15-2031 152031 Computer, Math
## 11229 25-1054 251054 Education, Training
## 11230 15-1132 151132 Computer, Math
## 11231 13-2051 132051 Business, Finance
## 11232 15-1132 151132 Computer, Math
## 11233 15-1132 151132 Computer, Math
## 11234 15-1131 151131 Computer, Math
## 11235 15-1121 151121 Computer, Math
## 11236 15-1121 151121 Computer, Math
## 11237 15-1121 151121 Computer, Math
## 11238 13-1051 131051 Business, Finance
## 11239 25-1054 251054 Education, Training
## 11240 15-1134 151134 Computer, Math
## 11241 13-1111 131111 Business, Finance
## 11242 13-1111 131111 Business, Finance
## 11243 41-9031 419031 Sales
## 11244 15-1132 151132 Computer, Math
## 11245 15-1199 151199 Computer, Math
## 11246 19-3011 193011 Life, Physcial, Social Science
## 11247 15-1199 151199 Computer, Math
## 11248 15-1132 151132 Computer, Math
## 11249 19-3011 193011 Life, Physcial, Social Science
## 11250 15-1132 151132 Computer, Math
## 11251 15-1199 151199 Computer, Math
## 11252 15-1132 151132 Computer, Math
## 11253 15-1132 151132 Computer, Math
## 11254 15-1132 151132 Computer, Math
## 11255 15-1133 151133 Computer, Math
## 11256 15-1121 151121 Computer, Math
## 11257 15-1131 151131 Computer, Math
## 11258 15-1141 151141 Computer, Math
## 11259 15-1121 151121 Computer, Math
## 11260 13-1041 131041 Business, Finance
## 11261 15-1132 151132 Computer, Math
## 11262 15-1131 151131 Computer, Math
## 11263 15-1132 151132 Computer, Math
## 11264 15-1131 151131 Computer, Math
## 11265 13-2051 132051 Business, Finance
## 11266 15-1142 151142 Computer, Math
## 11267 17-2112 172112 Architecture, Engineer
## 11268 15-1121 151121 Computer, Math
## 11269 15-1132 151132 Computer, Math
## 11270 17-2071 172071 Architecture, Engineer
## 11271 15-1121 151121 Computer, Math
## 11272 15-1132 151132 Computer, Math
## 11273 15-1132 151132 Computer, Math
## 11274 29-1069 291069 Healthcare Practitioner
## 11275 15-1199 151199 Computer, Math
## 11276 27-1024 271024 Media, Design
## 11277 15-1132 151132 Computer, Math
## 11278 13-2051 132051 Business, Finance
## 11279 13-1111 131111 Business, Finance
## 11280 25-1124 251124 Education, Training
## 11281 15-1131 151131 Computer, Math
## 11282 15-1132 151132 Computer, Math
## 11283 15-1199 151199 Computer, Math
## 11284 15-1132 151132 Computer, Math
## 11285 13-1151 131151 Business, Finance
## 11286 11-9081 119081 Management
## 11287 15-1132 151132 Computer, Math
## 11288 15-1141 151141 Computer, Math
## 11289 15-1133 151133 Computer, Math
## 11290 15-1132 151132 Computer, Math
## 11291 15-1131 151131 Computer, Math
## 11292 15-1121 151121 Computer, Math
## 11293 13-2051 132051 Business, Finance
## 11294 15-1132 151132 Computer, Math
## 11295 15-1132 151132 Computer, Math
## 11296 15-1199 151199 Computer, Math
## 11297 15-1133 151133 Computer, Math
## 11298 15-1199 151199 Computer, Math
## 11299 17-2051 172051 Architecture, Engineer
## 11300 15-1121 151121 Computer, Math
## 11301 15-1132 151132 Computer, Math
## 11302 15-1199 151199 Computer, Math
## 11303 15-1133 151133 Computer, Math
## 11304 17-2071 172071 Architecture, Engineer
## 11305 15-1121 151121 Computer, Math
## 11306 15-1121 151121 Computer, Math
## 11307 13-2011 132011 Business, Finance
## 11308 15-1121 151121 Computer, Math
## 11309 15-1132 151132 Computer, Math
## 11310 13-2099 132099 Business, Finance
## 11311 15-1199 151199 Computer, Math
## 11312 17-2041 172041 Architecture, Engineer
## 11313 15-1199 151199 Computer, Math
## 11314 15-1134 151134 Computer, Math
## 11315 13-2051 132051 Business, Finance
## 11316 15-1134 151134 Computer, Math
## 11317 15-1142 151142 Computer, Math
## 11318 15-1132 151132 Computer, Math
## 11319 29-1062 291062 Healthcare Practitioner
## 11320 13-2051 132051 Business, Finance
## 11321 15-1121 151121 Computer, Math
## 11322 13-1111 131111 Business, Finance
## 11323 15-1132 151132 Computer, Math
## 11324 17-2061 172061 Architecture, Engineer
## 11325 29-1021 291021 Healthcare Practitioner
## 11326 15-1132 151132 Computer, Math
## 11327 15-1141 151141 Computer, Math
## 11328 19-1042 191042 Life, Physcial, Social Science
## 11329 15-1132 151132 Computer, Math
## 11330 15-1199 151199 Computer, Math
## 11331 15-1121 151121 Computer, Math
## 11332 13-1161 131161 Business, Finance
## 11333 17-2112 172112 Architecture, Engineer
## 11334 15-1132 151132 Computer, Math
## 11335 15-1121 151121 Computer, Math
## 11336 15-1131 151131 Computer, Math
## 11337 15-1199 151199 Computer, Math
## 11338 19-3011 193011 Life, Physcial, Social Science
## 11339 15-1121 151121 Computer, Math
## 11340 15-1132 151132 Computer, Math
## 11341 15-1199 151199 Computer, Math
## 11342 15-1122 151122 Computer, Math
## 11343 15-1121 151121 Computer, Math
## 11344 15-1132 151132 Computer, Math
## 11345 29-1021 291021 Healthcare Practitioner
## 11346 15-1132 151132 Computer, Math
## 11347 15-1199 151199 Computer, Math
## 11348 15-1132 151132 Computer, Math
## 11349 15-1132 151132 Computer, Math
## 11350 13-2031 132031 Business, Finance
## 11351 13-2011 132011 Business, Finance
## 11352 15-1121 151121 Computer, Math
## 11353 15-1132 151132 Computer, Math
## 11354 15-1132 151132 Computer, Math
## 11355 15-1132 151132 Computer, Math
## 11356 15-1132 151132 Computer, Math
## 11357 11-9199 119199 Management
## 11358 15-1132 151132 Computer, Math
## 11359 13-1111 131111 Business, Finance
## 11360 15-1132 151132 Computer, Math
## 11361 15-1132 151132 Computer, Math
## 11362 15-1199 151199 Computer, Math
## 11363 19-1029 191029 Life, Physcial, Social Science
## 11364 11-3051 113051 Management
## 11365 15-1132 151132 Computer, Math
## 11366 15-1121 151121 Computer, Math
## 11367 15-1132 151132 Computer, Math
## 11368 13-1111 131111 Business, Finance
## 11369 17-2071 172071 Architecture, Engineer
## 11370 17-2072 172072 Architecture, Engineer
## 11371 13-2011 132011 Business, Finance
## 11372 23-1011 231011 Legal
## 11373 15-1132 151132 Computer, Math
## 11374 15-1132 151132 Computer, Math
## 11375 15-1133 151133 Computer, Math
## 11376 17-2071 172071 Architecture, Engineer
## 11377 15-1142 151142 Computer, Math
## 11378 15-1133 151133 Computer, Math
## 11379 15-1121 151121 Computer, Math
## 11380 15-1133 151133 Computer, Math
## 11381 15-1134 151134 Computer, Math
## 11382 15-1132 151132 Computer, Math
## 11383 15-1199 151199 Computer, Math
## 11384 15-1132 151132 Computer, Math
## 11385 15-1143 151143 Computer, Math
## 11386 25-1031 251031 Education, Training
## 11387 23-1011 231011 Legal
## 11388 17-2141 172141 Architecture, Engineer
## 11389 19-3011 193011 Life, Physcial, Social Science
## 11390 15-1132 151132 Computer, Math
## 11391 15-1132 151132 Computer, Math
## 11392 15-1132 151132 Computer, Math
## 11393 17-1021 171021 Architecture, Engineer
## 11394 15-1132 151132 Computer, Math
## 11395 11-9033 119033 Management
## 11396 15-1121 151121 Computer, Math
## 11397 17-2141 172141 Architecture, Engineer
## 11398 15-1132 151132 Computer, Math
## 11399 41-9031 419031 Sales
## 11400 17-2071 172071 Architecture, Engineer
## 11401 15-1132 151132 Computer, Math
## 11402 15-1134 151134 Computer, Math
## 11403 15-1132 151132 Computer, Math
## 11404 15-1199 151199 Computer, Math
## 11405 15-1131 151131 Computer, Math
## 11406 15-1132 151132 Computer, Math
## 11407 15-1141 151141 Computer, Math
## 11408 15-1199 151199 Computer, Math
## 11409 15-1132 151132 Computer, Math
## 11410 15-1133 151133 Computer, Math
## 11411 15-1143 151143 Computer, Math
## 11412 15-1132 151132 Computer, Math
## 11413 15-1199 151199 Computer, Math
## 11414 17-2141 172141 Architecture, Engineer
## 11415 13-2041 132041 Business, Finance
## 11416 25-1125 251125 Education, Training
## 11417 15-1133 151133 Computer, Math
## 11418 15-1132 151132 Computer, Math
## 11419 15-1199 151199 Computer, Math
## 11420 15-1199 151199 Computer, Math
## 11421 15-1199 151199 Computer, Math
## 11422 15-2031 152031 Computer, Math
## 11423 27-3031 273031 Media, Design
## 11424 15-1132 151132 Computer, Math
## 11425 13-1161 131161 Business, Finance
## 11426 15-1132 151132 Computer, Math
## 11427 15-1132 151132 Computer, Math
## 11428 19-1021 191021 Life, Physcial, Social Science
## 11429 15-1131 151131 Computer, Math
## 11430 17-2199 172199 Architecture, Engineer
## 11431 17-2141 172141 Architecture, Engineer
## 11432 15-2031 152031 Computer, Math
## 11433 15-1111 151111 Computer, Math
## 11434 15-1199 151199 Computer, Math
## 11435 15-1132 151132 Computer, Math
## 11436 15-1132 151132 Computer, Math
## 11437 17-2141 172141 Architecture, Engineer
## 11438 15-1132 151132 Computer, Math
## 11439 15-1133 151133 Computer, Math
## 11440 15-1132 151132 Computer, Math
## 11441 15-1199 151199 Computer, Math
## 11442 15-1199 151199 Computer, Math
## 11443 15-1132 151132 Computer, Math
## 11444 15-1132 151132 Computer, Math
## 11445 15-1132 151132 Computer, Math
## 11446 15-1132 151132 Computer, Math
## 11447 15-1121 151121 Computer, Math
## 11448 15-1132 151132 Computer, Math
## 11449 15-1199 151199 Computer, Math
## 11450 15-1121 151121 Computer, Math
## 11451 15-1131 151131 Computer, Math
## 11452 29-1123 291123 Healthcare Practitioner
## 11453 15-1121 151121 Computer, Math
## 11454 15-1132 151132 Computer, Math
## 11455 15-1121 151121 Computer, Math
## 11456 15-1132 151132 Computer, Math
## 11457 15-1131 151131 Computer, Math
## 11458 15-1121 151121 Computer, Math
## 11459 19-2012 192012 Life, Physcial, Social Science
## 11460 15-1121 151121 Computer, Math
## 11461 15-1121 151121 Computer, Math
## 11462 15-1132 151132 Computer, Math
## 11463 15-1121 151121 Computer, Math
## 11464 15-1132 151132 Computer, Math
## 11465 15-1132 151132 Computer, Math
## 11466 15-1132 151132 Computer, Math
## 11467 15-2031 152031 Computer, Math
## 11468 11-3021 113021 Management
## 11469 13-2051 132051 Business, Finance
## 11470 15-1122 151122 Computer, Math
## 11471 15-1199 151199 Computer, Math
## 11472 15-1199 151199 Computer, Math
## 11473 15-1121 151121 Computer, Math
## 11474 15-1132 151132 Computer, Math
## 11475 15-1132 151132 Computer, Math
## 11476 13-2051 132051 Business, Finance
## 11477 13-2011 132011 Business, Finance
## 11478 15-1132 151132 Computer, Math
## 11479 15-1132 151132 Computer, Math
## 11480 15-1132 151132 Computer, Math
## 11481 19-2031 192031 Life, Physcial, Social Science
## 11482 17-2141 172141 Architecture, Engineer
## 11483 15-1132 151132 Computer, Math
## 11484 15-1132 151132 Computer, Math
## 11485 19-3022 193022 Life, Physcial, Social Science
## 11486 15-2031 152031 Computer, Math
## 11487 15-1132 151132 Computer, Math
## 11488 17-2141 172141 Architecture, Engineer
## 11489 13-1111 131111 Business, Finance
## 11490 15-1199 151199 Computer, Math
## 11491 19-1042 191042 Life, Physcial, Social Science
## 11492 13-1111 131111 Business, Finance
## 11493 15-1133 151133 Computer, Math
## 11494 15-2031 152031 Computer, Math
## 11495 17-2141 172141 Architecture, Engineer
## 11496 15-1132 151132 Computer, Math
## 11497 15-1131 151131 Computer, Math
## 11498 15-1132 151132 Computer, Math
## 11499 19-3031 193031 Life, Physcial, Social Science
## 11500 15-1132 151132 Computer, Math
## 11501 15-1131 151131 Computer, Math
## 11502 15-1132 151132 Computer, Math
## 11503 15-1132 151132 Computer, Math
## 11504 15-1132 151132 Computer, Math
## 11505 15-1199 151199 Computer, Math
## 11506 17-2112 172112 Architecture, Engineer
## 11507 15-1121 151121 Computer, Math
## 11508 13-2051 132051 Business, Finance
## 11509 15-1132 151132 Computer, Math
## 11510 19-3022 193022 Life, Physcial, Social Science
## 11511 15-2031 152031 Computer, Math
## 11512 15-1199 151199 Computer, Math
## 11513 13-2099 132099 Business, Finance
## 11514 15-2031 152031 Computer, Math
## 11515 13-1111 131111 Business, Finance
## 11516 15-1121 151121 Computer, Math
## 11517 15-1132 151132 Computer, Math
## 11518 15-1121 151121 Computer, Math
## 11519 15-1132 151132 Computer, Math
## 11520 15-1132 151132 Computer, Math
## 11521 15-1143 151143 Computer, Math
## 11522 15-1121 151121 Computer, Math
## 11523 15-1132 151132 Computer, Math
## 11524 15-1132 151132 Computer, Math
## 11525 15-1132 151132 Computer, Math
## 11526 15-1132 151132 Computer, Math
## 11527 15-1121 151121 Computer, Math
## 11528 15-1132 151132 Computer, Math
## 11529 15-1121 151121 Computer, Math
## 11530 11-2021 112021 Management
## 11531 15-1121 151121 Computer, Math
## 11532 11-3021 113021 Management
## 11533 17-2072 172072 Architecture, Engineer
## 11534 15-1121 151121 Computer, Math
## 11535 27-3042 273042 Media, Design
## 11536 25-1071 251071 Education, Training
## 11537 15-1132 151132 Computer, Math
## 11538 15-2031 152031 Computer, Math
## 11539 15-1132 151132 Computer, Math
## 11540 29-1123 291123 Healthcare Practitioner
## 11541 15-1132 151132 Computer, Math
## 11542 15-1141 151141 Computer, Math
## 11543 15-1133 151133 Computer, Math
## 11544 15-1132 151132 Computer, Math
## 11545 15-1121 151121 Computer, Math
## 11546 15-1134 151134 Computer, Math
## 11547 15-1142 151142 Computer, Math
## 11548 15-1132 151132 Computer, Math
## 11549 17-2072 172072 Architecture, Engineer
## 11550 27-1021 271021 Media, Design
## 11551 15-1199 151199 Computer, Math
## 11552 11-3021 113021 Management
## 11553 15-1133 151133 Computer, Math
## 11554 15-1199 151199 Computer, Math
## 11555 13-2099 132099 Business, Finance
## 11556 15-1121 151121 Computer, Math
## 11557 15-1121 151121 Computer, Math
## 11558 15-1199 151199 Computer, Math
## 11559 17-2071 172071 Architecture, Engineer
## 11560 13-2051 132051 Business, Finance
## 11561 29-1123 291123 Healthcare Practitioner
## 11562 15-1131 151131 Computer, Math
## 11563 29-9099 299099 Healthcare Practitioner
## 11564 15-1121 151121 Computer, Math
## 11565 15-1133 151133 Computer, Math
## 11566 15-1132 151132 Computer, Math
## 11567 13-1111 131111 Business, Finance
## 11568 15-1132 151132 Computer, Math
## 11569 15-1132 151132 Computer, Math
## 11570 17-2141 172141 Architecture, Engineer
## 11571 15-1132 151132 Computer, Math
## 11572 15-1133 151133 Computer, Math
## 11573 19-2031 192031 Life, Physcial, Social Science
## 11574 15-1121 151121 Computer, Math
## 11575 13-2011 132011 Business, Finance
## 11576 15-1132 151132 Computer, Math
## 11577 15-1133 151133 Computer, Math
## 11578 15-1121 151121 Computer, Math
## 11579 15-1199 151199 Computer, Math
## 11580 15-1132 151132 Computer, Math
## 11581 19-1022 191022 Life, Physcial, Social Science
## 11582 19-3011 193011 Life, Physcial, Social Science
## 11583 15-1131 151131 Computer, Math
## 11584 15-1132 151132 Computer, Math
## 11585 17-2199 172199 Architecture, Engineer
## 11586 15-1131 151131 Computer, Math
## 11587 11-9033 119033 Management
## 11588 15-1132 151132 Computer, Math
## 11589 27-1024 271024 Media, Design
## 11590 15-1131 151131 Computer, Math
## 11591 15-1133 151133 Computer, Math
## 11592 29-1051 291051 Healthcare Practitioner
## 11593 29-1063 291063 Healthcare Practitioner
## 11594 15-1199 151199 Computer, Math
## 11595 17-2112 172112 Architecture, Engineer
## 11596 17-2199 172199 Architecture, Engineer
## 11597 15-1131 151131 Computer, Math
## 11598 17-2199 172199 Architecture, Engineer
## 11599 15-1132 151132 Computer, Math
## 11600 17-2041 172041 Architecture, Engineer
## 11601 15-1134 151134 Computer, Math
## 11602 15-1131 151131 Computer, Math
## 11603 15-1132 151132 Computer, Math
## 11604 13-1081 131081 Business, Finance
## 11605 15-1132 151132 Computer, Math
## 11606 15-2031 152031 Computer, Math
## 11607 15-1121 151121 Computer, Math
## 11608 15-1121 151121 Computer, Math
## 11609 15-1131 151131 Computer, Math
## 11610 15-1133 151133 Computer, Math
## 11611 15-1132 151132 Computer, Math
## 11612 17-2031 172031 Architecture, Engineer
## 11613 15-1199 151199 Computer, Math
## 11614 17-3011 173011 Architecture, Engineer
## 11615 15-1133 151133 Computer, Math
## 11616 15-1132 151132 Computer, Math
## 11617 15-1132 151132 Computer, Math
## 11618 15-1121 151121 Computer, Math
## 11619 15-1121 151121 Computer, Math
## 11620 17-2141 172141 Architecture, Engineer
## 11621 15-1131 151131 Computer, Math
## 11622 15-1121 151121 Computer, Math
## 11623 15-1121 151121 Computer, Math
## 11624 17-2112 172112 Architecture, Engineer
## 11625 19-2041 192041 Life, Physcial, Social Science
## 11626 15-1133 151133 Computer, Math
## 11627 15-1141 151141 Computer, Math
## 11628 15-1121 151121 Computer, Math
## 11629 17-2061 172061 Architecture, Engineer
## 11630 15-1134 151134 Computer, Math
## 11631 15-1132 151132 Computer, Math
## 11632 15-1199 151199 Computer, Math
## 11633 25-1031 251031 Education, Training
## 11634 15-1132 151132 Computer, Math
## 11635 13-1161 131161 Business, Finance
## 11636 15-1121 151121 Computer, Math
## 11637 15-1199 151199 Computer, Math
## 11638 15-1142 151142 Computer, Math
## 11639 15-1121 151121 Computer, Math
## 11640 15-1132 151132 Computer, Math
## 11641 15-1131 151131 Computer, Math
## 11642 13-2051 132051 Business, Finance
## 11643 19-2099 192099 Life, Physcial, Social Science
## 11644 15-1141 151141 Computer, Math
## 11645 27-1021 271021 Media, Design
## 11646 15-1132 151132 Computer, Math
## 11647 15-1121 151121 Computer, Math
## 11648 41-9031 419031 Sales
## 11649 15-1121 151121 Computer, Math
## 11650 15-1121 151121 Computer, Math
## 11651 15-1132 151132 Computer, Math
## 11652 17-2141 172141 Architecture, Engineer
## 11653 17-2051 172051 Architecture, Engineer
## 11654 29-1063 291063 Healthcare Practitioner
## 11655 15-1132 151132 Computer, Math
## 11656 15-1121 151121 Computer, Math
## 11657 15-1199 151199 Computer, Math
## 11658 29-1066 291066 Healthcare Practitioner
## 11659 17-2112 172112 Architecture, Engineer
## 11660 15-1132 151132 Computer, Math
## 11661 17-2051 172051 Architecture, Engineer
## 11662 15-1132 151132 Computer, Math
## 11663 15-1132 151132 Computer, Math
## 11664 15-1121 151121 Computer, Math
## 11665 17-2072 172072 Architecture, Engineer
## 11666 15-1132 151132 Computer, Math
## 11667 15-1121 151121 Computer, Math
## 11668 15-1121 151121 Computer, Math
## 11669 11-3021 113021 Management
## 11670 15-1121 151121 Computer, Math
## 11671 15-1133 151133 Computer, Math
## 11672 17-2112 172112 Architecture, Engineer
## 11673 15-1142 151142 Computer, Math
## 11674 15-1132 151132 Computer, Math
## 11675 15-1141 151141 Computer, Math
## 11676 17-2141 172141 Architecture, Engineer
## 11677 15-1132 151132 Computer, Math
## 11678 15-1132 151132 Computer, Math
## 11679 13-2051 132051 Business, Finance
## 11680 15-1132 151132 Computer, Math
## 11681 15-1132 151132 Computer, Math
## 11682 15-1199 151199 Computer, Math
## 11683 17-2141 172141 Architecture, Engineer
## 11684 13-1111 131111 Business, Finance
## 11685 13-2011 132011 Business, Finance
## 11686 15-1199 151199 Computer, Math
## 11687 15-1199 151199 Computer, Math
## 11688 15-1141 151141 Computer, Math
## 11689 15-2031 152031 Computer, Math
## 11690 15-1121 151121 Computer, Math
## 11691 15-1121 151121 Computer, Math
## 11692 15-1121 151121 Computer, Math
## 11693 15-1132 151132 Computer, Math
## 11694 15-1132 151132 Computer, Math
## 11695 13-2011 132011 Business, Finance
## 11696 15-1132 151132 Computer, Math
## 11697 13-2099 132099 Business, Finance
## 11698 15-1133 151133 Computer, Math
## 11699 13-1111 131111 Business, Finance
## 11700 15-1132 151132 Computer, Math
## 11701 15-1141 151141 Computer, Math
## 11702 15-1199 151199 Computer, Math
## 11703 15-1132 151132 Computer, Math
## 11704 15-1132 151132 Computer, Math
## 11705 15-1132 151132 Computer, Math
## 11706 13-1051 131051 Business, Finance
## 11707 15-1132 151132 Computer, Math
## 11708 15-1121 151121 Computer, Math
## 11709 15-1121 151121 Computer, Math
## 11710 15-1121 151121 Computer, Math
## 11711 15-1121 151121 Computer, Math
## 11712 15-1133 151133 Computer, Math
## 11713 15-1132 151132 Computer, Math
## 11714 15-1132 151132 Computer, Math
## 11715 15-1132 151132 Computer, Math
## 11716 15-1132 151132 Computer, Math
## 11717 15-1199 151199 Computer, Math
## 11718 15-1121 151121 Computer, Math
## 11719 15-1121 151121 Computer, Math
## 11720 15-1131 151131 Computer, Math
## 11721 15-1132 151132 Computer, Math
## 11722 15-1132 151132 Computer, Math
## 11723 15-1121 151121 Computer, Math
## 11724 15-1121 151121 Computer, Math
## 11725 15-1132 151132 Computer, Math
## 11726 15-1121 151121 Computer, Math
## 11727 15-1199 151199 Computer, Math
## 11728 15-1131 151131 Computer, Math
## 11729 15-2031 152031 Computer, Math
## 11730 15-1132 151132 Computer, Math
## 11731 11-2021 112021 Management
## 11732 15-1132 151132 Computer, Math
## 11733 15-1132 151132 Computer, Math
## 11734 15-1132 151132 Computer, Math
## 11735 15-1142 151142 Computer, Math
## 11736 15-1132 151132 Computer, Math
## 11737 15-1132 151132 Computer, Math
## 11738 13-2051 132051 Business, Finance
## 11739 13-1111 131111 Business, Finance
## 11740 15-1121 151121 Computer, Math
## 11741 15-1132 151132 Computer, Math
## 11742 17-2061 172061 Architecture, Engineer
## 11743 15-1199 151199 Computer, Math
## 11744 17-2141 172141 Architecture, Engineer
## 11745 19-1012 191012 Life, Physcial, Social Science
## 11746 25-1054 251054 Education, Training
## 11747 19-1042 191042 Life, Physcial, Social Science
## 11748 17-2071 172071 Architecture, Engineer
## 11749 13-1111 131111 Business, Finance
## 11750 29-1069 291069 Healthcare Practitioner
## 11751 15-2031 152031 Computer, Math
## 11752 15-1132 151132 Computer, Math
## 11753 15-1131 151131 Computer, Math
## 11754 13-1111 131111 Business, Finance
## 11755 17-2071 172071 Architecture, Engineer
## 11756 15-1141 151141 Computer, Math
## 11757 19-1013 191013 Life, Physcial, Social Science
## 11758 13-2051 132051 Business, Finance
## 11759 15-1132 151132 Computer, Math
## 11760 15-1133 151133 Computer, Math
## 11761 15-1132 151132 Computer, Math
## 11762 15-1132 151132 Computer, Math
## 11763 17-2051 172051 Architecture, Engineer
## 11764 13-1111 131111 Business, Finance
## 11765 19-1042 191042 Life, Physcial, Social Science
## 11766 15-1132 151132 Computer, Math
## 11767 25-2031 252031 Education, Training
## 11768 25-1124 251124 Education, Training
## 11769 13-1161 131161 Business, Finance
## 11770 29-1063 291063 Healthcare Practitioner
## 11771 15-1132 151132 Computer, Math
## 11772 15-1199 151199 Computer, Math
## 11773 11-3021 113021 Management
## 11774 13-2099 132099 Business, Finance
## 11775 15-1143 151143 Computer, Math
## 11776 13-2011 132011 Business, Finance
## 11777 29-9099 299099 Healthcare Practitioner
## 11778 15-1132 151132 Computer, Math
## 11779 15-1121 151121 Computer, Math
## 11780 15-1121 151121 Computer, Math
## 11781 19-1042 191042 Life, Physcial, Social Science
## 11782 15-1121 151121 Computer, Math
## 11783 17-1011 171011 Architecture, Engineer
## 11784 15-1199 151199 Computer, Math
## 11785 15-1132 151132 Computer, Math
## 11786 15-1121 151121 Computer, Math
## 11787 15-1134 151134 Computer, Math
## 11788 13-1081 131081 Business, Finance
## 11789 19-1022 191022 Life, Physcial, Social Science
## 11790 15-1121 151121 Computer, Math
## 11791 15-1133 151133 Computer, Math
## 11792 15-1131 151131 Computer, Math
## 11793 13-1161 131161 Business, Finance
## 11794 15-1121 151121 Computer, Math
## 11795 15-1132 151132 Computer, Math
## 11796 15-1132 151132 Computer, Math
## 11797 15-1121 151121 Computer, Math
## 11798 15-1122 151122 Computer, Math
## 11799 15-1199 151199 Computer, Math
## 11800 15-1132 151132 Computer, Math
## 11801 15-1121 151121 Computer, Math
## 11802 13-1111 131111 Business, Finance
## 11803 17-2141 172141 Architecture, Engineer
## 11804 15-2031 152031 Computer, Math
## 11805 17-2199 172199 Architecture, Engineer
## 11806 15-1121 151121 Computer, Math
## 11807 15-1121 151121 Computer, Math
## 11808 15-1199 151199 Computer, Math
## 11809 17-3011 173011 Architecture, Engineer
## 11810 15-1199 151199 Computer, Math
## 11811 15-1122 151122 Computer, Math
## 11812 25-1011 251011 Education, Training
## 11813 17-2071 172071 Architecture, Engineer
## 11814 15-1121 151121 Computer, Math
## 11815 15-2041 152041 Computer, Math
## 11816 15-1132 151132 Computer, Math
## 11817 15-1121 151121 Computer, Math
## 11818 13-2051 132051 Business, Finance
## 11819 15-1199 151199 Computer, Math
## 11820 13-2011 132011 Business, Finance
## 11821 15-1132 151132 Computer, Math
## 11822 15-1121 151121 Computer, Math
## 11823 13-2051 132051 Business, Finance
## 11824 15-1132 151132 Computer, Math
## 11825 17-2072 172072 Architecture, Engineer
## 11826 15-1132 151132 Computer, Math
## 11827 15-1132 151132 Computer, Math
## 11828 15-1121 151121 Computer, Math
## 11829 15-1133 151133 Computer, Math
## 11830 15-1132 151132 Computer, Math
## 11831 15-1131 151131 Computer, Math
## 11832 15-2031 152031 Computer, Math
## 11833 15-1132 151132 Computer, Math
## 11834 15-1131 151131 Computer, Math
## 11835 15-2031 152031 Computer, Math
## 11836 13-1111 131111 Business, Finance
## 11837 15-1199 151199 Computer, Math
## 11838 41-9031 419031 Sales
## 11839 19-1042 191042 Life, Physcial, Social Science
## 11840 15-2041 152041 Computer, Math
## 11841 19-1042 191042 Life, Physcial, Social Science
## 11842 19-3099 193099 Life, Physcial, Social Science
## 11843 15-1121 151121 Computer, Math
## 11844 19-2011 192011 Life, Physcial, Social Science
## 11845 29-1122 291122 Healthcare Practitioner
## 11846 15-1121 151121 Computer, Math
## 11847 15-1132 151132 Computer, Math
## 11848 15-1132 151132 Computer, Math
## 11849 13-1161 131161 Business, Finance
## 11850 15-1121 151121 Computer, Math
## 11851 15-2011 152011 Computer, Math
## 11852 15-1132 151132 Computer, Math
## 11853 17-2111 172111 Architecture, Engineer
## 11854 17-2071 172071 Architecture, Engineer
## 11855 15-1132 151132 Computer, Math
## 11856 15-1132 151132 Computer, Math
## 11857 15-1132 151132 Computer, Math
## 11858 15-1131 151131 Computer, Math
## 11859 15-1141 151141 Computer, Math
## 11860 29-1069 291069 Healthcare Practitioner
## 11861 15-1199 151199 Computer, Math
## 11862 15-1142 151142 Computer, Math
## 11863 15-1121 151121 Computer, Math
## 11864 15-1132 151132 Computer, Math
## 11865 15-1199 151199 Computer, Math
## 11866 11-1021 111021 Management
## 11867 15-1131 151131 Computer, Math
## 11868 13-1161 131161 Business, Finance
## 11869 27-1024 271024 Media, Design
## 11870 17-2112 172112 Architecture, Engineer
## 11871 15-2031 152031 Computer, Math
## 11872 29-2011 292011 Healthcare Practitioner
## 11873 17-2199 172199 Architecture, Engineer
## 11874 17-2041 172041 Architecture, Engineer
## 11875 15-1132 151132 Computer, Math
## 11876 15-1122 151122 Computer, Math
## 11877 15-1132 151132 Computer, Math
## 11878 15-1199 151199 Computer, Math
## 11879 15-1131 151131 Computer, Math
## 11880 17-2031 172031 Architecture, Engineer
## 11881 11-1021 111021 Management
## 11882 17-2141 172141 Architecture, Engineer
## 11883 27-1024 271024 Media, Design
## 11884 15-1133 151133 Computer, Math
## 11885 15-1133 151133 Computer, Math
## 11886 15-1199 151199 Computer, Math
## 11887 15-1121 151121 Computer, Math
## 11888 13-2051 132051 Business, Finance
## 11889 15-1121 151121 Computer, Math
## 11890 15-1199 151199 Computer, Math
## 11891 15-1121 151121 Computer, Math
## 11892 17-2072 172072 Architecture, Engineer
## 11893 25-1042 251042 Education, Training
## 11894 15-1141 151141 Computer, Math
## 11895 15-1132 151132 Computer, Math
## 11896 15-1132 151132 Computer, Math
## 11897 15-1132 151132 Computer, Math
## 11898 15-1132 151132 Computer, Math
## 11899 15-1133 151133 Computer, Math
## 11900 15-1199 151199 Computer, Math
## 11901 15-1132 151132 Computer, Math
## 11902 15-1121 151121 Computer, Math
## 11903 15-1131 151131 Computer, Math
## 11904 19-2012 192012 Life, Physcial, Social Science
## 11905 13-1111 131111 Business, Finance
## 11906 15-1121 151121 Computer, Math
## 11907 25-1022 251022 Education, Training
## 11908 13-1161 131161 Business, Finance
## 11909 15-1199 151199 Computer, Math
## 11910 15-1132 151132 Computer, Math
## 11911 15-1199 151199 Computer, Math
## 11912 15-1132 151132 Computer, Math
## 11913 15-1141 151141 Computer, Math
## 11914 15-1134 151134 Computer, Math
## 11915 13-2011 132011 Business, Finance
## 11916 15-1132 151132 Computer, Math
## 11917 13-2011 132011 Business, Finance
## 11918 15-1132 151132 Computer, Math
## 11919 15-1131 151131 Computer, Math
## 11920 13-2011 132011 Business, Finance
## 11921 15-1199 151199 Computer, Math
## 11922 17-2112 172112 Architecture, Engineer
## 11923 15-1199 151199 Computer, Math
## 11924 19-3022.00 193022 Life, Physcial, Social Science
## 11925 15-1132 151132 Computer, Math
## 11926 13-1071 131071 Business, Finance
## 11927 15-1141 151141 Computer, Math
## 11928 15-1132 151132 Computer, Math
## 11929 15-1132 151132 Computer, Math
## 11930 19-1029 191029 Life, Physcial, Social Science
## 11931 15-1132 151132 Computer, Math
## 11932 15-1121 151121 Computer, Math
## 11933 15-1199 151199 Computer, Math
## 11934 15-2031 152031 Computer, Math
## 11935 15-1133 151133 Computer, Math
## 11936 11-3021 113021 Management
## 11937 15-1199 151199 Computer, Math
## 11938 15-1132 151132 Computer, Math
## 11939 17-2112 172112 Architecture, Engineer
## 11940 15-1121 151121 Computer, Math
## 11941 15-1141 151141 Computer, Math
## 11942 17-2199 172199 Architecture, Engineer
## 11943 11-9111 119111 Management
## 11944 15-1131 151131 Computer, Math
## 11945 15-1141 151141 Computer, Math
## 11946 15-1143 151143 Computer, Math
## 11947 13-1071 131071 Business, Finance
## 11948 15-1199 151199 Computer, Math
## 11949 15-1132 151132 Computer, Math
## 11950 15-1199 151199 Computer, Math
## 11951 17-2071 172071 Architecture, Engineer
## 11952 15-1199 151199 Computer, Math
## 11953 15-1132 151132 Computer, Math
## 11954 15-1132 151132 Computer, Math
## 11955 15-1199 151199 Computer, Math
## 11956 15-1132 151132 Computer, Math
## 11957 15-1133 151133 Computer, Math
## 11958 15-2031 152031 Computer, Math
## 11959 29-2011 292011 Healthcare Practitioner
## 11960 15-1133 151133 Computer, Math
## 11961 15-1132 151132 Computer, Math
## 11962 15-1121 151121 Computer, Math
## 11963 29-9099 299099 Healthcare Practitioner
## 11964 13-2099 132099 Business, Finance
## 11965 11-3021 113021 Management
## 11966 13-2041 132041 Business, Finance
## 11967 15-1132 151132 Computer, Math
## 11968 15-2031 152031 Computer, Math
## 11969 17-2071 172071 Architecture, Engineer
## 11970 19-1013 191013 Life, Physcial, Social Science
## 11971 15-1132 151132 Computer, Math
## 11972 17-2072 172072 Architecture, Engineer
## 11973 15-1121 151121 Computer, Math
## 11974 15-1133 151133 Computer, Math
## 11975 15-1141 151141 Computer, Math
## 11976 17-1011 171011 Architecture, Engineer
## 11977 29-1129 291129 Healthcare Practitioner
## 11978 15-1132 151132 Computer, Math
## 11979 11-3021 113021 Management
## 11980 29-1021 291021 Healthcare Practitioner
## 11981 15-1134 151134 Computer, Math
## 11982 15-1121 151121 Computer, Math
## 11983 15-1133 151133 Computer, Math
## 11984 19-3011 193011 Life, Physcial, Social Science
## 11985 15-1132 151132 Computer, Math
## 11986 15-1132 151132 Computer, Math
## 11987 15-1132 151132 Computer, Math
## 11988 15-1134 151134 Computer, Math
## 11989 15-1199 151199 Computer, Math
## 11990 15-1142 151142 Computer, Math
## 11991 13-2051 132051 Business, Finance
## 11992 15-1199 151199 Computer, Math
## 11993 15-1131 151131 Computer, Math
## 11994 11-3051 113051 Management
## 11995 15-1121 151121 Computer, Math
## 11996 15-2031 152031 Computer, Math
## 11997 15-1132 151132 Computer, Math
## 11998 15-1199 151199 Computer, Math
## 11999 17-2071 172071 Architecture, Engineer
## 12000 25-1071 251071 Education, Training
## 12001 11-1021 111021 Management
## 12002 21-1099 211099 Social Service
## 12003 15-1142 151142 Computer, Math
## 12004 15-2041 152041 Computer, Math
## 12005 23-1011 231011 Legal
## 12006 15-1132 151132 Computer, Math
## 12007 15-1132 151132 Computer, Math
## 12008 15-1132 151132 Computer, Math
## 12009 15-1199 151199 Computer, Math
## 12010 27-4032 274032 Media, Design
## 12011 15-1131 151131 Computer, Math
## 12012 15-1121 151121 Computer, Math
## 12013 15-1199 151199 Computer, Math
## 12014 15-1199 151199 Computer, Math
## 12015 15-1133 151133 Computer, Math
## 12016 15-1121 151121 Computer, Math
## 12017 15-1199 151199 Computer, Math
## 12018 15-1133 151133 Computer, Math
## 12019 15-1132 151132 Computer, Math
## 12020 15-1132 151132 Computer, Math
## 12021 17-3011 173011 Architecture, Engineer
## 12022 15-1121 151121 Computer, Math
## 12023 15-1132 151132 Computer, Math
## 12024 15-1132 151132 Computer, Math
## 12025 15-1132 151132 Computer, Math
## 12026 17-2199 172199 Architecture, Engineer
## 12027 15-1132 151132 Computer, Math
## 12028 13-1071 131071 Business, Finance
## 12029 25-1065 251065 Education, Training
## 12030 15-2041 152041 Computer, Math
## 12031 19-3022 193022 Life, Physcial, Social Science
## 12032 15-1121 151121 Computer, Math
## 12033 15-1132 151132 Computer, Math
## 12034 15-1199 151199 Computer, Math
## 12035 13-1199 131199 Business, Finance
## 12036 15-1199 151199 Computer, Math
## 12037 17-2071 172071 Architecture, Engineer
## 12038 15-1132 151132 Computer, Math
## 12039 15-1121 151121 Computer, Math
## 12040 15-1132 151132 Computer, Math
## 12041 15-1132 151132 Computer, Math
## 12042 15-1132 151132 Computer, Math
## 12043 15-2041 152041 Computer, Math
## 12044 15-1132 151132 Computer, Math
## 12045 15-1133 151133 Computer, Math
## 12046 17-2072 172072 Architecture, Engineer
## 12047 15-1132 151132 Computer, Math
## 12048 15-1132 151132 Computer, Math
## 12049 25-1124 251124 Education, Training
## 12050 15-1132 151132 Computer, Math
## 12051 15-1132 151132 Computer, Math
## 12052 15-1132 151132 Computer, Math
## 12053 15-1132 151132 Computer, Math
## 12054 15-1199 151199 Computer, Math
## 12055 15-1132 151132 Computer, Math
## 12056 15-1132 151132 Computer, Math
## 12057 13-1081 131081 Business, Finance
## 12058 25-2031 252031 Education, Training
## 12059 15-1199 151199 Computer, Math
## 12060 15-1199 151199 Computer, Math
## 12061 15-1131 151131 Computer, Math
## 12062 15-1132 151132 Computer, Math
## 12063 15-1132 151132 Computer, Math
## 12064 13-2051 132051 Business, Finance
## 12065 15-2031 152031 Computer, Math
## 12066 15-1132 151132 Computer, Math
## 12067 15-1199 151199 Computer, Math
## 12068 15-1133 151133 Computer, Math
## 12069 17-2141 172141 Architecture, Engineer
## 12070 15-1132 151132 Computer, Math
## 12071 15-1133 151133 Computer, Math
## 12072 15-1132 151132 Computer, Math
## 12073 27-1021 271021 Media, Design
## 12074 43-9111 439111 Others
## 12075 15-1132 151132 Computer, Math
## 12076 15-1132 151132 Computer, Math
## 12077 19-2099 192099 Life, Physcial, Social Science
## 12078 15-1132 151132 Computer, Math
## 12079 15-1132 151132 Computer, Math
## 12080 15-1121 151121 Computer, Math
## 12081 13-1111 131111 Business, Finance
## 12082 15-1132 151132 Computer, Math
## 12083 15-1132 151132 Computer, Math
## 12084 15-1121 151121 Computer, Math
## 12085 11-3071 113071 Management
## 12086 17-2199 172199 Architecture, Engineer
## 12087 15-1132 151132 Computer, Math
## 12088 15-1131 151131 Computer, Math
## 12089 15-1132 151132 Computer, Math
## 12090 15-1132 151132 Computer, Math
## 12091 15-1132 151132 Computer, Math
## 12092 15-1134 151134 Computer, Math
## 12093 15-1132 151132 Computer, Math
## 12094 15-1132 151132 Computer, Math
## 12095 15-1121 151121 Computer, Math
## 12096 15-1131 151131 Computer, Math
## 12097 15-1132 151132 Computer, Math
## 12098 15-1132 151132 Computer, Math
## 12099 13-2011 132011 Business, Finance
## 12100 15-1132 151132 Computer, Math
## 12101 15-1132 151132 Computer, Math
## 12102 15-1142 151142 Computer, Math
## 12103 29-9011 299011 Healthcare Practitioner
## 12104 15-1121 151121 Computer, Math
## 12105 25-1193 251193 Education, Training
## 12106 11-9199 119199 Management
## 12107 15-1134 151134 Computer, Math
## 12108 15-1199 151199 Computer, Math
## 12109 15-1132 151132 Computer, Math
## 12110 15-1121 151121 Computer, Math
## 12111 15-1199 151199 Computer, Math
## 12112 15-1199 151199 Computer, Math
## 12113 15-1132 151132 Computer, Math
## 12114 15-1121 151121 Computer, Math
## 12115 29-1122 291122 Healthcare Practitioner
## 12116 19-1042 191042 Life, Physcial, Social Science
## 12117 15-1121 151121 Computer, Math
## 12118 15-1132 151132 Computer, Math
## 12119 15-1199 151199 Computer, Math
## 12120 11-3021 113021 Management
## 12121 15-1132 151132 Computer, Math
## 12122 15-1132 151132 Computer, Math
## 12123 15-1132 151132 Computer, Math
## 12124 15-1132 151132 Computer, Math
## 12125 15-1132 151132 Computer, Math
## 12126 17-2112 172112 Architecture, Engineer
## 12127 13-1111 131111 Business, Finance
## 12128 15-1141 151141 Computer, Math
## 12129 15-1131 151131 Computer, Math
## 12130 15-1132 151132 Computer, Math
## 12131 15-1121 151121 Computer, Math
## 12132 15-1132 151132 Computer, Math
## 12133 17-2071 172071 Architecture, Engineer
## 12134 17-2141 172141 Architecture, Engineer
## 12135 25-2052 252052 Education, Training
## 12136 25-1071 251071 Education, Training
## 12137 15-1121 151121 Computer, Math
## 12138 15-1132 151132 Computer, Math
## 12139 15-1199 151199 Computer, Math
## 12140 15-1132 151132 Computer, Math
## 12141 15-1142 151142 Computer, Math
## 12142 15-1133 151133 Computer, Math
## 12143 15-1121 151121 Computer, Math
## 12144 17-2141 172141 Architecture, Engineer
## 12145 15-1199 151199 Computer, Math
## 12146 13-2011 132011 Business, Finance
## 12147 15-1121 151121 Computer, Math
## 12148 15-1199 151199 Computer, Math
## 12149 15-1132 151132 Computer, Math
## 12150 15-1132 151132 Computer, Math
## 12151 15-1132 151132 Computer, Math
## 12152 13-2051 132051 Business, Finance
## 12153 15-1132 151132 Computer, Math
## 12154 19-2012 192012 Life, Physcial, Social Science
## 12155 15-1132 151132 Computer, Math
## 12156 13-1111 131111 Business, Finance
## 12157 15-1121 151121 Computer, Math
## 12158 15-1199 151199 Computer, Math
## 12159 15-1141 151141 Computer, Math
## 12160 17-2199 172199 Architecture, Engineer
## 12161 15-1132 151132 Computer, Math
## 12162 15-1121 151121 Computer, Math
## 12163 15-1132 151132 Computer, Math
## 12164 15-1132 151132 Computer, Math
## 12165 15-1133 151133 Computer, Math
## 12166 15-1199 151199 Computer, Math
## 12167 15-1121 151121 Computer, Math
## 12168 15-1121 151121 Computer, Math
## 12169 15-1132 151132 Computer, Math
## 12170 13-2011 132011 Business, Finance
## 12171 15-1131 151131 Computer, Math
## 12172 15-1142 151142 Computer, Math
## 12173 15-2031 152031 Computer, Math
## 12174 17-2141 172141 Architecture, Engineer
## 12175 15-1133 151133 Computer, Math
## 12176 15-1133 151133 Computer, Math
## 12177 11-3021 113021 Management
## 12178 15-1121 151121 Computer, Math
## 12179 15-1121 151121 Computer, Math
## 12180 15-1199 151199 Computer, Math
## 12181 15-1121 151121 Computer, Math
## 12182 15-1132 151132 Computer, Math
## 12183 15-1132 151132 Computer, Math
## 12184 13-1041 131041 Business, Finance
## 12185 15-1121 151121 Computer, Math
## 12186 29-1141 291141 Healthcare Practitioner
## 12187 15-1121 151121 Computer, Math
## 12188 15-1132 151132 Computer, Math
## 12189 15-1034 151034 Computer, Math
## 12190 15-2031 152031 Computer, Math
## 12191 17-2072 172072 Architecture, Engineer
## 12192 15-2031 152031 Computer, Math
## 12193 15-1199 151199 Computer, Math
## 12194 13-1111 131111 Business, Finance
## 12195 15-1199 151199 Computer, Math
## 12196 25-1041 251041 Education, Training
## 12197 15-1199 151199 Computer, Math
## 12198 15-1142 151142 Computer, Math
## 12199 15-1121 151121 Computer, Math
## 12200 17-2141 172141 Architecture, Engineer
## 12201 13-1051 131051 Business, Finance
## 12202 15-2031 152031 Computer, Math
## 12203 17-2144 172144 Architecture, Engineer
## 12204 15-1132 151132 Computer, Math
## 12205 15-1132 151132 Computer, Math
## 12206 15-1121 151121 Computer, Math
## 12207 15-1132 151132 Computer, Math
## 12208 15-1132 151132 Computer, Math
## 12209 15-1132 151132 Computer, Math
## 12210 15-1133 151133 Computer, Math
## 12211 15-1132 151132 Computer, Math
## 12212 15-1141 151141 Computer, Math
## 12213 15-1132 151132 Computer, Math
## 12214 15-1121 151121 Computer, Math
## 12215 15-1132 151132 Computer, Math
## 12216 15-1143 151143 Computer, Math
## 12217 15-1132 151132 Computer, Math
## 12218 15-1199 151199 Computer, Math
## 12219 13-2011 132011 Business, Finance
## 12220 27-1021 271021 Media, Design
## 12221 15-1121 151121 Computer, Math
## 12222 15-1199 151199 Computer, Math
## 12223 17-2051 172051 Architecture, Engineer
## 12224 11-3021 113021 Management
## 12225 15-1132 151132 Computer, Math
## 12226 15-1131 151131 Computer, Math
## 12227 17-2112 172112 Architecture, Engineer
## 12228 15-1121 151121 Computer, Math
## 12229 15-1132 151132 Computer, Math
## 12230 11-9081 119081 Management
## 12231 15-1199 151199 Computer, Math
## 12232 15-1132 151132 Computer, Math
## 12233 15-1132 151132 Computer, Math
## 12234 15-1133 151133 Computer, Math
## 12235 15-1121 151121 Computer, Math
## 12236 15-1141 151141 Computer, Math
## 12237 15-1131 151131 Computer, Math
## 12238 15-1199 151199 Computer, Math
## 12239 15-1132 151132 Computer, Math
## 12240 13-1111 131111 Business, Finance
## 12241 15-1121 151121 Computer, Math
## 12242 15-1121 151121 Computer, Math
## 12243 15-1199 151199 Computer, Math
## 12244 15-1132 151132 Computer, Math
## 12245 15-1132 151132 Computer, Math
## 12246 15-1131 151131 Computer, Math
## 12247 15-1121 151121 Computer, Math
## 12248 13-2011 132011 Business, Finance
## 12249 15-1132 151132 Computer, Math
## 12250 15-1132 151132 Computer, Math
## 12251 15-1199 151199 Computer, Math
## 12252 15-1143 151143 Computer, Math
## 12253 15-2041 152041 Computer, Math
## 12254 15-1131 151131 Computer, Math
## 12255 15-1131 151131 Computer, Math
## 12256 17-2081 172081 Architecture, Engineer
## 12257 15-1134 151134 Computer, Math
## 12258 15-1142 151142 Computer, Math
## 12259 15-1132 151132 Computer, Math
## 12260 15-1133 151133 Computer, Math
## 12261 13-1022 131022 Business, Finance
## 12262 15-1121 151121 Computer, Math
## 12263 15-1199 151199 Computer, Math
## 12264 19-1042 191042 Life, Physcial, Social Science
## 12265 25-1067 251067 Education, Training
## 12266 15-1199 151199 Computer, Math
## 12267 15-1121 151121 Computer, Math
## 12268 15-1199 151199 Computer, Math
## 12269 15-1111 151111 Computer, Math
## 12270 15-1121 151121 Computer, Math
## 12271 15-1133 151133 Computer, Math
## 12272 15-1131 151131 Computer, Math
## 12273 15-1132 151132 Computer, Math
## 12274 19-4021 194021 Life, Physcial, Social Science
## 12275 15-2031 152031 Computer, Math
## 12276 15-1132 151132 Computer, Math
## 12277 25-1071 251071 Education, Training
## 12278 15-1121 151121 Computer, Math
## 12279 13-2051 132051 Business, Finance
## 12280 27-3041 273041 Media, Design
## 12281 15-1121 151121 Computer, Math
## 12282 15-1142 151142 Computer, Math
## 12283 29-1123 291123 Healthcare Practitioner
## 12284 15-1121 151121 Computer, Math
## 12285 15-1133 151133 Computer, Math
## 12286 15-1121 151121 Computer, Math
## 12287 15-1199 151199 Computer, Math
## 12288 15-1199 151199 Computer, Math
## 12289 15-1142 151142 Computer, Math
## 12290 17-2081 172081 Architecture, Engineer
## 12291 15-1132 151132 Computer, Math
## 12292 17-2141 172141 Architecture, Engineer
## 12293 15-1142 151142 Computer, Math
## 12294 15-1121 151121 Computer, Math
## 12295 15-1132 151132 Computer, Math
## 12296 15-1132 151132 Computer, Math
## 12297 15-1132 151132 Computer, Math
## 12298 19-4021 194021 Life, Physcial, Social Science
## 12299 15-1141 151141 Computer, Math
## 12300 15-1142 151142 Computer, Math
## 12301 15-1132 151132 Computer, Math
## 12302 29-1127 291127 Healthcare Practitioner
## 12303 15-1132 151132 Computer, Math
## 12304 15-1199 151199 Computer, Math
## 12305 19-2031 192031 Life, Physcial, Social Science
## 12306 15-1132 151132 Computer, Math
## 12307 15-1121 151121 Computer, Math
## 12308 17-1011 171011 Architecture, Engineer
## 12309 15-1132 151132 Computer, Math
## 12310 17-2112 172112 Architecture, Engineer
## 12311 29-1051 291051 Healthcare Practitioner
## 12312 15-1132 151132 Computer, Math
## 12313 11-9151 119151 Management
## 12314 15-1132 151132 Computer, Math
## 12315 17-2041 172041 Architecture, Engineer
## 12316 15-1132 151132 Computer, Math
## 12317 15-1199 151199 Computer, Math
## 12318 13-2011 132011 Business, Finance
## 12319 15-1132 151132 Computer, Math
## 12320 13-2099 132099 Business, Finance
## 12321 15-1132 151132 Computer, Math
## 12322 15-1142 151142 Computer, Math
## 12323 15-1199 151199 Computer, Math
## 12324 15-1121 151121 Computer, Math
## 12325 15-1132 151132 Computer, Math
## 12326 19-2031 192031 Life, Physcial, Social Science
## 12327 15-1199 151199 Computer, Math
## 12328 19-1042 191042 Life, Physcial, Social Science
## 12329 15-1199 151199 Computer, Math
## 12330 15-1132 151132 Computer, Math
## 12331 15-1121 151121 Computer, Math
## 12332 15-1142 151142 Computer, Math
## 12333 15-1199 151199 Computer, Math
## 12334 15-1121 151121 Computer, Math
## 12335 15-1132 151132 Computer, Math
## 12336 17-2072 172072 Architecture, Engineer
## 12337 15-1121 151121 Computer, Math
## 12338 15-1199 151199 Computer, Math
## 12339 15-1131 151131 Computer, Math
## 12340 15-1121 151121 Computer, Math
## 12341 15-1132 151132 Computer, Math
## 12342 15-1121 151121 Computer, Math
## 12343 15-1132 151132 Computer, Math
## 12344 15-1133 151133 Computer, Math
## 12345 15-1199 151199 Computer, Math
## 12346 15-1132 151132 Computer, Math
## 12347 15-1121 151121 Computer, Math
## 12348 15-1131 151131 Computer, Math
## 12349 17-2141 172141 Architecture, Engineer
## 12350 15-1199 151199 Computer, Math
## 12351 15-1132 151132 Computer, Math
## 12352 27-3022 273022 Media, Design
## 12353 15-1132 151132 Computer, Math
## 12354 15-1132 151132 Computer, Math
## 12355 15-1132 151132 Computer, Math
## 12356 15-1122 151122 Computer, Math
## 12357 15-1121 151121 Computer, Math
## 12358 15-1132 151132 Computer, Math
## 12359 15-1132 151132 Computer, Math
## 12360 17-2112 172112 Architecture, Engineer
## 12361 11-3031 113031 Management
## 12362 15-1122 151122 Computer, Math
## 12363 15-1131 151131 Computer, Math
## 12364 15-1141 151141 Computer, Math
## 12365 15-1132 151132 Computer, Math
## 12366 15-1132 151132 Computer, Math
## 12367 15-1132 151132 Computer, Math
## 12368 29-1051 291051 Healthcare Practitioner
## 12369 15-1121 151121 Computer, Math
## 12370 15-1132 151132 Computer, Math
## 12371 15-1121 151121 Computer, Math
## 12372 11-2021 112021 Management
## 12373 17-2071 172071 Architecture, Engineer
## 12374 17-2072 172072 Architecture, Engineer
## 12375 15-1132 151132 Computer, Math
## 12376 11-3021 113021 Management
## 12377 41-9031 419031 Sales
## 12378 15-1132 151132 Computer, Math
## 12379 15-1131 151131 Computer, Math
## 12380 15-1133 151133 Computer, Math
## 12381 13-2051 132051 Business, Finance
## 12382 17-2051 172051 Architecture, Engineer
## 12383 15-1132 151132 Computer, Math
## 12384 15-1132 151132 Computer, Math
## 12385 15-1134 151134 Computer, Math
## 12386 15-2041 152041 Computer, Math
## 12387 19-1042 191042 Life, Physcial, Social Science
## 12388 15-1133 151133 Computer, Math
## 12389 15-1132 151132 Computer, Math
## 12390 15-1121 151121 Computer, Math
## 12391 15-1132 151132 Computer, Math
## 12392 15-1121 151121 Computer, Math
## 12393 15-1132 151132 Computer, Math
## 12394 15-1133 151133 Computer, Math
## 12395 15-1132 151132 Computer, Math
## 12396 11-3021 113021 Management
## 12397 15-2011 152011 Computer, Math
## 12398 15-1199 151199 Computer, Math
## 12399 21-1021 211021 Social Service
## 12400 15-1131 151131 Computer, Math
## 12401 15-1199 151199 Computer, Math
## 12402 15-1132 151132 Computer, Math
## 12403 15-1133 151133 Computer, Math
## 12404 15-1199 151199 Computer, Math
## 12405 15-1133 151133 Computer, Math
## 12406 15-1132 151132 Computer, Math
## 12407 15-1141 151141 Computer, Math
## 12408 17-2071 172071 Architecture, Engineer
## 12409 15-1121 151121 Computer, Math
## 12410 15-1141 151141 Computer, Math
## 12411 15-1199 151199 Computer, Math
## 12412 15-1131 151131 Computer, Math
## 12413 15-1121 151121 Computer, Math
## 12414 15-1132 151132 Computer, Math
## 12415 17-2199 172199 Architecture, Engineer
## 12416 15-2041 152041 Computer, Math
## 12417 15-1132 151132 Computer, Math
## 12418 19-1023 191023 Life, Physcial, Social Science
## 12419 15-1132 151132 Computer, Math
## 12420 15-1199 151199 Computer, Math
## 12421 15-2031 152031 Computer, Math
## 12422 17-2072 172072 Architecture, Engineer
## 12423 15-1121 151121 Computer, Math
## 12424 13-1161 131161 Business, Finance
## 12425 15-1142 151142 Computer, Math
## 12426 15-1132 151132 Computer, Math
## 12427 13-2011 132011 Business, Finance
## 12428 15-1141 151141 Computer, Math
## 12429 15-1134 151134 Computer, Math
## 12430 15-1199 151199 Computer, Math
## 12431 19-4021 194021 Life, Physcial, Social Science
## 12432 15-2031 152031 Computer, Math
## 12433 15-1121 151121 Computer, Math
## 12434 15-1133 151133 Computer, Math
## 12435 13-1161 131161 Business, Finance
## 12436 17-2031 172031 Architecture, Engineer
## 12437 19-4021 194021 Life, Physcial, Social Science
## 12438 15-1132 151132 Computer, Math
## 12439 15-1132 151132 Computer, Math
## 12440 15-1132 151132 Computer, Math
## 12441 15-1143 151143 Computer, Math
## 12442 15-1132 151132 Computer, Math
## 12443 15-1142 151142 Computer, Math
## 12444 15-1141 151141 Computer, Math
## 12445 15-2041 152041 Computer, Math
## 12446 13-1111 131111 Business, Finance
## 12447 15-1143 151143 Computer, Math
## 12448 15-1131 151131 Computer, Math
## 12449 15-1121 151121 Computer, Math
## 12450 15-1121 151121 Computer, Math
## 12451 15-1199 151199 Computer, Math
## 12452 15-1131 151131 Computer, Math
## 12453 27-1024 271024 Media, Design
## 12454 15-1199 151199 Computer, Math
## 12455 45-2092 452092 Others
## 12456 15-1132 151132 Computer, Math
## 12457 15-1131 151131 Computer, Math
## 12458 17-2031 172031 Architecture, Engineer
## 12459 15-1132 151132 Computer, Math
## 12460 15-1131 151131 Computer, Math
## 12461 15-1121 151121 Computer, Math
## 12462 19-1042 191042 Life, Physcial, Social Science
## 12463 15-1132 151132 Computer, Math
## 12464 15-1132 151132 Computer, Math
## 12465 15-1121 151121 Computer, Math
## 12466 15-1132 151132 Computer, Math
## 12467 15-1132 151132 Computer, Math
## 12468 15-1199 151199 Computer, Math
## 12469 23-1011 231011 Legal
## 12470 13-1111 131111 Business, Finance
## 12471 13-2011 132011 Business, Finance
## 12472 15-1132 151132 Computer, Math
## 12473 15-1121 151121 Computer, Math
## 12474 15-1121 151121 Computer, Math
## 12475 15-1199 151199 Computer, Math
## 12476 11-3021 113021 Management
## 12477 15-1133 151133 Computer, Math
## 12478 15-1131 151131 Computer, Math
## 12479 15-1131 151131 Computer, Math
## 12480 15-1121 151121 Computer, Math
## 12481 15-1111 151111 Computer, Math
## 12482 19-4099 194099 Life, Physcial, Social Science
## 12483 15-1132 151132 Computer, Math
## 12484 17-2072 172072 Architecture, Engineer
## 12485 11-3071 113071 Management
## 12486 11-9021 119021 Management
## 12487 15-1132 151132 Computer, Math
## 12488 25-1124 251124 Education, Training
## 12489 15-1132 151132 Computer, Math
## 12490 15-1121 151121 Computer, Math
## 12491 17-2141 172141 Architecture, Engineer
## 12492 15-1199 151199 Computer, Math
## 12493 15-1132 151132 Computer, Math
## 12494 15-1132 151132 Computer, Math
## 12495 17-2072 172072 Architecture, Engineer
## 12496 15-1199 151199 Computer, Math
## 12497 15-1142 151142 Computer, Math
## 12498 15-1132 151132 Computer, Math
## 12499 15-1111 151111 Computer, Math
## 12500 15-1132 151132 Computer, Math
## 12501 15-1132 151132 Computer, Math
## 12502 15-1132 151132 Computer, Math
## 12503 15-1132 151132 Computer, Math
## 12504 15-1134 151134 Computer, Math
## 12505 15-1131 151131 Computer, Math
## 12506 13-2051 132051 Business, Finance
## 12507 15-1142 151142 Computer, Math
## 12508 15-1121 151121 Computer, Math
## 12509 15-1132 151132 Computer, Math
## 12510 15-1199 151199 Computer, Math
## 12511 15-1121 151121 Computer, Math
## 12512 15-1121 151121 Computer, Math
## 12513 15-1133 151133 Computer, Math
## 12514 15-1111 151111 Computer, Math
## 12515 15-1132 151132 Computer, Math
## 12516 15-1121 151121 Computer, Math
## 12517 15-1121 151121 Computer, Math
## 12518 15-1132 151132 Computer, Math
## 12519 15-2031 152031 Computer, Math
## 12520 17-2141 172141 Architecture, Engineer
## 12521 15-1132 151132 Computer, Math
## 12522 15-1132 151132 Computer, Math
## 12523 15-1199 151199 Computer, Math
## 12524 15-1131 151131 Computer, Math
## 12525 11-3021 113021 Management
## 12526 15-1143 151143 Computer, Math
## 12527 17-2141 172141 Architecture, Engineer
## 12528 15-1199 151199 Computer, Math
## 12529 13-1161 131161 Business, Finance
## 12530 15-1132 151132 Computer, Math
## 12531 15-2031 152031 Computer, Math
## 12532 15-1199.01 151199 Computer, Math
## 12533 15-1132 151132 Computer, Math
## 12534 15-1132 151132 Computer, Math
## 12535 15-1132 151132 Computer, Math
## 12536 15-1132 151132 Computer, Math
## 12537 19-2021 192021 Life, Physcial, Social Science
## 12538 15-2041 152041 Computer, Math
## 12539 15-1132 151132 Computer, Math
## 12540 15-1131 151131 Computer, Math
## 12541 15-1121 151121 Computer, Math
## 12542 15-1121 151121 Computer, Math
## 12543 15-1133 151133 Computer, Math
## 12544 15-1199 151199 Computer, Math
## 12545 15-1132 151132 Computer, Math
## 12546 17-2071 172071 Architecture, Engineer
## 12547 17-2141 172141 Architecture, Engineer
## 12548 15-1199 151199 Computer, Math
## 12549 15-1121 151121 Computer, Math
## 12550 15-1132 151132 Computer, Math
## 12551 15-1132 151132 Computer, Math
## 12552 15-1132 151132 Computer, Math
## 12553 15-1121 151121 Computer, Math
## 12554 15-1132 151132 Computer, Math
## 12555 15-1132 151132 Computer, Math
## 12556 15-1131 151131 Computer, Math
## 12557 29-1051 291051 Healthcare Practitioner
## 12558 15-1133 151133 Computer, Math
## 12559 15-1132 151132 Computer, Math
## 12560 27-1025 271025 Media, Design
## 12561 15-1132 151132 Computer, Math
## 12562 15-1199 151199 Computer, Math
## 12563 15-1121 151121 Computer, Math
## 12564 15-1132 151132 Computer, Math
## 12565 13-1051 131051 Business, Finance
## 12566 17-2031 172031 Architecture, Engineer
## 12567 15-1121 151121 Computer, Math
## 12568 13-2099 132099 Business, Finance
## 12569 15-1132 151132 Computer, Math
## 12570 15-1199 151199 Computer, Math
## 12571 15-1121 151121 Computer, Math
## 12572 15-1132 151132 Computer, Math
## 12573 15-1133 151133 Computer, Math
## 12574 15-1132 151132 Computer, Math
## 12575 15-1121 151121 Computer, Math
## 12576 15-1121 151121 Computer, Math
## 12577 15-1121 151121 Computer, Math
## 12578 25-2021 252021 Education, Training
## 12579 15-1132 151132 Computer, Math
## 12580 15-1199 151199 Computer, Math
## 12581 15-1133 151133 Computer, Math
## 12582 15-1132 151132 Computer, Math
## 12583 15-1132 151132 Computer, Math
## 12584 15-1199 151199 Computer, Math
## 12585 15-2041 152041 Computer, Math
## 12586 15-1121 151121 Computer, Math
## 12587 15-1121 151121 Computer, Math
## 12588 19-3011 193011 Life, Physcial, Social Science
## 12589 15-2021 152021 Computer, Math
## 12590 19-2031 192031 Life, Physcial, Social Science
## 12591 15-1132 151132 Computer, Math
## 12592 15-1132 151132 Computer, Math
## 12593 17-2051 172051 Architecture, Engineer
## 12594 15-1131 151131 Computer, Math
## 12595 15-1133 151133 Computer, Math
## 12596 25-2031 252031 Education, Training
## 12597 19-2021 192021 Life, Physcial, Social Science
## 12598 27-3031 273031 Media, Design
## 12599 15-2031 152031 Computer, Math
## 12600 15-1199 151199 Computer, Math
## 12601 15-1132 151132 Computer, Math
## 12602 41-9031 419031 Sales
## 12603 15-1199 151199 Computer, Math
## 12604 15-1199 151199 Computer, Math
## 12605 15-1122 151122 Computer, Math
## 12606 15-1132 151132 Computer, Math
## 12607 17-2071 172071 Architecture, Engineer
## 12608 13-1161 131161 Business, Finance
## 12609 15-1132 151132 Computer, Math
## 12610 15-1121 151121 Computer, Math
## 12611 15-1199 151199 Computer, Math
## 12612 15-2031 152031 Computer, Math
## 12613 15-1132 151132 Computer, Math
## 12614 15-1132 151132 Computer, Math
## 12615 15-2041 152041 Computer, Math
## 12616 15-1132 151132 Computer, Math
## 12617 15-1132 151132 Computer, Math
## 12618 19-1029 191029 Life, Physcial, Social Science
## 12619 15-1132 151132 Computer, Math
## 12620 15-1132 151132 Computer, Math
## 12621 15-1132 151132 Computer, Math
## 12622 15-1132 151132 Computer, Math
## 12623 15-1132 151132 Computer, Math
## 12624 15-1132 151132 Computer, Math
## 12625 15-1143 151143 Computer, Math
## 12626 15-1132 151132 Computer, Math
## 12627 15-1121 151121 Computer, Math
## 12628 15-1133 151133 Computer, Math
## 12629 15-2041 152041 Computer, Math
## 12630 15-1199 151199 Computer, Math
## 12631 15-1199 151199 Computer, Math
## 12632 15-1199 151199 Computer, Math
## 12633 15-1121 151121 Computer, Math
## 12634 15-1121 151121 Computer, Math
## 12635 15-1132 151132 Computer, Math
## 12636 15-1199 151199 Computer, Math
## 12637 15-1121 151121 Computer, Math
## 12638 15-1132 151132 Computer, Math
## 12639 11-9033 119033 Management
## 12640 15-1132 151132 Computer, Math
## 12641 15-1132 151132 Computer, Math
## 12642 15-1199 151199 Computer, Math
## 12643 15-1199 151199 Computer, Math
## 12644 25-1071 251071 Education, Training
## 12645 15-1132 151132 Computer, Math
## 12646 13-2051 132051 Business, Finance
## 12647 15-2031 152031 Computer, Math
## 12648 15-1131 151131 Computer, Math
## 12649 15-1142 151142 Computer, Math
## 12650 15-1199 151199 Computer, Math
## 12651 19-2031 192031 Life, Physcial, Social Science
## 12652 15-1121 151121 Computer, Math
## 12653 15-1132 151132 Computer, Math
## 12654 15-1132 151132 Computer, Math
## 12655 15-1132 151132 Computer, Math
## 12656 15-1131 151131 Computer, Math
## 12657 43-9111 439111 Others
## 12658 15-2031 152031 Computer, Math
## 12659 17-2072 172072 Architecture, Engineer
## 12660 15-1199 151199 Computer, Math
## 12661 17-2141 172141 Architecture, Engineer
## 12662 15-1199 151199 Computer, Math
## 12663 15-1121 151121 Computer, Math
## 12664 11-2021 112021 Management
## 12665 13-1161 131161 Business, Finance
## 12666 15-1121 151121 Computer, Math
## 12667 15-1199 151199 Computer, Math
## 12668 15-1134 151134 Computer, Math
## 12669 15-1199 151199 Computer, Math
## 12670 15-1132 151132 Computer, Math
## 12671 19-1029 191029 Life, Physcial, Social Science
## 12672 15-2031 152031 Computer, Math
## 12673 17-2071 172071 Architecture, Engineer
## 12674 15-1199 151199 Computer, Math
## 12675 15-1132 151132 Computer, Math
## 12676 15-1132 151132 Computer, Math
## 12677 17-2199 172199 Architecture, Engineer
## 12678 15-1111 151111 Computer, Math
## 12679 15-1132 151132 Computer, Math
## 12680 15-1121 151121 Computer, Math
## 12681 15-1132 151132 Computer, Math
## 12682 15-1132 151132 Computer, Math
## 12683 13-2031 132031 Business, Finance
## 12684 29-9092 299092 Healthcare Practitioner
## 12685 15-1132 151132 Computer, Math
## 12686 15-1132 151132 Computer, Math
## 12687 15-1133 151133 Computer, Math
## 12688 17-2141 172141 Architecture, Engineer
## 12689 15-1121 151121 Computer, Math
## 12690 15-1132 151132 Computer, Math
## 12691 15-1199 151199 Computer, Math
## 12692 15-1121 151121 Computer, Math
## 12693 15-1132 151132 Computer, Math
## 12694 15-1121 151121 Computer, Math
## 12695 15-1121 151121 Computer, Math
## 12696 15-1121 151121 Computer, Math
## 12697 15-1132 151132 Computer, Math
## 12698 17-2141 172141 Architecture, Engineer
## 12699 15-1132 151132 Computer, Math
## 12700 15-1133 151133 Computer, Math
## 12701 15-1199 151199 Computer, Math
## 12702 15-1132 151132 Computer, Math
## 12703 13-1161 131161 Business, Finance
## 12704 15-2031 152031 Computer, Math
## 12705 15-1132 151132 Computer, Math
## 12706 15-1132 151132 Computer, Math
## 12707 15-1132 151132 Computer, Math
## 12708 13-2051 132051 Business, Finance
## 12709 15-1141 151141 Computer, Math
## 12710 15-1121 151121 Computer, Math
## 12711 15-1121 151121 Computer, Math
## 12712 15-1132 151132 Computer, Math
## 12713 15-1142 151142 Computer, Math
## 12714 29-1063 291063 Healthcare Practitioner
## 12715 11-3021 113021 Management
## 12716 29-1122 291122 Healthcare Practitioner
## 12717 19-3091 193091 Life, Physcial, Social Science
## 12718 15-1132 151132 Computer, Math
## 12719 15-1131 151131 Computer, Math
## 12720 15-1199 151199 Computer, Math
## 12721 15-1132 151132 Computer, Math
## 12722 15-1132 151132 Computer, Math
## 12723 15-1132 151132 Computer, Math
## 12724 15-1199 151199 Computer, Math
## 12725 15-1143 151143 Computer, Math
## 12726 17-2031 172031 Architecture, Engineer
## 12727 15-1121 151121 Computer, Math
## 12728 19-1021 191021 Life, Physcial, Social Science
## 12729 15-1132 151132 Computer, Math
## 12730 29-1069 291069 Healthcare Practitioner
## 12731 15-1121 151121 Computer, Math
## 12732 15-1121 151121 Computer, Math
## 12733 17-2071 172071 Architecture, Engineer
## 12734 25-9031 259031 Education, Training
## 12735 15-2031 152031 Computer, Math
## 12736 15-1121 151121 Computer, Math
## 12737 17-2051 172051 Architecture, Engineer
## 12738 25-1032 251032 Education, Training
## 12739 15-1121 151121 Computer, Math
## 12740 15-1133 151133 Computer, Math
## 12741 15-1121 151121 Computer, Math
## 12742 15-1199 151199 Computer, Math
## 12743 15-1132 151132 Computer, Math
## 12744 15-1141 151141 Computer, Math
## 12745 13-1161 131161 Business, Finance
## 12746 15-1141 151141 Computer, Math
## 12747 17-2051 172051 Architecture, Engineer
## 12748 29-1069 291069 Healthcare Practitioner
## 12749 15-1199 151199 Computer, Math
## 12750 25-2031 252031 Education, Training
## 12751 15-1132 151132 Computer, Math
## 12752 29-2011 292011 Healthcare Practitioner
## 12753 15-1152 151152 Computer, Math
## 12754 11-9121 119121 Management
## 12755 15-1152 151152 Computer, Math
## 12756 15-1132 151132 Computer, Math
## 12757 13-2011 132011 Business, Finance
## 12758 13-2011 132011 Business, Finance
## 12759 13-1199 131199 Business, Finance
## 12760 15-1132 151132 Computer, Math
## 12761 15-1133 151133 Computer, Math
## 12762 15-1132 151132 Computer, Math
## 12763 11-9111 119111 Management
## 12764 15-1132 151132 Computer, Math
## 12765 29-1123 291123 Healthcare Practitioner
## 12766 15-1133 151133 Computer, Math
## 12767 15-1199 151199 Computer, Math
## 12768 15-1133 151133 Computer, Math
## 12769 15-1132 151132 Computer, Math
## 12770 15-1132 151132 Computer, Math
## 12771 15-1132 151132 Computer, Math
## 12772 41-4011 414011 Sales
## 12773 25-1054 251054 Education, Training
## 12774 15-1132 151132 Computer, Math
## 12775 15-1132 151132 Computer, Math
## 12776 15-1121 151121 Computer, Math
## 12777 15-1132 151132 Computer, Math
## 12778 17-2199 172199 Architecture, Engineer
## 12779 13-2051 132051 Business, Finance
## 12780 17-2131 172131 Architecture, Engineer
## 12781 15-1199 151199 Computer, Math
## 12782 15-1132 151132 Computer, Math
## 12783 15-2031 152031 Computer, Math
## 12784 15-1132 151132 Computer, Math
## 12785 15-1132 151132 Computer, Math
## 12786 15-1121 151121 Computer, Math
## 12787 17-2112 172112 Architecture, Engineer
## 12788 15-1199 151199 Computer, Math
## 12789 17-2199 172199 Architecture, Engineer
## 12790 13-2031 132031 Business, Finance
## 12791 15-1132 151132 Computer, Math
## 12792 15-1132 151132 Computer, Math
## 12793 15-1132 151132 Computer, Math
## 12794 15-2031 152031 Computer, Math
## 12795 15-1131 151131 Computer, Math
## 12796 15-1132 151132 Computer, Math
## 12797 29-2011 292011 Healthcare Practitioner
## 12798 15-1199 151199 Computer, Math
## 12799 41-3031 413031 Sales
## 12800 11-3051 113051 Management
## 12801 17-3027 173027 Architecture, Engineer
## 12802 27-1022 271022 Media, Design
## 12803 25-9031 259031 Education, Training
## 12804 15-1141 151141 Computer, Math
## 12805 15-1199 151199 Computer, Math
## 12806 15-1132 151132 Computer, Math
## 12807 15-1132 151132 Computer, Math
## 12808 15-2031 152031 Computer, Math
## 12809 15-1121 151121 Computer, Math
## 12810 27-1024 271024 Media, Design
## 12811 17-2071 172071 Architecture, Engineer
## 12812 15-1132 151132 Computer, Math
## 12813 15-1132 151132 Computer, Math
## 12814 15-1132 151132 Computer, Math
## 12815 15-1132 151132 Computer, Math
## 12816 15-1132 151132 Computer, Math
## 12817 15-1121 151121 Computer, Math
## 12818 15-1121 151121 Computer, Math
## 12819 15-1132 151132 Computer, Math
## 12820 13-2011 132011 Business, Finance
## 12821 15-1199 151199 Computer, Math
## 12822 15-1131 151131 Computer, Math
## 12823 15-1142 151142 Computer, Math
## 12824 15-1121 151121 Computer, Math
## 12825 15-1132 151132 Computer, Math
## 12826 15-1131 151131 Computer, Math
## 12827 15-2031 152031 Computer, Math
## 12828 15-1132 151132 Computer, Math
## 12829 15-1121 151121 Computer, Math
## 12830 11-9041 119041 Management
## 12831 15-1132 151132 Computer, Math
## 12832 15-1121 151121 Computer, Math
## 12833 15-1132 151132 Computer, Math
## 12834 15-1132 151132 Computer, Math
## 12835 17-2051 172051 Architecture, Engineer
## 12836 15-1132 151132 Computer, Math
## 12837 15-1133 151133 Computer, Math
## 12838 15-1132 151132 Computer, Math
## 12839 15-2031 152031 Computer, Math
## 12840 15-1133 151133 Computer, Math
## 12841 17-2141 172141 Architecture, Engineer
## 12842 25-1054 251054 Education, Training
## 12843 17-2071 172071 Architecture, Engineer
## 12844 15-1132 151132 Computer, Math
## 12845 15-1132 151132 Computer, Math
## 12846 17-2141 172141 Architecture, Engineer
## 12847 15-1121 151121 Computer, Math
## 12848 15-1121 151121 Computer, Math
## 12849 15-1121 151121 Computer, Math
## 12850 29-1123 291123 Healthcare Practitioner
## 12851 15-1142 151142 Computer, Math
## 12852 15-1121 151121 Computer, Math
## 12853 15-1132 151132 Computer, Math
## 12854 15-1133 151133 Computer, Math
## 12855 15-1132 151132 Computer, Math
## 12856 15-1132 151132 Computer, Math
## 12857 15-1121 151121 Computer, Math
## 12858 15-1132 151132 Computer, Math
## 12859 15-1131 151131 Computer, Math
## 12860 13-2051 132051 Business, Finance
## 12861 15-1132 151132 Computer, Math
## 12862 15-1132 151132 Computer, Math
## 12863 15-1132 151132 Computer, Math
## 12864 15-1121 151121 Computer, Math
## 12865 15-1131 151131 Computer, Math
## 12866 11-2022 112022 Management
## 12867 15-1199 151199 Computer, Math
## 12868 25-1032 251032 Education, Training
## 12869 15-1132 151132 Computer, Math
## 12870 15-1131 151131 Computer, Math
## 12871 29-1063 291063 Healthcare Practitioner
## 12872 15-1132 151132 Computer, Math
## 12873 15-1132 151132 Computer, Math
## 12874 29-2011 292011 Healthcare Practitioner
## 12875 13-2051 132051 Business, Finance
## 12876 15-1132 151132 Computer, Math
## 12877 15-1132 151132 Computer, Math
## 12878 15-1132 151132 Computer, Math
## 12879 15-1199 151199 Computer, Math
## 12880 15-1121 151121 Computer, Math
## 12881 17-2131 172131 Architecture, Engineer
## 12882 15-1121 151121 Computer, Math
## 12883 15-1132 151132 Computer, Math
## 12884 15-1132 151132 Computer, Math
## 12885 15-1131 151131 Computer, Math
## 12886 15-1199 151199 Computer, Math
## 12887 15-1199 151199 Computer, Math
## 12888 15-1132 151132 Computer, Math
## 12889 29-2011 292011 Healthcare Practitioner
## 12890 15-1132 151132 Computer, Math
## 12891 15-1199 151199 Computer, Math
## 12892 15-1199 151199 Computer, Math
## 12893 11-2022 112022 Management
## 12894 15-1133 151133 Computer, Math
## 12895 19-1029 191029 Life, Physcial, Social Science
## 12896 15-2021 152021 Computer, Math
## 12897 15-1121 151121 Computer, Math
## 12898 15-1132 151132 Computer, Math
## 12899 11-3021 113021 Management
## 12900 15-1133 151133 Computer, Math
## 12901 17-2199 172199 Architecture, Engineer
## 12902 15-2021 152021 Computer, Math
## 12903 13-1111 131111 Business, Finance
## 12904 17-2071 172071 Architecture, Engineer
## 12905 15-1132 151132 Computer, Math
## 12906 11-9041 119041 Management
## 12907 15-1132 151132 Computer, Math
## 12908 15-1121 151121 Computer, Math
## 12909 15-1132 151132 Computer, Math
## 12910 19-1029 191029 Life, Physcial, Social Science
## 12911 17-2071 172071 Architecture, Engineer
## 12912 15-1199 151199 Computer, Math
## 12913 17-2141 172141 Architecture, Engineer
## 12914 15-1132 151132 Computer, Math
## 12915 15-1141 151141 Computer, Math
## 12916 15-1132 151132 Computer, Math
## 12917 13-1051 131051 Business, Finance
## 12918 17-2072 172072 Architecture, Engineer
## 12919 15-1132 151132 Computer, Math
## 12920 15-1132 151132 Computer, Math
## 12921 15-1199 151199 Computer, Math
## 12922 15-1132 151132 Computer, Math
## 12923 15-1132 151132 Computer, Math
## 12924 15-1133 151133 Computer, Math
## 12925 15-1132 151132 Computer, Math
## 12926 15-1121 151121 Computer, Math
## 12927 15-1132 151132 Computer, Math
## 12928 11-3071 113071 Management
## 12929 15-1132 151132 Computer, Math
## 12930 29-9092 299092 Healthcare Practitioner
## 12931 15-1132 151132 Computer, Math
## 12932 15-1121 151121 Computer, Math
## 12933 15-1199 151199 Computer, Math
## 12934 15-1132 151132 Computer, Math
## 12935 15-1132 151132 Computer, Math
## 12936 11-9041 119041 Management
## 12937 17-2071 172071 Architecture, Engineer
## 12938 15-1132 151132 Computer, Math
## 12939 15-1141 151141 Computer, Math
## 12940 15-1132 151132 Computer, Math
## 12941 29-1021 291021 Healthcare Practitioner
## 12942 15-1121 151121 Computer, Math
## 12943 17-2071 172071 Architecture, Engineer
## 12944 15-1132 151132 Computer, Math
## 12945 15-1133 151133 Computer, Math
## 12946 15-1199 151199 Computer, Math
## 12947 15-1132 151132 Computer, Math
## 12948 15-1132 151132 Computer, Math
## 12949 15-1132 151132 Computer, Math
## 12950 15-1132 151132 Computer, Math
## 12951 15-1132 151132 Computer, Math
## 12952 15-1131 151131 Computer, Math
## 12953 15-1199 151199 Computer, Math
## 12954 15-1132 151132 Computer, Math
## 12955 25-2021 252021 Education, Training
## 12956 17-2121 172121 Architecture, Engineer
## 12957 17-2141 172141 Architecture, Engineer
## 12958 13-2011 132011 Business, Finance
## 12959 17-2141 172141 Architecture, Engineer
## 12960 15-1121 151121 Computer, Math
## 12961 15-1131 151131 Computer, Math
## 12962 15-1121 151121 Computer, Math
## 12963 15-1121 151121 Computer, Math
## 12964 15-1142 151142 Computer, Math
## 12965 13-2011 132011 Business, Finance
## 12966 15-1132 151132 Computer, Math
## 12967 15-1132 151132 Computer, Math
## 12968 15-1132 151132 Computer, Math
## 12969 17-2041 172041 Architecture, Engineer
## 12970 15-1132 151132 Computer, Math
## 12971 13-1111 131111 Business, Finance
## 12972 23-1011 231011 Legal
## 12973 15-1132 151132 Computer, Math
## 12974 15-1131 151131 Computer, Math
## 12975 15-1199 151199 Computer, Math
## 12976 13-2011 132011 Business, Finance
## 12977 15-1034 151034 Computer, Math
## 12978 15-2031 152031 Computer, Math
## 12979 15-1132 151132 Computer, Math
## 12980 19-2012 192012 Life, Physcial, Social Science
## 12981 15-1132 151132 Computer, Math
## 12982 17-2141 172141 Architecture, Engineer
## 12983 15-1121 151121 Computer, Math
## 12984 15-1199 151199 Computer, Math
## 12985 15-1199 151199 Computer, Math
## 12986 15-1141 151141 Computer, Math
## 12987 15-1133 151133 Computer, Math
## 12988 15-1121 151121 Computer, Math
## 12989 15-1132 151132 Computer, Math
## 12990 15-1132 151132 Computer, Math
## 12991 15-1199 151199 Computer, Math
## 12992 15-1199 151199 Computer, Math
## 12993 17-2072 172072 Architecture, Engineer
## 12994 15-1132 151132 Computer, Math
## 12995 15-1132 151132 Computer, Math
## 12996 15-1199 151199 Computer, Math
## 12997 15-1121 151121 Computer, Math
## 12998 17-2051 172051 Architecture, Engineer
## 12999 11-9021 119021 Management
## 13000 15-1132 151132 Computer, Math
## 13001 15-2031 152031 Computer, Math
## 13002 15-1199 151199 Computer, Math
## 13003 15-1132 151132 Computer, Math
## 13004 13-2011 132011 Business, Finance
## 13005 15-1132 151132 Computer, Math
## 13006 15-2031 152031 Computer, Math
## 13007 13-2099 132099 Business, Finance
## 13008 15-1132 151132 Computer, Math
## 13009 15-1133 151133 Computer, Math
## 13010 15-1132 151132 Computer, Math
## 13011 15-1134 151134 Computer, Math
## 13012 15-1121 151121 Computer, Math
## 13013 15-1121 151121 Computer, Math
## 13014 15-1121 151121 Computer, Math
## 13015 25-1071 251071 Education, Training
## 13016 15-1132 151132 Computer, Math
## 13017 17-2131 172131 Architecture, Engineer
## 13018 15-1142 151142 Computer, Math
## 13019 25-1052 251052 Education, Training
## 13020 15-1199 151199 Computer, Math
## 13021 15-1199 151199 Computer, Math
## 13022 15-1132 151132 Computer, Math
## 13023 15-1132 151132 Computer, Math
## 13024 15-1199 151199 Computer, Math
## 13025 15-2031 152031 Computer, Math
## 13026 15-1132 151132 Computer, Math
## 13027 15-1131 151131 Computer, Math
## 13028 15-1132 151132 Computer, Math
## 13029 15-1132 151132 Computer, Math
## 13030 15-1132 151132 Computer, Math
## 13031 15-1134 151134 Computer, Math
## 13032 19-1022 191022 Life, Physcial, Social Science
## 13033 15-1199 151199 Computer, Math
## 13034 15-1121 151121 Computer, Math
## 13035 15-1199 151199 Computer, Math
## 13036 15-1132 151132 Computer, Math
## 13037 15-1132 151132 Computer, Math
## 13038 15-1131 151131 Computer, Math
## 13039 15-1132 151132 Computer, Math
## 13040 15-1122 151122 Computer, Math
## 13041 15-1132 151132 Computer, Math
## 13042 15-1132 151132 Computer, Math
## 13043 15-1132 151132 Computer, Math
## 13044 43-9111 439111 Others
## 13045 15-1132 151132 Computer, Math
## 13046 13-1081 131081 Business, Finance
## 13047 15-1199 151199 Computer, Math
## 13048 41-9031 419031 Sales
## 13049 15-1111 151111 Computer, Math
## 13050 15-1132 151132 Computer, Math
## 13051 15-1132 151132 Computer, Math
## 13052 41-9031 419031 Sales
## 13053 13-1081 131081 Business, Finance
## 13054 15-1132 151132 Computer, Math
## 13055 19-2031 192031 Life, Physcial, Social Science
## 13056 15-1132 151132 Computer, Math
## 13057 15-1199 151199 Computer, Math
## 13058 15-1132 151132 Computer, Math
## 13059 15-1132 151132 Computer, Math
## 13060 15-1199 151199 Computer, Math
## 13061 15-1121 151121 Computer, Math
## 13062 15-1121 151121 Computer, Math
## 13063 15-1121 151121 Computer, Math
## 13064 13-1111 131111 Business, Finance
## 13065 15-1199 151199 Computer, Math
## 13066 15-2041 152041 Computer, Math
## 13067 29-1127 291127 Healthcare Practitioner
## 13068 15-1132 151132 Computer, Math
## 13069 15-2041 152041 Computer, Math
## 13070 15-1131 151131 Computer, Math
## 13071 25-1071 251071 Education, Training
## 13072 15-1199 151199 Computer, Math
## 13073 15-1142 151142 Computer, Math
## 13074 11-3021 113021 Management
## 13075 15-1132 151132 Computer, Math
## 13076 15-1142 151142 Computer, Math
## 13077 15-1121 151121 Computer, Math
## 13078 15-1132 151132 Computer, Math
## 13079 15-1141 151141 Computer, Math
## 13080 15-2031 152031 Computer, Math
## 13081 15-1199 151199 Computer, Math
## 13082 15-1132 151132 Computer, Math
## 13083 15-1121 151121 Computer, Math
## 13084 29-1021 291021 Healthcare Practitioner
## 13085 15-1121 151121 Computer, Math
## 13086 15-1133 151133 Computer, Math
## 13087 15-1121 151121 Computer, Math
## 13088 15-1199 151199 Computer, Math
## 13089 41-9031 419031 Sales
## 13090 15-1133 151133 Computer, Math
## 13091 15-2031 152031 Computer, Math
## 13092 15-1132 151132 Computer, Math
## 13093 15-1199 151199 Computer, Math
## 13094 15-1132 151132 Computer, Math
## 13095 15-1121 151121 Computer, Math
## 13096 15-1199 151199 Computer, Math
## 13097 17-2061 172061 Architecture, Engineer
## 13098 15-1142 151142 Computer, Math
## 13099 15-1132 151132 Computer, Math
## 13100 15-1133 151133 Computer, Math
## 13101 15-1132 151132 Computer, Math
## 13102 15-2031 152031 Computer, Math
## 13103 13-1161 131161 Business, Finance
## 13104 13-1161 131161 Business, Finance
## 13105 17-1011 171011 Architecture, Engineer
## 13106 15-1132 151132 Computer, Math
## 13107 15-1121 151121 Computer, Math
## 13108 17-2071 172071 Architecture, Engineer
## 13109 15-1132 151132 Computer, Math
## 13110 15-1132 151132 Computer, Math
## 13111 15-1199 151199 Computer, Math
## 13112 15-1199 151199 Computer, Math
## 13113 15-1199 151199 Computer, Math
## 13114 15-1121 151121 Computer, Math
## 13115 15-1132 151132 Computer, Math
## 13116 11-3031 113031 Management
## 13117 13-2011 132011 Business, Finance
## 13118 15-1111 151111 Computer, Math
## 13119 15-1121 151121 Computer, Math
## 13120 15-1199 151199 Computer, Math
## 13121 15-2041 152041 Computer, Math
## 13122 15-1132 151132 Computer, Math
## 13123 27-1011 271011 Media, Design
## 13124 15-2031 152031 Computer, Math
## 13125 15-1121 151121 Computer, Math
## 13126 15-1132 151132 Computer, Math
## 13127 15-1132 151132 Computer, Math
## 13128 15-1121 151121 Computer, Math
## 13129 15-1121 151121 Computer, Math
## 13130 17-2072 172072 Architecture, Engineer
## 13131 17-2199 172199 Architecture, Engineer
## 13132 15-1131 151131 Computer, Math
## 13133 27-2041 272041 Media, Design
## 13134 15-1132 151132 Computer, Math
## 13135 15-1132 151132 Computer, Math
## 13136 15-1199 151199 Computer, Math
## 13137 15-1132 151132 Computer, Math
## 13138 15-1199 151199 Computer, Math
## 13139 15-1132 151132 Computer, Math
## 13140 41-9031 419031 Sales
## 13141 15-1121 151121 Computer, Math
## 13142 15-1122 151122 Computer, Math
## 13143 15-1132 151132 Computer, Math
## 13144 15-1132 151132 Computer, Math
## 13145 15-1199 151199 Computer, Math
## 13146 15-1121 151121 Computer, Math
## 13147 15-1132 151132 Computer, Math
## 13148 15-1132 151132 Computer, Math
## 13149 15-1131 151131 Computer, Math
## 13150 15-1132 151132 Computer, Math
## 13151 15-1132 151132 Computer, Math
## 13152 15-1133 151133 Computer, Math
## 13153 15-1199 151199 Computer, Math
## 13154 15-1132 151132 Computer, Math
## 13155 13-1111 131111 Business, Finance
## 13156 17-2051 172051 Architecture, Engineer
## 13157 15-2031 152031 Computer, Math
## 13158 15-1131 151131 Computer, Math
## 13159 15-1132 151132 Computer, Math
## 13160 15-1199 151199 Computer, Math
## 13161 15-1199 151199 Computer, Math
## 13162 11-3021 113021 Management
## 13163 15-1132 151132 Computer, Math
## 13164 13-2031 132031 Business, Finance
## 13165 15-1131 151131 Computer, Math
## 13166 15-1132 151132 Computer, Math
## 13167 15-1132 151132 Computer, Math
## 13168 17-2141 172141 Architecture, Engineer
## 13169 25-1032 251032 Education, Training
## 13170 15-1133 151133 Computer, Math
## 13171 15-1132 151132 Computer, Math
## 13172 15-1131 151131 Computer, Math
## 13173 15-1131 151131 Computer, Math
## 13174 13-2051 132051 Business, Finance
## 13175 15-1132 151132 Computer, Math
## 13176 15-1132 151132 Computer, Math
## 13177 15-1132 151132 Computer, Math
## 13178 15-1132 151132 Computer, Math
## 13179 13-1111 131111 Business, Finance
## 13180 15-1199 151199 Computer, Math
## 13181 15-1133 151133 Computer, Math
## 13182 15-1199 151199 Computer, Math
## 13183 15-1132 151132 Computer, Math
## 13184 15-1111 151111 Computer, Math
## 13185 13-2099 132099 Business, Finance
## 13186 15-1132 151132 Computer, Math
## 13187 27-1025 271025 Media, Design
## 13188 15-1132 151132 Computer, Math
## 13189 19-1029 191029 Life, Physcial, Social Science
## 13190 15-1133 151133 Computer, Math
## 13191 27-1024 271024 Media, Design
## 13192 15-1121 151121 Computer, Math
## 13193 15-1132 151132 Computer, Math
## 13194 17-2141 172141 Architecture, Engineer
## 13195 15-1132 151132 Computer, Math
## 13196 15-1132 151132 Computer, Math
## 13197 15-1199 151199 Computer, Math
## 13198 15-1121 151121 Computer, Math
## 13199 17-2141 172141 Architecture, Engineer
## 13200 15-1132 151132 Computer, Math
## 13201 15-1199 151199 Computer, Math
## 13202 15-1132 151132 Computer, Math
## 13203 15-1141 151141 Computer, Math
## 13204 15-1132 151132 Computer, Math
## 13205 15-1132 151132 Computer, Math
## 13206 25-1125 251125 Education, Training
## 13207 19-2041 192041 Life, Physcial, Social Science
## 13208 25-1081 251081 Education, Training
## 13209 15-1132 151132 Computer, Math
## 13210 15-1132 151132 Computer, Math
## 13211 15-1132 151132 Computer, Math
## 13212 13-2011 132011 Business, Finance
## 13213 15-1132 151132 Computer, Math
## 13214 15-1132 151132 Computer, Math
## 13215 15-1134 151134 Computer, Math
## 13216 29-2011 292011 Healthcare Practitioner
## 13217 19-2031 192031 Life, Physcial, Social Science
## 13218 15-1131 151131 Computer, Math
## 13219 15-1121 151121 Computer, Math
## 13220 13-1111 131111 Business, Finance
## 13221 15-1121 151121 Computer, Math
## 13222 15-1132 151132 Computer, Math
## 13223 15-1132 151132 Computer, Math
## 13224 11-9041 119041 Management
## 13225 15-1132 151132 Computer, Math
## 13226 15-1133 151133 Computer, Math
## 13227 15-1132 151132 Computer, Math
## 13228 15-1133 151133 Computer, Math
## 13229 15-1131 151131 Computer, Math
## 13230 17-2141 172141 Architecture, Engineer
## 13231 15-1037 151037 Computer, Math
## 13232 15-1121 151121 Computer, Math
## 13233 15-1132 151132 Computer, Math
## 13234 15-1132 151132 Computer, Math
## 13235 15-1141 151141 Computer, Math
## 13236 15-1134 151134 Computer, Math
## 13237 15-1132 151132 Computer, Math
## 13238 13-1111 131111 Business, Finance
## 13239 15-1132 151132 Computer, Math
## 13240 17-2141 172141 Architecture, Engineer
## 13241 15-1132 151132 Computer, Math
## 13242 15-1199 151199 Computer, Math
## 13243 13-2099 132099 Business, Finance
## 13244 11-3021 113021 Management
## 13245 17-2051 172051 Architecture, Engineer
## 13246 15-1199 151199 Computer, Math
## 13247 15-2031 152031 Computer, Math
## 13248 15-1111 151111 Computer, Math
## 13249 15-1131 151131 Computer, Math
## 13250 15-1132 151132 Computer, Math
## 13251 23-1011 231011 Legal
## 13252 15-1132 151132 Computer, Math
## 13253 15-1132 151132 Computer, Math
## 13254 15-1132 151132 Computer, Math
## 13255 15-1132 151132 Computer, Math
## 13256 15-1132 151132 Computer, Math
## 13257 13-2011 132011 Business, Finance
## 13258 15-2031 152031 Computer, Math
## 13259 13-1051 131051 Business, Finance
## 13260 15-1199 151199 Computer, Math
## 13261 13-1111 131111 Business, Finance
## 13262 19-2012 192012 Life, Physcial, Social Science
## 13263 17-2141 172141 Architecture, Engineer
## 13264 15-1121 151121 Computer, Math
## 13265 13-1111 131111 Business, Finance
## 13266 15-1199 151199 Computer, Math
## 13267 29-1069 291069 Healthcare Practitioner
## 13268 19-3011 193011 Life, Physcial, Social Science
## 13269 15-1199 151199 Computer, Math
## 13270 15-1132 151132 Computer, Math
## 13271 13-1081 131081 Business, Finance
## 13272 15-2011 152011 Computer, Math
## 13273 15-1132 151132 Computer, Math
## 13274 25-2031 252031 Education, Training
## 13275 11-3021 113021 Management
## 13276 15-1121 151121 Computer, Math
## 13277 15-1199 151199 Computer, Math
## 13278 17-2141 172141 Architecture, Engineer
## 13279 15-1121 151121 Computer, Math
## 13280 17-2031 172031 Architecture, Engineer
## 13281 13-1161 131161 Business, Finance
## 13282 15-1121 151121 Computer, Math
## 13283 19-2012 192012 Life, Physcial, Social Science
## 13284 15-1121 151121 Computer, Math
## 13285 15-1132 151132 Computer, Math
## 13286 15-1132 151132 Computer, Math
## 13287 17-2071 172071 Architecture, Engineer
## 13288 15-1122 151122 Computer, Math
## 13289 19-2042 192042 Life, Physcial, Social Science
## 13290 15-1132 151132 Computer, Math
## 13291 15-1121 151121 Computer, Math
## 13292 15-2031 152031 Computer, Math
## 13293 15-1132 151132 Computer, Math
## 13294 15-1132 151132 Computer, Math
## 13295 15-1132 151132 Computer, Math
## 13296 29-1131 291131 Healthcare Practitioner
## 13297 15-2031 152031 Computer, Math
## 13298 15-2031 152031 Computer, Math
## 13299 19-1042 191042 Life, Physcial, Social Science
## 13300 15-1132 151132 Computer, Math
## 13301 15-1132 151132 Computer, Math
## 13302 15-1132 151132 Computer, Math
## 13303 15-1133 151133 Computer, Math
## 13304 15-1141 151141 Computer, Math
## 13305 17-2141 172141 Architecture, Engineer
## 13306 15-1122 151122 Computer, Math
## 13307 15-2041 152041 Computer, Math
## 13308 15-1199 151199 Computer, Math
## 13309 15-1132 151132 Computer, Math
## 13310 15-1199 151199 Computer, Math
## 13311 15-1131 151131 Computer, Math
## 13312 17-2071 172071 Architecture, Engineer
## 13313 15-1131 151131 Computer, Math
## 13314 15-1132 151132 Computer, Math
## 13315 29-1062 291062 Healthcare Practitioner
## 13316 17-2141 172141 Architecture, Engineer
## 13317 11-3021 113021 Management
## 13318 15-1142 151142 Computer, Math
## 13319 15-1199 151199 Computer, Math
## 13320 29-1066 291066 Healthcare Practitioner
## 13321 27-1021 271021 Media, Design
## 13322 11-3021 113021 Management
## 13323 15-1132 151132 Computer, Math
## 13324 13-2011 132011 Business, Finance
## 13325 15-1132 151132 Computer, Math
## 13326 15-1132 151132 Computer, Math
## 13327 15-1121 151121 Computer, Math
## 13328 15-1131 151131 Computer, Math
## 13329 15-1132 151132 Computer, Math
## 13330 29-1122 291122 Healthcare Practitioner
## 13331 15-1132 151132 Computer, Math
## 13332 15-1121 151121 Computer, Math
## 13333 13-2041 132041 Business, Finance
## 13334 15-1132 151132 Computer, Math
## 13335 41-9031 419031 Sales
## 13336 13-1161 131161 Business, Finance
## 13337 15-1132 151132 Computer, Math
## 13338 15-1121 151121 Computer, Math
## 13339 15-2011 152011 Computer, Math
## 13340 15-1199 151199 Computer, Math
## 13341 15-1199 151199 Computer, Math
## 13342 15-1133 151133 Computer, Math
## 13343 15-1132 151132 Computer, Math
## 13344 15-1199 151199 Computer, Math
## 13345 15-1199 151199 Computer, Math
## 13346 15-1133 151133 Computer, Math
## 13347 15-1132 151132 Computer, Math
## 13348 11-2022 112022 Management
## 13349 15-1132 151132 Computer, Math
## 13350 15-1199 151199 Computer, Math
## 13351 15-1121 151121 Computer, Math
## 13352 15-1141 151141 Computer, Math
## 13353 19-1029 191029 Life, Physcial, Social Science
## 13354 13-2011 132011 Business, Finance
## 13355 15-1143 151143 Computer, Math
## 13356 15-1121 151121 Computer, Math
## 13357 17-2111 172111 Architecture, Engineer
## 13358 15-1199 151199 Computer, Math
## 13359 15-1121 151121 Computer, Math
## 13360 15-1131 151131 Computer, Math
## 13361 15-1132 151132 Computer, Math
## 13362 15-1132 151132 Computer, Math
## 13363 13-1161 131161 Business, Finance
## 13364 15-1121 151121 Computer, Math
## 13365 15-1132 151132 Computer, Math
## 13366 15-1132 151132 Computer, Math
## 13367 11-3021 113021 Management
## 13368 15-1133 151133 Computer, Math
## 13369 15-1132 151132 Computer, Math
## 13370 15-1132 151132 Computer, Math
## 13371 15-1131 151131 Computer, Math
## 13372 15-1121 151121 Computer, Math
## 13373 15-1132 151132 Computer, Math
## 13374 15-1121 151121 Computer, Math
## 13375 15-1132 151132 Computer, Math
## 13376 27-1021 271021 Media, Design
## 13377 15-1121 151121 Computer, Math
## 13378 25-1011 251011 Education, Training
## 13379 25-2031 252031 Education, Training
## 13380 19-1021 191021 Life, Physcial, Social Science
## 13381 15-1134 151134 Computer, Math
## 13382 15-1132 151132 Computer, Math
## 13383 15-1199 151199 Computer, Math
## 13384 15-1121 151121 Computer, Math
## 13385 15-1132 151132 Computer, Math
## 13386 15-1132 151132 Computer, Math
## 13387 15-1133 151133 Computer, Math
## 13388 15-1199 151199 Computer, Math
## 13389 15-1141 151141 Computer, Math
## 13390 15-1132 151132 Computer, Math
## 13391 15-1132 151132 Computer, Math
## 13392 15-1132 151132 Computer, Math
## 13393 15-1199 151199 Computer, Math
## 13394 41-9031 419031 Sales
## 13395 15-1199 151199 Computer, Math
## 13396 15-1142 151142 Computer, Math
## 13397 15-1132 151132 Computer, Math
## 13398 15-1133 151133 Computer, Math
## 13399 17-2112 172112 Architecture, Engineer
## 13400 15-1199 151199 Computer, Math
## 13401 15-1132 151132 Computer, Math
## 13402 15-1133 151133 Computer, Math
## 13403 15-1199 151199 Computer, Math
## 13404 15-1121 151121 Computer, Math
## 13405 15-1132 151132 Computer, Math
## 13406 15-1111 151111 Computer, Math
## 13407 15-1133 151133 Computer, Math
## 13408 15-1132 151132 Computer, Math
## 13409 15-1132 151132 Computer, Math
## 13410 15-1111 151111 Computer, Math
## 13411 15-1199 151199 Computer, Math
## 13412 15-1132 151132 Computer, Math
## 13413 15-1132 151132 Computer, Math
## 13414 15-2041 152041 Computer, Math
## 13415 15-1121 151121 Computer, Math
## 13416 15-1132 151132 Computer, Math
## 13417 15-1132 151132 Computer, Math
## 13418 15-1199 151199 Computer, Math
## 13419 11-3051 113051 Management
## 13420 15-1121 151121 Computer, Math
## 13421 13-1111 131111 Business, Finance
## 13422 15-1132 151132 Computer, Math
## 13423 15-1121 151121 Computer, Math
## 13424 15-1133 151133 Computer, Math
## 13425 15-1132 151132 Computer, Math
## 13426 19-1042 191042 Life, Physcial, Social Science
## 13427 15-1111 151111 Computer, Math
## 13428 15-2041 152041 Computer, Math
## 13429 15-1199 151199 Computer, Math
## 13430 15-1132 151132 Computer, Math
## 13431 13-2099 132099 Business, Finance
## 13432 17-2051 172051 Architecture, Engineer
## 13433 15-1132 151132 Computer, Math
## 13434 15-1132 151132 Computer, Math
## 13435 13-1071 131071 Business, Finance
## 13436 15-1132 151132 Computer, Math
## 13437 15-1132 151132 Computer, Math
## 13438 15-1199 151199 Computer, Math
## 13439 15-1132 151132 Computer, Math
## 13440 15-1121 151121 Computer, Math
## 13441 15-1121 151121 Computer, Math
## 13442 19-1013 191013 Life, Physcial, Social Science
## 13443 15-1199 151199 Computer, Math
## 13444 15-1132 151132 Computer, Math
## 13445 15-1121 151121 Computer, Math
## 13446 15-1121 151121 Computer, Math
## 13447 11-3021 113021 Management
## 13448 15-1199 151199 Computer, Math
## 13449 15-1132 151132 Computer, Math
## 13450 15-1132 151132 Computer, Math
## 13451 15-2021 152021 Computer, Math
## 13452 15-1132 151132 Computer, Math
## 13453 13-2051 132051 Business, Finance
## 13454 19-4061 194061 Life, Physcial, Social Science
## 13455 29-1181 291181 Healthcare Practitioner
## 13456 29-1065 291065 Healthcare Practitioner
## 13457 15-1132 151132 Computer, Math
## 13458 17-2112 172112 Architecture, Engineer
## 13459 17-2072 172072 Architecture, Engineer
## 13460 17-2031 172031 Architecture, Engineer
## 13461 15-1132 151132 Computer, Math
## 13462 15-1199 151199 Computer, Math
## 13463 15-1132 151132 Computer, Math
## 13464 15-1199 151199 Computer, Math
## 13465 15-1133 151133 Computer, Math
## 13466 15-1132 151132 Computer, Math
## 13467 15-1132 151132 Computer, Math
## 13468 15-1132 151132 Computer, Math
## 13469 15-1133 151133 Computer, Math
## 13470 15-1141 151141 Computer, Math
## 13471 15-1132 151132 Computer, Math
## 13472 15-2021 152021 Computer, Math
## 13473 15-1132 151132 Computer, Math
## 13474 19-1021 191021 Life, Physcial, Social Science
## 13475 15-1199 151199 Computer, Math
## 13476 15-1132 151132 Computer, Math
## 13477 27-1024 271024 Media, Design
## 13478 15-1132 151132 Computer, Math
## 13479 15-1199 151199 Computer, Math
## 13480 17-2141 172141 Architecture, Engineer
## 13481 15-1132 151132 Computer, Math
## 13482 15-1121 151121 Computer, Math
## 13483 15-1121 151121 Computer, Math
## 13484 15-1131 151131 Computer, Math
## 13485 15-1132 151132 Computer, Math
## 13486 15-1141 151141 Computer, Math
## 13487 15-1132 151132 Computer, Math
## 13488 15-1121 151121 Computer, Math
## 13489 15-1132 151132 Computer, Math
## 13490 15-1121 151121 Computer, Math
## 13491 13-1111 131111 Business, Finance
## 13492 17-2112 172112 Architecture, Engineer
## 13493 15-1121 151121 Computer, Math
## 13494 15-1121 151121 Computer, Math
## 13495 17-2199 172199 Architecture, Engineer
## 13496 15-1132 151132 Computer, Math
## 13497 15-1132 151132 Computer, Math
## 13498 25-1063 251063 Education, Training
## 13499 15-1199 151199 Computer, Math
## 13500 15-2031 152031 Computer, Math
## 13501 13-1111 131111 Business, Finance
## 13502 15-1199 151199 Computer, Math
## 13503 15-1121 151121 Computer, Math
## 13504 15-1121 151121 Computer, Math
## 13505 15-2031 152031 Computer, Math
## 13506 15-1132 151132 Computer, Math
## 13507 11-3121 113121 Management
## 13508 15-1199 151199 Computer, Math
## 13509 11-9041 119041 Management
## 13510 17-2112 172112 Architecture, Engineer
## 13511 15-1121 151121 Computer, Math
## 13512 15-1131 151131 Computer, Math
## 13513 15-1121 151121 Computer, Math
## 13514 15-1132 151132 Computer, Math
## 13515 15-1132 151132 Computer, Math
## 13516 13-2011 132011 Business, Finance
## 13517 15-1121 151121 Computer, Math
## 13518 15-1132 151132 Computer, Math
## 13519 15-1132 151132 Computer, Math
## 13520 15-1121 151121 Computer, Math
## 13521 15-1121 151121 Computer, Math
## 13522 15-1199 151199 Computer, Math
## 13523 15-1131 151131 Computer, Math
## 13524 15-1199 151199 Computer, Math
## 13525 19-1029 191029 Life, Physcial, Social Science
## 13526 17-2141 172141 Architecture, Engineer
## 13527 15-1132 151132 Computer, Math
## 13528 15-1132 151132 Computer, Math
## 13529 15-1121 151121 Computer, Math
## 13530 15-1132 151132 Computer, Math
## 13531 15-1141 151141 Computer, Math
## 13532 15-1132 151132 Computer, Math
## 13533 15-1132 151132 Computer, Math
## 13534 17-2051 172051 Architecture, Engineer
## 13535 29-1199 291199 Healthcare Practitioner
## 13536 15-1132 151132 Computer, Math
## 13537 15-1121 151121 Computer, Math
## 13538 19-3011 193011 Life, Physcial, Social Science
## 13539 15-1132 151132 Computer, Math
## 13540 15-1132 151132 Computer, Math
## 13541 15-1131 151131 Computer, Math
## 13542 15-1199 151199 Computer, Math
## 13543 27-1021 271021 Media, Design
## 13544 15-1132 151132 Computer, Math
## 13545 15-1131 151131 Computer, Math
## 13546 15-1132 151132 Computer, Math
## 13547 15-1121 151121 Computer, Math
## 13548 15-1121 151121 Computer, Math
## 13549 15-1131 151131 Computer, Math
## 13550 15-1132 151132 Computer, Math
## 13551 15-1121 151121 Computer, Math
## 13552 13-1111 131111 Business, Finance
## 13553 15-1121 151121 Computer, Math
## 13554 15-1132 151132 Computer, Math
## 13555 15-1199 151199 Computer, Math
## 13556 15-1132 151132 Computer, Math
## 13557 15-2031 152031 Computer, Math
## 13558 13-2011 132011 Business, Finance
## 13559 13-2052 132052 Business, Finance
## 13560 13-1151 131151 Business, Finance
## 13561 15-1121 151121 Computer, Math
## 13562 15-1199 151199 Computer, Math
## 13563 15-1132 151132 Computer, Math
## 13564 15-1132 151132 Computer, Math
## 13565 15-1199 151199 Computer, Math
## 13566 15-1132 151132 Computer, Math
## 13567 15-1132 151132 Computer, Math
## 13568 29-1123 291123 Healthcare Practitioner
## 13569 11-3021 113021 Management
## 13570 15-1132 151132 Computer, Math
## 13571 15-1132 151132 Computer, Math
## 13572 15-1132 151132 Computer, Math
## 13573 15-1199 151199 Computer, Math
## 13574 15-1132 151132 Computer, Math
## 13575 15-1131 151131 Computer, Math
## 13576 11-3021 113021 Management
## 13577 15-1121 151121 Computer, Math
## 13578 15-1132 151132 Computer, Math
## 13579 15-1132 151132 Computer, Math
## 13580 15-1132 151132 Computer, Math
## 13581 15-1131 151131 Computer, Math
## 13582 15-1132 151132 Computer, Math
## 13583 15-1132 151132 Computer, Math
## 13584 15-1132 151132 Computer, Math
## 13585 15-1121 151121 Computer, Math
## 13586 15-1121 151121 Computer, Math
## 13587 15-1121 151121 Computer, Math
## 13588 13-1111 131111 Business, Finance
## 13589 15-1132 151132 Computer, Math
## 13590 15-1199 151199 Computer, Math
## 13591 15-1132 151132 Computer, Math
## 13592 15-1132 151132 Computer, Math
## 13593 15-1142 151142 Computer, Math
## 13594 13-2051 132051 Business, Finance
## 13595 15-1132 151132 Computer, Math
## 13596 13-2099 132099 Business, Finance
## 13597 15-1133 151133 Computer, Math
## 13598 17-2141 172141 Architecture, Engineer
## 13599 13-2011 132011 Business, Finance
## 13600 15-1132 151132 Computer, Math
## 13601 25-1022 251022 Education, Training
## 13602 13-1111 131111 Business, Finance
## 13603 15-1132 151132 Computer, Math
## 13604 15-2041 152041 Computer, Math
## 13605 13-2011 132011 Business, Finance
## 13606 15-1122 151122 Computer, Math
## 13607 15-1131 151131 Computer, Math
## 13608 15-1132 151132 Computer, Math
## 13609 13-2051 132051 Business, Finance
## 13610 11-3021 113021 Management
## 13611 13-1081 131081 Business, Finance
## 13612 15-1133 151133 Computer, Math
## 13613 15-1132 151132 Computer, Math
## 13614 13-2011 132011 Business, Finance
## 13615 25-2051 252051 Education, Training
## 13616 15-1199 151199 Computer, Math
## 13617 29-1051 291051 Healthcare Practitioner
## 13618 15-1121 151121 Computer, Math
## 13619 15-1132 151132 Computer, Math
## 13620 15-1121 151121 Computer, Math
## 13621 15-1132 151132 Computer, Math
## 13622 27-2022 272022 Media, Design
## 13623 15-1132 151132 Computer, Math
## 13624 15-1132 151132 Computer, Math
## 13625 15-1131 151131 Computer, Math
## 13626 15-1133 151133 Computer, Math
## 13627 13-1161 131161 Business, Finance
## 13628 15-1121 151121 Computer, Math
## 13629 15-1132 151132 Computer, Math
## 13630 15-1133 151133 Computer, Math
## 13631 15-1131 151131 Computer, Math
## 13632 15-1132 151132 Computer, Math
## 13633 15-1132 151132 Computer, Math
## 13634 15-1142 151142 Computer, Math
## 13635 15-1132 151132 Computer, Math
## 13636 15-1132 151132 Computer, Math
## 13637 15-1152 151152 Computer, Math
## 13638 29-1021 291021 Healthcare Practitioner
## 13639 15-1199 151199 Computer, Math
## 13640 15-1132 151132 Computer, Math
## 13641 15-1132 151132 Computer, Math
## 13642 15-1133 151133 Computer, Math
## 13643 15-1133 151133 Computer, Math
## 13644 15-1131 151131 Computer, Math
## 13645 15-1132 151132 Computer, Math
## 13646 15-1132 151132 Computer, Math
## 13647 15-1121 151121 Computer, Math
## 13648 15-1133 151133 Computer, Math
## 13649 15-1133 151133 Computer, Math
## 13650 15-1132 151132 Computer, Math
## 13651 15-1131 151131 Computer, Math
## 13652 15-1121 151121 Computer, Math
## 13653 15-1132 151132 Computer, Math
## 13654 15-1121 151121 Computer, Math
## 13655 15-1132 151132 Computer, Math
## 13656 11-3011 113011 Management
## 13657 15-1134 151134 Computer, Math
## 13658 15-1131 151131 Computer, Math
## 13659 15-2031 152031 Computer, Math
## 13660 15-2041 152041 Computer, Math
## 13661 19-1042 191042 Life, Physcial, Social Science
## 13662 15-1199 151199 Computer, Math
## 13663 15-1111 151111 Computer, Math
## 13664 15-1141 151141 Computer, Math
## 13665 15-1142 151142 Computer, Math
## 13666 15-1121 151121 Computer, Math
## 13667 15-1121 151121 Computer, Math
## 13668 15-1142 151142 Computer, Math
## 13669 15-1199 151199 Computer, Math
## 13670 15-1121 151121 Computer, Math
## 13671 15-1121 151121 Computer, Math
## 13672 17-2051 172051 Architecture, Engineer
## 13673 29-1065 291065 Healthcare Practitioner
## 13674 15-1131 151131 Computer, Math
## 13675 13-1111 131111 Business, Finance
## 13676 15-1132 151132 Computer, Math
## 13677 15-1132 151132 Computer, Math
## 13678 15-1199 151199 Computer, Math
## 13679 15-1199 151199 Computer, Math
## 13680 15-1132 151132 Computer, Math
## 13681 19-1042 191042 Life, Physcial, Social Science
## 13682 23-2011 232011 Legal
## 13683 15-2031 152031 Computer, Math
## 13684 13-1111 131111 Business, Finance
## 13685 19-2012 192012 Life, Physcial, Social Science
## 13686 19-2032 192032 Life, Physcial, Social Science
## 13687 15-1199 151199 Computer, Math
## 13688 11-3051 113051 Management
## 13689 19-2031 192031 Life, Physcial, Social Science
## 13690 19-1042 191042 Life, Physcial, Social Science
## 13691 15-2021 152021 Computer, Math
## 13692 15-1121 151121 Computer, Math
## 13693 13-1111 131111 Business, Finance
## 13694 15-1199 151199 Computer, Math
## 13695 15-1121 151121 Computer, Math
## 13696 15-1131 151131 Computer, Math
## 13697 15-1121 151121 Computer, Math
## 13698 15-1132 151132 Computer, Math
## 13699 15-1132 151132 Computer, Math
## 13700 15-1132 151132 Computer, Math
## 13701 25-9031 259031 Education, Training
## 13702 15-1142 151142 Computer, Math
## 13703 15-1132 151132 Computer, Math
## 13704 15-1199 151199 Computer, Math
## 13705 15-1132 151132 Computer, Math
## 13706 15-1132 151132 Computer, Math
## 13707 15-1132 151132 Computer, Math
## 13708 15-2031 152031 Computer, Math
## 13709 15-1132 151132 Computer, Math
## 13710 15-1132 151132 Computer, Math
## 13711 25-1022 251022 Education, Training
## 13712 15-1131 151131 Computer, Math
## 13713 15-1132 151132 Computer, Math
## 13714 15-1132 151132 Computer, Math
## 13715 17-2141 172141 Architecture, Engineer
## 13716 15-1121 151121 Computer, Math
## 13717 15-1132 151132 Computer, Math
## 13718 17-2071 172071 Architecture, Engineer
## 13719 15-1132 151132 Computer, Math
## 13720 15-1121 151121 Computer, Math
## 13721 17-2072 172072 Architecture, Engineer
## 13722 13-1161 131161 Business, Finance
## 13723 15-1132 151132 Computer, Math
## 13724 15-1199 151199 Computer, Math
## 13725 17-2051 172051 Architecture, Engineer
## 13726 15-1142 151142 Computer, Math
## 13727 15-1199 151199 Computer, Math
## 13728 15-1121 151121 Computer, Math
## 13729 17-2072 172072 Architecture, Engineer
## 13730 29-1123 291123 Healthcare Practitioner
## 13731 13-1041 131041 Business, Finance
## 13732 15-1133 151133 Computer, Math
## 13733 15-1199 151199 Computer, Math
## 13734 13-1041 131041 Business, Finance
## 13735 15-1133 151133 Computer, Math
## 13736 15-1132 151132 Computer, Math
## 13737 15-1132 151132 Computer, Math
## 13738 17-2112 172112 Architecture, Engineer
## 13739 15-1132 151132 Computer, Math
## 13740 15-1132 151132 Computer, Math
## 13741 13-1111 131111 Business, Finance
## 13742 15-1199 151199 Computer, Math
## 13743 19-1013 191013 Life, Physcial, Social Science
## 13744 15-1132 151132 Computer, Math
## 13745 15-1132 151132 Computer, Math
## 13746 15-2031 152031 Computer, Math
## 13747 15-1132 151132 Computer, Math
## 13748 27-3031 273031 Media, Design
## 13749 15-1132 151132 Computer, Math
## 13750 15-1121 151121 Computer, Math
## 13751 15-1132 151132 Computer, Math
## 13752 19-2012 192012 Life, Physcial, Social Science
## 13753 13-2051 132051 Business, Finance
## 13754 17-2151 172151 Architecture, Engineer
## 13755 15-1121 151121 Computer, Math
## 13756 17-2141 172141 Architecture, Engineer
## 13757 15-1141 151141 Computer, Math
## 13758 15-1142 151142 Computer, Math
## 13759 15-2041 152041 Computer, Math
## 13760 29-1122 291122 Healthcare Practitioner
## 13761 15-1131 151131 Computer, Math
## 13762 15-1199 151199 Computer, Math
## 13763 15-1132 151132 Computer, Math
## 13764 15-1132 151132 Computer, Math
## 13765 15-1132 151132 Computer, Math
## 13766 11-3021 113021 Management
## 13767 15-1199 151199 Computer, Math
## 13768 15-1133 151133 Computer, Math
## 13769 15-1122 151122 Computer, Math
## 13770 15-1122 151122 Computer, Math
## 13771 15-1132 151132 Computer, Math
## 13772 15-1132 151132 Computer, Math
## 13773 17-2071 172071 Architecture, Engineer
## 13774 29-1122 291122 Healthcare Practitioner
## 13775 15-1132 151132 Computer, Math
## 13776 25-1021 251021 Education, Training
## 13777 17-2051 172051 Architecture, Engineer
## 13778 25-2031 252031 Education, Training
## 13779 17-2141 172141 Architecture, Engineer
## 13780 15-1142 151142 Computer, Math
## 13781 15-1133 151133 Computer, Math
## 13782 15-1199 151199 Computer, Math
## 13783 15-1132 151132 Computer, Math
## 13784 15-1132 151132 Computer, Math
## 13785 15-1132 151132 Computer, Math
## 13786 19-1029 191029 Life, Physcial, Social Science
## 13787 15-1132 151132 Computer, Math
## 13788 15-1121 151121 Computer, Math
## 13789 15-1199 151199 Computer, Math
## 13790 15-1132 151132 Computer, Math
## 13791 15-1132 151132 Computer, Math
## 13792 15-1132 151132 Computer, Math
## 13793 15-1132 151132 Computer, Math
## 13794 17-2081 172081 Architecture, Engineer
## 13795 15-1133 151133 Computer, Math
## 13796 15-1132 151132 Computer, Math
## 13797 15-2031 152031 Computer, Math
## 13798 15-1141 151141 Computer, Math
## 13799 17-2112 172112 Architecture, Engineer
## 13800 15-1131 151131 Computer, Math
## 13801 13-1161 131161 Business, Finance
## 13802 15-1121 151121 Computer, Math
## 13803 15-1132 151132 Computer, Math
## 13804 15-1132 151132 Computer, Math
## 13805 15-1121 151121 Computer, Math
## 13806 13-1111 131111 Business, Finance
## 13807 15-2031 152031 Computer, Math
## 13808 27-1024 271024 Media, Design
## 13809 15-1132 151132 Computer, Math
## 13810 17-2071 172071 Architecture, Engineer
## 13811 17-2072 172072 Architecture, Engineer
## 13812 15-1121 151121 Computer, Math
## 13813 15-1199 151199 Computer, Math
## 13814 27-3041 273041 Media, Design
## 13815 15-1132 151132 Computer, Math
## 13816 15-1132 151132 Computer, Math
## 13817 13-1161 131161 Business, Finance
## 13818 15-1132 151132 Computer, Math
## 13819 15-1121 151121 Computer, Math
## 13820 15-1142 151142 Computer, Math
## 13821 15-1199 151199 Computer, Math
## 13822 15-1131 151131 Computer, Math
## 13823 15-1141 151141 Computer, Math
## 13824 15-1132 151132 Computer, Math
## 13825 15-1122 151122 Computer, Math
## 13826 15-1199 151199 Computer, Math
## 13827 15-1199 151199 Computer, Math
## 13828 15-1133 151133 Computer, Math
## 13829 15-1132 151132 Computer, Math
## 13830 13-1161 131161 Business, Finance
## 13831 15-1142 151142 Computer, Math
## 13832 15-1131 151131 Computer, Math
## 13833 15-1131 151131 Computer, Math
## 13834 15-1121 151121 Computer, Math
## 13835 15-1121 151121 Computer, Math
## 13836 15-1141 151141 Computer, Math
## 13837 13-1111 131111 Business, Finance
## 13838 15-1132 151132 Computer, Math
## 13839 15-1132 151132 Computer, Math
## 13840 15-1132 151132 Computer, Math
## 13841 15-1132 151132 Computer, Math
## 13842 15-1121 151121 Computer, Math
## 13843 15-2031 152031 Computer, Math
## 13844 15-2041 152041 Computer, Math
## 13845 15-1133 151133 Computer, Math
## 13846 19-1042 191042 Life, Physcial, Social Science
## 13847 15-1132 151132 Computer, Math
## 13848 13-2011 132011 Business, Finance
## 13849 15-1199 151199 Computer, Math
## 13850 25-1022 251022 Education, Training
## 13851 13-1111 131111 Business, Finance
## 13852 15-1132 151132 Computer, Math
## 13853 15-1121 151121 Computer, Math
## 13854 15-1132 151132 Computer, Math
## 13855 15-1132 151132 Computer, Math
## 13856 15-1121 151121 Computer, Math
## 13857 15-1199 151199 Computer, Math
## 13858 15-1121 151121 Computer, Math
## 13859 15-1132 151132 Computer, Math
## 13860 13-1111 131111 Business, Finance
## 13861 15-1132 151132 Computer, Math
## 13862 15-1199 151199 Computer, Math
## 13863 15-1132 151132 Computer, Math
## 13864 15-1132 151132 Computer, Math
## 13865 15-1132 151132 Computer, Math
## 13866 25-1071 251071 Education, Training
## 13867 17-2071 172071 Architecture, Engineer
## 13868 15-2011 152011 Computer, Math
## 13869 15-1132 151132 Computer, Math
## 13870 15-1141 151141 Computer, Math
## 13871 15-1131 151131 Computer, Math
## 13872 15-1132 151132 Computer, Math
## 13873 15-2041 152041 Computer, Math
## 13874 15-1121 151121 Computer, Math
## 13875 15-1132 151132 Computer, Math
## 13876 15-1121 151121 Computer, Math
## 13877 15-1132 151132 Computer, Math
## 13878 17-2071 172071 Architecture, Engineer
## 13879 15-1133 151133 Computer, Math
## 13880 13-1111 131111 Business, Finance
## 13881 15-1132 151132 Computer, Math
## 13882 29-1069 291069 Healthcare Practitioner
## 13883 13-2051 132051 Business, Finance
## 13884 15-1121 151121 Computer, Math
## 13885 15-1132 151132 Computer, Math
## 13886 15-1133 151133 Computer, Math
## 13887 15-1131 151131 Computer, Math
## 13888 15-1132 151132 Computer, Math
## 13889 15-1132 151132 Computer, Math
## 13890 27-3031 273031 Media, Design
## 13891 15-2041 152041 Computer, Math
## 13892 29-1069 291069 Healthcare Practitioner
## 13893 15-1132 151132 Computer, Math
## 13894 15-1132 151132 Computer, Math
## 13895 15-1132 151132 Computer, Math
## 13896 19-1021 191021 Life, Physcial, Social Science
## 13897 15-1132 151132 Computer, Math
## 13898 19-2011 192011 Life, Physcial, Social Science
## 13899 13-1041 131041 Business, Finance
## 13900 15-1134 151134 Computer, Math
## 13901 15-1133 151133 Computer, Math
## 13902 15-1132 151132 Computer, Math
## 13903 15-1199 151199 Computer, Math
## 13904 15-1132 151132 Computer, Math
## 13905 25-1069 251069 Education, Training
## 13906 29-1065 291065 Healthcare Practitioner
## 13907 15-1132 151132 Computer, Math
## 13908 15-1121 151121 Computer, Math
## 13909 11-3071 113071 Management
## 13910 13-1111 131111 Business, Finance
## 13911 13-2099 132099 Business, Finance
## 13912 17-2072 172072 Architecture, Engineer
## 13913 13-1111 131111 Business, Finance
## 13914 15-2031 152031 Computer, Math
## 13915 15-1133 151133 Computer, Math
## 13916 15-1132 151132 Computer, Math
## 13917 15-1121 151121 Computer, Math
## 13918 15-2041 152041 Computer, Math
## 13919 15-1132 151132 Computer, Math
## 13920 17-2141 172141 Architecture, Engineer
## 13921 15-1132 151132 Computer, Math
## 13922 15-1122 151122 Computer, Math
## 13923 25-1071 251071 Education, Training
## 13924 29-1069 291069 Healthcare Practitioner
## 13925 15-1121 151121 Computer, Math
## 13926 15-1121 151121 Computer, Math
## 13927 15-1121 151121 Computer, Math
## 13928 15-1133 151133 Computer, Math
## 13929 13-1081 131081 Business, Finance
## 13930 13-2011 132011 Business, Finance
## 13931 15-1121 151121 Computer, Math
## 13932 13-2011 132011 Business, Finance
## 13933 15-1132 151132 Computer, Math
## 13934 15-1199 151199 Computer, Math
## 13935 15-2041 152041 Computer, Math
## 13936 15-1121 151121 Computer, Math
## 13937 15-1132 151132 Computer, Math
## 13938 15-1142 151142 Computer, Math
## 13939 15-1132 151132 Computer, Math
## 13940 11-9121 119121 Management
## 13941 15-1133 151133 Computer, Math
## 13942 11-3021 113021 Management
## 13943 11-9121 119121 Management
## 13944 15-1199 151199 Computer, Math
## 13945 17-2071 172071 Architecture, Engineer
## 13946 19-1042 191042 Life, Physcial, Social Science
## 13947 15-1132 151132 Computer, Math
## 13948 27-1021 271021 Media, Design
## 13949 15-1132 151132 Computer, Math
## 13950 17-2072 172072 Architecture, Engineer
## 13951 15-1132 151132 Computer, Math
## 13952 15-2031 152031 Computer, Math
## 13953 13-1111 131111 Business, Finance
## 13954 15-1199 151199 Computer, Math
## 13955 15-1132 151132 Computer, Math
## 13956 13-2099 132099 Business, Finance
## 13957 15-1142 151142 Computer, Math
## 13958 15-1121 151121 Computer, Math
## 13959 15-1142 151142 Computer, Math
## 13960 15-1132 151132 Computer, Math
## 13961 15-1132 151132 Computer, Math
## 13962 15-1121 151121 Computer, Math
## 13963 15-1121 151121 Computer, Math
## 13964 15-1133 151133 Computer, Math
## 13965 15-1199 151199 Computer, Math
## 13966 15-1133 151133 Computer, Math
## 13967 15-1121 151121 Computer, Math
## 13968 15-1133 151133 Computer, Math
## 13969 15-1132 151132 Computer, Math
## 13970 13-1111 131111 Business, Finance
## 13971 13-1161 131161 Business, Finance
## 13972 11-9121 119121 Management
## 13973 15-1131 151131 Computer, Math
## 13974 15-1121 151121 Computer, Math
## 13975 29-1063 291063 Healthcare Practitioner
## 13976 15-1132 151132 Computer, Math
## 13977 25-1032 251032 Education, Training
## 13978 17-2072 172072 Architecture, Engineer
## 13979 15-1199 151199 Computer, Math
## 13980 15-1199 151199 Computer, Math
## 13981 19-1021 191021 Life, Physcial, Social Science
## 13982 15-1132 151132 Computer, Math
## 13983 25-1126 251126 Education, Training
## 13984 17-2041 172041 Architecture, Engineer
## 13985 17-2199 172199 Architecture, Engineer
## 13986 15-1132 151132 Computer, Math
## 13987 15-1199 151199 Computer, Math
## 13988 15-1121 151121 Computer, Math
## 13989 15-1132 151132 Computer, Math
## 13990 13-1041 131041 Business, Finance
## 13991 15-1199 151199 Computer, Math
## 13992 15-1132 151132 Computer, Math
## 13993 15-1199 151199 Computer, Math
## 13994 15-1132 151132 Computer, Math
## 13995 15-1121 151121 Computer, Math
## 13996 25-2031 252031 Education, Training
## 13997 15-1132 151132 Computer, Math
## 13998 19-3051 193051 Life, Physcial, Social Science
## 13999 15-1121 151121 Computer, Math
## 14000 15-1134 151134 Computer, Math
## 14001 15-1121 151121 Computer, Math
## 14002 15-1132 151132 Computer, Math
## 14003 17-2041 172041 Architecture, Engineer
## 14004 15-1132 151132 Computer, Math
## 14005 15-2041 152041 Computer, Math
## 14006 15-1199 151199 Computer, Math
## 14007 15-1131 151131 Computer, Math
## 14008 11-3021 113021 Management
## 14009 15-1131 151131 Computer, Math
## 14010 15-1133 151133 Computer, Math
## 14011 13-1111 131111 Business, Finance
## 14012 15-1199 151199 Computer, Math
## 14013 15-1121 151121 Computer, Math
## 14014 15-1134 151134 Computer, Math
## 14015 15-1132 151132 Computer, Math
## 14016 15-1121 151121 Computer, Math
## 14017 15-1132 151132 Computer, Math
## 14018 15-1199 151199 Computer, Math
## 14019 29-1069 291069 Healthcare Practitioner
## 14020 17-1011 171011 Architecture, Engineer
## 14021 15-1132 151132 Computer, Math
## 14022 29-2011 292011 Healthcare Practitioner
## 14023 15-1199 151199 Computer, Math
## 14024 15-1121 151121 Computer, Math
## 14025 15-1133 151133 Computer, Math
## 14026 15-1199 151199 Computer, Math
## 14027 13-1081 131081 Business, Finance
## 14028 15-2031 152031 Computer, Math
## 14029 15-1133 151133 Computer, Math
## 14030 15-1131 151131 Computer, Math
## 14031 15-1132 151132 Computer, Math
## 14032 15-1132 151132 Computer, Math
## 14033 17-2051 172051 Architecture, Engineer
## 14034 15-1132 151132 Computer, Math
## 14035 11-2021 112021 Management
## 14036 29-1021 291021 Healthcare Practitioner
## 14037 19-1021 191021 Life, Physcial, Social Science
## 14038 15-1199 151199 Computer, Math
## 14039 17-2071 172071 Architecture, Engineer
## 14040 15-1132 151132 Computer, Math
## 14041 15-1132 151132 Computer, Math
## 14042 15-1133 151133 Computer, Math
## 14043 17-2072 172072 Architecture, Engineer
## 14044 29-1063 291063 Healthcare Practitioner
## 14045 15-1121 151121 Computer, Math
## 14046 15-1199 151199 Computer, Math
## 14047 15-1121 151121 Computer, Math
## 14048 15-2031 152031 Computer, Math
## 14049 15-1132 151132 Computer, Math
## 14050 15-1132 151132 Computer, Math
## 14051 15-1132 151132 Computer, Math
## 14052 15-1133 151133 Computer, Math
## 14053 15-1132 151132 Computer, Math
## 14054 15-1132 151132 Computer, Math
## 14055 15-1133 151133 Computer, Math
## 14056 15-1132 151132 Computer, Math
## 14057 13-1051 131051 Business, Finance
## 14058 15-1199 151199 Computer, Math
## 14059 17-2141 172141 Architecture, Engineer
## 14060 15-1141 151141 Computer, Math
## 14061 15-1132 151132 Computer, Math
## 14062 15-1132 151132 Computer, Math
## 14063 15-1121 151121 Computer, Math
## 14064 15-1111 151111 Computer, Math
## 14065 15-1121 151121 Computer, Math
## 14066 15-1121 151121 Computer, Math
## 14067 15-1132 151132 Computer, Math
## 14068 15-1132 151132 Computer, Math
## 14069 15-1132 151132 Computer, Math
## 14070 25-1071 251071 Education, Training
## 14071 13-2051 132051 Business, Finance
## 14072 15-1199 151199 Computer, Math
## 14073 15-1132 151132 Computer, Math
## 14074 15-1142 151142 Computer, Math
## 14075 15-1132 151132 Computer, Math
## 14076 13-2011 132011 Business, Finance
## 14077 15-1132 151132 Computer, Math
## 14078 15-2031 152031 Computer, Math
## 14079 15-1199 151199 Computer, Math
## 14080 15-1121 151121 Computer, Math
## 14081 17-2072 172072 Architecture, Engineer
## 14082 15-1132 151132 Computer, Math
## 14083 15-1132 151132 Computer, Math
## 14084 15-1133 151133 Computer, Math
## 14085 15-1132 151132 Computer, Math
## 14086 13-1111 131111 Business, Finance
## 14087 15-1199 151199 Computer, Math
## 14088 15-1132 151132 Computer, Math
## 14089 15-1131 151131 Computer, Math
## 14090 15-1132 151132 Computer, Math
## 14091 15-1132 151132 Computer, Math
## 14092 15-1132 151132 Computer, Math
## 14093 29-1065 291065 Healthcare Practitioner
## 14094 15-1121 151121 Computer, Math
## 14095 15-1141 151141 Computer, Math
## 14096 17-2141 172141 Architecture, Engineer
## 14097 25-2031 252031 Education, Training
## 14098 15-1132 151132 Computer, Math
## 14099 13-2051 132051 Business, Finance
## 14100 15-1121 151121 Computer, Math
## 14101 17-2112 172112 Architecture, Engineer
## 14102 15-1131 151131 Computer, Math
## 14103 15-1199 151199 Computer, Math
## 14104 15-1132 151132 Computer, Math
## 14105 15-2011 152011 Computer, Math
## 14106 13-1023 131023 Business, Finance
## 14107 15-1131 151131 Computer, Math
## 14108 15-1199 151199 Computer, Math
## 14109 15-1133 151133 Computer, Math
## 14110 15-1199 151199 Computer, Math
## 14111 15-1134 151134 Computer, Math
## 14112 15-1132 151132 Computer, Math
## 14113 29-1069 291069 Healthcare Practitioner
## 14114 15-1131 151131 Computer, Math
## 14115 15-1132 151132 Computer, Math
## 14116 15-1121 151121 Computer, Math
## 14117 15-1132 151132 Computer, Math
## 14118 15-1134 151134 Computer, Math
## 14119 15-1132 151132 Computer, Math
## 14120 21-1012 211012 Social Service
## 14121 15-1199 151199 Computer, Math
## 14122 15-1131 151131 Computer, Math
## 14123 15-1132 151132 Computer, Math
## 14124 15-1122 151122 Computer, Math
## 14125 15-2041 152041 Computer, Math
## 14126 15-1132 151132 Computer, Math
## 14127 27-1024 271024 Media, Design
## 14128 15-1199 151199 Computer, Math
## 14129 15-1133 151133 Computer, Math
## 14130 15-1131 151131 Computer, Math
## 14131 15-1132 151132 Computer, Math
## 14132 15-1132 151132 Computer, Math
## 14133 15-1142 151142 Computer, Math
## 14134 15-1121 151121 Computer, Math
## 14135 15-1132 151132 Computer, Math
## 14136 15-1132 151132 Computer, Math
## 14137 15-1132 151132 Computer, Math
## 14138 15-1199 151199 Computer, Math
## 14139 15-1132 151132 Computer, Math
## 14140 11-9041 119041 Management
## 14141 15-1121 151121 Computer, Math
## 14142 15-1132 151132 Computer, Math
## 14143 15-1121 151121 Computer, Math
## 14144 27-1024 271024 Media, Design
## 14145 15-1132 151132 Computer, Math
## 14146 15-1121 151121 Computer, Math
## 14147 15-1132 151132 Computer, Math
## 14148 15-1132 151132 Computer, Math
## 14149 19-1042 191042 Life, Physcial, Social Science
## 14150 19-1029 191029 Life, Physcial, Social Science
## 14151 15-1132 151132 Computer, Math
## 14152 15-1199 151199 Computer, Math
## 14153 15-1121 151121 Computer, Math
## 14154 19-2031 192031 Life, Physcial, Social Science
## 14155 15-1132 151132 Computer, Math
## 14156 15-1132 151132 Computer, Math
## 14157 15-1132 151132 Computer, Math
## 14158 13-2051 132051 Business, Finance
## 14159 15-1132 151132 Computer, Math
## 14160 17-2071 172071 Architecture, Engineer
## 14161 15-1133 151133 Computer, Math
## 14162 15-1199 151199 Computer, Math
## 14163 15-1121 151121 Computer, Math
## 14164 15-1199 151199 Computer, Math
## 14165 15-1131 151131 Computer, Math
## 14166 15-2041 152041 Computer, Math
## 14167 15-1142 151142 Computer, Math
## 14168 15-1121 151121 Computer, Math
## 14169 15-1199 151199 Computer, Math
## 14170 13-1199 131199 Business, Finance
## 14171 19-1012 191012 Life, Physcial, Social Science
## 14172 15-1132 151132 Computer, Math
## 14173 15-1199 151199 Computer, Math
## 14174 15-1121 151121 Computer, Math
## 14175 15-1132 151132 Computer, Math
## 14176 15-1199 151199 Computer, Math
## 14177 13-1071 131071 Business, Finance
## 14178 15-1131 151131 Computer, Math
## 14179 15-1132 151132 Computer, Math
## 14180 15-1132 151132 Computer, Math
## 14181 15-1132 151132 Computer, Math
## 14182 11-3031 113031 Management
## 14183 15-1121 151121 Computer, Math
## 14184 15-1132 151132 Computer, Math
## 14185 15-1132 151132 Computer, Math
## 14186 15-1199 151199 Computer, Math
## 14187 15-1132 151132 Computer, Math
## 14188 15-1199 151199 Computer, Math
## 14189 17-2051 172051 Architecture, Engineer
## 14190 15-1132 151132 Computer, Math
## 14191 15-1133 151133 Computer, Math
## 14192 15-1132 151132 Computer, Math
## 14193 15-1133 151133 Computer, Math
## 14194 15-1131 151131 Computer, Math
## 14195 15-1132 151132 Computer, Math
## 14196 17-2071 172071 Architecture, Engineer
## 14197 29-1062 291062 Healthcare Practitioner
## 14198 15-1132 151132 Computer, Math
## 14199 23-1011 231011 Legal
## 14200 11-3051 113051 Management
## 14201 15-1141 151141 Computer, Math
## 14202 15-1131 151131 Computer, Math
## 14203 15-1132 151132 Computer, Math
## 14204 15-1132 151132 Computer, Math
## 14205 13-2011 132011 Business, Finance
## 14206 15-1199 151199 Computer, Math
## 14207 15-1133 151133 Computer, Math
## 14208 15-1131 151131 Computer, Math
## 14209 15-1199 151199 Computer, Math
## 14210 11-3051 113051 Management
## 14211 29-1069 291069 Healthcare Practitioner
## 14212 15-1132 151132 Computer, Math
## 14213 25-1032 251032 Education, Training
## 14214 15-1199 151199 Computer, Math
## 14215 13-1071 131071 Business, Finance
## 14216 15-1132 151132 Computer, Math
## 14217 19-1021 191021 Life, Physcial, Social Science
## 14218 15-1132 151132 Computer, Math
## 14219 19-1099 191099 Life, Physcial, Social Science
## 14220 17-2141 172141 Architecture, Engineer
## 14221 15-1199 151199 Computer, Math
## 14222 13-2011 132011 Business, Finance
## 14223 15-1199 151199 Computer, Math
## 14224 17-2051 172051 Architecture, Engineer
## 14225 15-1121 151121 Computer, Math
## 14226 15-1131 151131 Computer, Math
## 14227 15-1132 151132 Computer, Math
## 14228 29-1069 291069 Healthcare Practitioner
## 14229 15-1132 151132 Computer, Math
## 14230 19-1013 191013 Life, Physcial, Social Science
## 14231 15-1199 151199 Computer, Math
## 14232 13-2051 132051 Business, Finance
## 14233 15-1132 151132 Computer, Math
## 14234 15-1132 151132 Computer, Math
## 14235 15-1199 151199 Computer, Math
## 14236 15-1132 151132 Computer, Math
## 14237 29-1123 291123 Healthcare Practitioner
## 14238 15-1199 151199 Computer, Math
## 14239 15-1131 151131 Computer, Math
## 14240 13-2099 132099 Business, Finance
## 14241 13-1071 131071 Business, Finance
## 14242 15-1132 151132 Computer, Math
## 14243 27-1014 271014 Media, Design
## 14244 15-1121 151121 Computer, Math
## 14245 15-1132 151132 Computer, Math
## 14246 15-1132 151132 Computer, Math
## 14247 13-2011 132011 Business, Finance
## 14248 17-2072 172072 Architecture, Engineer
## 14249 15-1199 151199 Computer, Math
## 14250 15-1132 151132 Computer, Math
## 14251 13-1111 131111 Business, Finance
## 14252 19-1029 191029 Life, Physcial, Social Science
## 14253 15-1152 151152 Computer, Math
## 14254 15-1121 151121 Computer, Math
## 14255 17-2072 172072 Architecture, Engineer
## 14256 13-1081 131081 Business, Finance
## 14257 15-1121 151121 Computer, Math
## 14258 15-1121 151121 Computer, Math
## 14259 15-1121 151121 Computer, Math
## 14260 15-1132 151132 Computer, Math
## 14261 15-1199 151199 Computer, Math
## 14262 15-1132 151132 Computer, Math
## 14263 17-2081 172081 Architecture, Engineer
## 14264 19-1042 191042 Life, Physcial, Social Science
## 14265 15-1131 151131 Computer, Math
## 14266 15-1132 151132 Computer, Math
## 14267 15-1199 151199 Computer, Math
## 14268 15-1133 151133 Computer, Math
## 14269 15-1152 151152 Computer, Math
## 14270 17-2071 172071 Architecture, Engineer
## 14271 25-1125 251125 Education, Training
## 14272 15-1121 151121 Computer, Math
## 14273 15-1132 151132 Computer, Math
## 14274 15-1132 151132 Computer, Math
## 14275 19-2031 192031 Life, Physcial, Social Science
## 14276 15-1121 151121 Computer, Math
## 14277 15-1131 151131 Computer, Math
## 14278 15-1132 151132 Computer, Math
## 14279 15-1121 151121 Computer, Math
## 14280 31-9099 319099 Others
## 14281 13-1071 131071 Business, Finance
## 14282 15-1121 151121 Computer, Math
## 14283 29-1069 291069 Healthcare Practitioner
## 14284 15-1133 151133 Computer, Math
## 14285 15-1132 151132 Computer, Math
## 14286 15-1132 151132 Computer, Math
## 14287 15-1132 151132 Computer, Math
## 14288 15-1132 151132 Computer, Math
## 14289 17-2112 172112 Architecture, Engineer
## 14290 15-1133 151133 Computer, Math
## 14291 11-9121 119121 Management
## 14292 15-1131 151131 Computer, Math
## 14293 15-1132 151132 Computer, Math
## 14294 15-1121 151121 Computer, Math
## 14295 15-1132 151132 Computer, Math
## 14296 13-2051 132051 Business, Finance
## 14297 15-1199 151199 Computer, Math
## 14298 15-1121 151121 Computer, Math
## 14299 15-1199 151199 Computer, Math
## 14300 15-1199 151199 Computer, Math
## 14301 17-2072 172072 Architecture, Engineer
## 14302 15-1121 151121 Computer, Math
## 14303 15-1131 151131 Computer, Math
## 14304 15-1132 151132 Computer, Math
## 14305 15-1132 151132 Computer, Math
## 14306 15-1132 151132 Computer, Math
## 14307 15-1132 151132 Computer, Math
## 14308 15-1199 151199 Computer, Math
## 14309 15-1122 151122 Computer, Math
## 14310 15-1121 151121 Computer, Math
## 14311 29-1021 291021 Healthcare Practitioner
## 14312 15-1132 151132 Computer, Math
## 14313 15-1131 151131 Computer, Math
## 14314 15-1132 151132 Computer, Math
## 14315 11-1021 111021 Management
## 14316 15-1132 151132 Computer, Math
## 14317 13-2041 132041 Business, Finance
## 14318 17-2071 172071 Architecture, Engineer
## 14319 15-2021 152021 Computer, Math
## 14320 15-1121 151121 Computer, Math
## 14321 15-1131 151131 Computer, Math
## 14322 15-1122 151122 Computer, Math
## 14323 15-2031 152031 Computer, Math
## 14324 15-1132 151132 Computer, Math
## 14325 27-2022 272022 Media, Design
## 14326 29-1199 291199 Healthcare Practitioner
## 14327 29-1123 291123 Healthcare Practitioner
## 14328 15-1121 151121 Computer, Math
## 14329 15-1132 151132 Computer, Math
## 14330 29-1071 291071 Healthcare Practitioner
## 14331 15-1199 151199 Computer, Math
## 14332 25-9031 259031 Education, Training
## 14333 17-2072 172072 Architecture, Engineer
## 14334 11-1021 111021 Management
## 14335 15-1121 151121 Computer, Math
## 14336 15-1132 151132 Computer, Math
## 14337 13-2099 132099 Business, Finance
## 14338 15-1132 151132 Computer, Math
## 14339 13-2051 132051 Business, Finance
## 14340 15-1121 151121 Computer, Math
## 14341 15-1132 151132 Computer, Math
## 14342 15-1132 151132 Computer, Math
## 14343 15-1133 151133 Computer, Math
## 14344 15-1133 151133 Computer, Math
## 14345 15-1133 151133 Computer, Math
## 14346 13-1111 131111 Business, Finance
## 14347 15-1132 151132 Computer, Math
## 14348 15-1199 151199 Computer, Math
## 14349 25-2021 252021 Education, Training
## 14350 15-1199 151199 Computer, Math
## 14351 15-1132 151132 Computer, Math
## 14352 15-1132 151132 Computer, Math
## 14353 19-1029 191029 Life, Physcial, Social Science
## 14354 25-1022 251022 Education, Training
## 14355 15-1132 151132 Computer, Math
## 14356 15-1132 151132 Computer, Math
## 14357 17-2071 172071 Architecture, Engineer
## 14358 15-1133 151133 Computer, Math
## 14359 15-1133 151133 Computer, Math
## 14360 15-1132 151132 Computer, Math
## 14361 19-1042 191042 Life, Physcial, Social Science
## 14362 17-2081 172081 Architecture, Engineer
## 14363 11-3031 113031 Management
## 14364 27-3031 273031 Media, Design
## 14365 15-1132 151132 Computer, Math
## 14366 43-9111 439111 Others
## 14367 11-3021 113021 Management
## 14368 15-1132 151132 Computer, Math
## 14369 17-2199 172199 Architecture, Engineer
## 14370 15-1132 151132 Computer, Math
## 14371 15-1132 151132 Computer, Math
## 14372 15-1132 151132 Computer, Math
## 14373 15-1143 151143 Computer, Math
## 14374 13-2011 132011 Business, Finance
## 14375 15-1132 151132 Computer, Math
## 14376 19-1029 191029 Life, Physcial, Social Science
## 14377 15-1199 151199 Computer, Math
## 14378 15-1134 151134 Computer, Math
## 14379 15-1199 151199 Computer, Math
## 14380 15-1121 151121 Computer, Math
## 14381 15-1121 151121 Computer, Math
## 14382 15-1199 151199 Computer, Math
## 14383 19-1029 191029 Life, Physcial, Social Science
## 14384 15-1132 151132 Computer, Math
## 14385 15-2031 152031 Computer, Math
## 14386 15-1132 151132 Computer, Math
## 14387 15-1132 151132 Computer, Math
## 14388 15-1132 151132 Computer, Math
## 14389 15-1132 151132 Computer, Math
## 14390 15-1199 151199 Computer, Math
## 14391 15-1132 151132 Computer, Math
## 14392 15-1132 151132 Computer, Math
## 14393 15-1132 151132 Computer, Math
## 14394 15-1132 151132 Computer, Math
## 14395 15-1133 151133 Computer, Math
## 14396 15-1132 151132 Computer, Math
## 14397 13-2011 132011 Business, Finance
## 14398 15-1199 151199 Computer, Math
## 14399 15-1132 151132 Computer, Math
## 14400 13-2099 132099 Business, Finance
## 14401 15-1132 151132 Computer, Math
## 14402 25-1011 251011 Education, Training
## 14403 19-3051 193051 Life, Physcial, Social Science
## 14404 13-1161 131161 Business, Finance
## 14405 13-2011 132011 Business, Finance
## 14406 17-2112 172112 Architecture, Engineer
## 14407 15-2031 152031 Computer, Math
## 14408 15-1132 151132 Computer, Math
## 14409 15-1121 151121 Computer, Math
## 14410 15-1132 151132 Computer, Math
## 14411 15-1132 151132 Computer, Math
## 14412 15-1199 151199 Computer, Math
## 14413 15-1199 151199 Computer, Math
## 14414 15-1134 151134 Computer, Math
## 14415 15-1132 151132 Computer, Math
## 14416 15-1199 151199 Computer, Math
## 14417 15-1132 151132 Computer, Math
## 14418 19-1042 191042 Life, Physcial, Social Science
## 14419 11-1011 111011 Management
## 14420 11-9041 119041 Management
## 14421 11-3031 113031 Management
## 14422 15-2041 152041 Computer, Math
## 14423 15-1132 151132 Computer, Math
## 14424 15-1133 151133 Computer, Math
## 14425 15-1133 151133 Computer, Math
## 14426 19-4021 194021 Life, Physcial, Social Science
## 14427 15-1132 151132 Computer, Math
## 14428 15-1199 151199 Computer, Math
## 14429 15-1132 151132 Computer, Math
## 14430 15-2031 152031 Computer, Math
## 14431 15-1199 151199 Computer, Math
## 14432 13-2051 132051 Business, Finance
## 14433 13-1111 131111 Business, Finance
## 14434 13-1161 131161 Business, Finance
## 14435 15-1132 151132 Computer, Math
## 14436 17-2131 172131 Architecture, Engineer
## 14437 15-1132 151132 Computer, Math
## 14438 15-1132 151132 Computer, Math
## 14439 15-1121 151121 Computer, Math
## 14440 15-1131 151131 Computer, Math
## 14441 15-1132 151132 Computer, Math
## 14442 19-4061 194061 Life, Physcial, Social Science
## 14443 15-1132 151132 Computer, Math
## 14444 17-2071 172071 Architecture, Engineer
## 14445 15-1132 151132 Computer, Math
## 14446 15-1199 151199 Computer, Math
## 14447 15-1132 151132 Computer, Math
## 14448 15-1132 151132 Computer, Math
## 14449 17-2071.00 172071 Architecture, Engineer
## 14450 15-1199 151199 Computer, Math
## 14451 15-1132 151132 Computer, Math
## 14452 15-1131 151131 Computer, Math
## 14453 19-1029 191029 Life, Physcial, Social Science
## 14454 15-1121 151121 Computer, Math
## 14455 15-1199 151199 Computer, Math
## 14456 15-1132 151132 Computer, Math
## 14457 15-1132 151132 Computer, Math
## 14458 15-1132 151132 Computer, Math
## 14459 15-1199 151199 Computer, Math
## 14460 15-1132 151132 Computer, Math
## 14461 25-1022 251022 Education, Training
## 14462 17-2072 172072 Architecture, Engineer
## 14463 13-2051 132051 Business, Finance
## 14464 15-2031 152031 Computer, Math
## 14465 15-1132 151132 Computer, Math
## 14466 19-4061 194061 Life, Physcial, Social Science
## 14467 11-1021 111021 Management
## 14468 13-1081 131081 Business, Finance
## 14469 15-1132 151132 Computer, Math
## 14470 15-1131 151131 Computer, Math
## 14471 15-1199 151199 Computer, Math
## 14472 25-1063 251063 Education, Training
## 14473 13-2051 132051 Business, Finance
## 14474 15-1131 151131 Computer, Math
## 14475 13-1041 131041 Business, Finance
## 14476 29-2011 292011 Healthcare Practitioner
## 14477 15-1132 151132 Computer, Math
## 14478 15-1199 151199 Computer, Math
## 14479 15-1132 151132 Computer, Math
## 14480 17-2141 172141 Architecture, Engineer
## 14481 15-1132 151132 Computer, Math
## 14482 15-1132 151132 Computer, Math
## 14483 17-1012 171012 Architecture, Engineer
## 14484 15-1132 151132 Computer, Math
## 14485 15-1132 151132 Computer, Math
## 14486 15-1132 151132 Computer, Math
## 14487 15-1199 151199 Computer, Math
## 14488 15-1142 151142 Computer, Math
## 14489 15-1121 151121 Computer, Math
## 14490 17-2141 172141 Architecture, Engineer
## 14491 15-1132 151132 Computer, Math
## 14492 15-1121 151121 Computer, Math
## 14493 15-1132 151132 Computer, Math
## 14494 15-1199 151199 Computer, Math
## 14495 15-1199 151199 Computer, Math
## 14496 19-1042 191042 Life, Physcial, Social Science
## 14497 13-1111 131111 Business, Finance
## 14498 15-1133 151133 Computer, Math
## 14499 15-1132 151132 Computer, Math
## 14500 15-1199 151199 Computer, Math
## 14501 15-2031 152031 Computer, Math
## 14502 15-1134 151134 Computer, Math
## 14503 27-3099 273099 Media, Design
## 14504 15-1199 151199 Computer, Math
## 14505 15-1133 151133 Computer, Math
## 14506 29-2011 292011 Healthcare Practitioner
## 14507 19-1029 191029 Life, Physcial, Social Science
## 14508 17-2071 172071 Architecture, Engineer
## 14509 15-2041 152041 Computer, Math
## 14510 29-2011 292011 Healthcare Practitioner
## 14511 15-1133 151133 Computer, Math
## 14512 15-1121 151121 Computer, Math
## 14513 15-1132 151132 Computer, Math
## 14514 15-1132 151132 Computer, Math
## 14515 15-1132 151132 Computer, Math
## 14516 15-1132 151132 Computer, Math
## 14517 15-1199 151199 Computer, Math
## 14518 15-1143 151143 Computer, Math
## 14519 15-1132 151132 Computer, Math
## 14520 15-1199 151199 Computer, Math
## 14521 15-1142 151142 Computer, Math
## 14522 15-1132 151132 Computer, Math
## 14523 15-1121 151121 Computer, Math
## 14524 15-1141 151141 Computer, Math
## 14525 25-1071 251071 Education, Training
## 14526 17-2112 172112 Architecture, Engineer
## 14527 11-3021 113021 Management
## 14528 15-1121 151121 Computer, Math
## 14529 17-2072 172072 Architecture, Engineer
## 14530 15-1132 151132 Computer, Math
## 14531 15-1199 151199 Computer, Math
## 14532 15-2031 152031 Computer, Math
## 14533 15-1132 151132 Computer, Math
## 14534 15-1122 151122 Computer, Math
## 14535 15-1121 151121 Computer, Math
## 14536 13-1161 131161 Business, Finance
## 14537 13-2099 132099 Business, Finance
## 14538 15-1132 151132 Computer, Math
## 14539 15-1132 151132 Computer, Math
## 14540 15-1121 151121 Computer, Math
## 14541 15-1199 151199 Computer, Math
## 14542 13-1111 131111 Business, Finance
## 14543 15-1132 151132 Computer, Math
## 14544 15-1121 151121 Computer, Math
## 14545 15-1122 151122 Computer, Math
## 14546 15-1132 151132 Computer, Math
## 14547 13-1111 131111 Business, Finance
## 14548 15-1199 151199 Computer, Math
## 14549 13-2011 132011 Business, Finance
## 14550 15-1131 151131 Computer, Math
## 14551 15-1111 151111 Computer, Math
## 14552 15-1121 151121 Computer, Math
## 14553 15-1199 151199 Computer, Math
## 14554 15-1121 151121 Computer, Math
## 14555 15-1132 151132 Computer, Math
## 14556 15-1132 151132 Computer, Math
## 14557 15-1132 151132 Computer, Math
## 14558 15-1199 151199 Computer, Math
## 14559 13-2099 132099 Business, Finance
## 14560 15-1121 151121 Computer, Math
## 14561 15-1132 151132 Computer, Math
## 14562 15-1132 151132 Computer, Math
## 14563 15-1132 151132 Computer, Math
## 14564 15-1199 151199 Computer, Math
## 14565 15-1132 151132 Computer, Math
## 14566 11-3071 113071 Management
## 14567 27-3022 273022 Media, Design
## 14568 15-1142 151142 Computer, Math
## 14569 15-1121 151121 Computer, Math
## 14570 15-1121 151121 Computer, Math
## 14571 15-1143 151143 Computer, Math
## 14572 15-1199 151199 Computer, Math
## 14573 25-1071 251071 Education, Training
## 14574 11-3021 113021 Management
## 14575 29-1069 291069 Healthcare Practitioner
## 14576 15-1121 151121 Computer, Math
## 14577 15-1199 151199 Computer, Math
## 14578 17-2081 172081 Architecture, Engineer
## 14579 15-1132 151132 Computer, Math
## 14580 15-1036 151036 Computer, Math
## 14581 15-1132 151132 Computer, Math
## 14582 15-1132 151132 Computer, Math
## 14583 15-1131 151131 Computer, Math
## 14584 13-2011 132011 Business, Finance
## 14585 15-1131 151131 Computer, Math
## 14586 17-2081 172081 Architecture, Engineer
## 14587 15-1121 151121 Computer, Math
## 14588 15-1132 151132 Computer, Math
## 14589 15-1132 151132 Computer, Math
## 14590 25-9031 259031 Education, Training
## 14591 15-1142 151142 Computer, Math
## 14592 15-1121 151121 Computer, Math
## 14593 15-1132 151132 Computer, Math
## 14594 15-1133 151133 Computer, Math
## 14595 15-1132 151132 Computer, Math
## 14596 15-1132 151132 Computer, Math
## 14597 11-3031 113031 Management
## 14598 15-1199 151199 Computer, Math
## 14599 15-1111 151111 Computer, Math
## 14600 13-1041 131041 Business, Finance
## 14601 15-1132 151132 Computer, Math
## 14602 15-1121 151121 Computer, Math
## 14603 15-1199 151199 Computer, Math
## 14604 15-1143 151143 Computer, Math
## 14605 17-2072 172072 Architecture, Engineer
## 14606 15-1132 151132 Computer, Math
## 14607 15-1199 151199 Computer, Math
## 14608 15-1132 151132 Computer, Math
## 14609 17-2112 172112 Architecture, Engineer
## 14610 25-1032 251032 Education, Training
## 14611 15-1132 151132 Computer, Math
## 14612 15-1121 151121 Computer, Math
## 14613 15-1132 151132 Computer, Math
## 14614 15-1132 151132 Computer, Math
## 14615 15-1132 151132 Computer, Math
## 14616 15-1132 151132 Computer, Math
## 14617 17-2071 172071 Architecture, Engineer
## 14618 15-1121 151121 Computer, Math
## 14619 13-1161 131161 Business, Finance
## 14620 15-1132 151132 Computer, Math
## 14621 15-1133 151133 Computer, Math
## 14622 19-2031 192031 Life, Physcial, Social Science
## 14623 17-2071 172071 Architecture, Engineer
## 14624 15-1141 151141 Computer, Math
## 14625 15-1199 151199 Computer, Math
## 14626 17-2071 172071 Architecture, Engineer
## 14627 15-1036 151036 Computer, Math
## 14628 17-2071 172071 Architecture, Engineer
## 14629 15-2041 152041 Computer, Math
## 14630 15-1199 151199 Computer, Math
## 14631 15-1121 151121 Computer, Math
## 14632 13-2099 132099 Business, Finance
## 14633 15-1132 151132 Computer, Math
## 14634 15-2031 152031 Computer, Math
## 14635 17-2112 172112 Architecture, Engineer
## 14636 13-1111 131111 Business, Finance
## 14637 15-1133 151133 Computer, Math
## 14638 15-1121 151121 Computer, Math
## 14639 15-1199 151199 Computer, Math
## 14640 13-2011 132011 Business, Finance
## 14641 15-1133 151133 Computer, Math
## 14642 25-2021 252021 Education, Training
## 14643 15-1132 151132 Computer, Math
## 14644 15-1199 151199 Computer, Math
## 14645 15-1132 151132 Computer, Math
## 14646 19-4061 194061 Life, Physcial, Social Science
## 14647 13-2011 132011 Business, Finance
## 14648 15-1132 151132 Computer, Math
## 14649 13-1051 131051 Business, Finance
## 14650 17-2061 172061 Architecture, Engineer
## 14651 13-1111 131111 Business, Finance
## 14652 15-1131 151131 Computer, Math
## 14653 17-2071 172071 Architecture, Engineer
## 14654 15-1199 151199 Computer, Math
## 14655 13-2011 132011 Business, Finance
## 14656 13-2011 132011 Business, Finance
## 14657 15-1131 151131 Computer, Math
## 14658 15-1133 151133 Computer, Math
## 14659 15-1121 151121 Computer, Math
## 14660 41-9031 419031 Sales
## 14661 15-1133 151133 Computer, Math
## 14662 15-1132 151132 Computer, Math
## 14663 15-1132 151132 Computer, Math
## 14664 15-1121 151121 Computer, Math
## 14665 15-1134 151134 Computer, Math
## 14666 15-1133 151133 Computer, Math
## 14667 19-1021 191021 Life, Physcial, Social Science
## 14668 15-1121 151121 Computer, Math
## 14669 15-1199 151199 Computer, Math
## 14670 15-1132 151132 Computer, Math
## 14671 15-1121 151121 Computer, Math
## 14672 15-1199 151199 Computer, Math
## 14673 15-1132 151132 Computer, Math
## 14674 15-1121 151121 Computer, Math
## 14675 41-9031 419031 Sales
## 14676 11-3111 113111 Management
## 14677 15-1133 151133 Computer, Math
## 14678 15-1133 151133 Computer, Math
## 14679 15-1132 151132 Computer, Math
## 14680 15-1133 151133 Computer, Math
## 14681 15-1199 151199 Computer, Math
## 14682 15-1132 151132 Computer, Math
## 14683 11-3071 113071 Management
## 14684 15-1132 151132 Computer, Math
## 14685 15-1199 151199 Computer, Math
## 14686 15-1132 151132 Computer, Math
## 14687 15-1132 151132 Computer, Math
## 14688 11-3071 113071 Management
## 14689 15-1199 151199 Computer, Math
## 14690 15-1199 151199 Computer, Math
## 14691 15-2031 152031 Computer, Math
## 14692 15-1132 151132 Computer, Math
## 14693 15-1132 151132 Computer, Math
## 14694 25-1021 251021 Education, Training
## 14695 15-1199 151199 Computer, Math
## 14696 11-9041 119041 Management
## 14697 15-1131 151131 Computer, Math
## 14698 15-1133 151133 Computer, Math
## 14699 15-2041 152041 Computer, Math
## 14700 15-1132 151132 Computer, Math
## 14701 15-1199 151199 Computer, Math
## 14702 15-1132 151132 Computer, Math
## 14703 15-1132 151132 Computer, Math
## 14704 15-1131 151131 Computer, Math
## 14705 29-1062 291062 Healthcare Practitioner
## 14706 15-1199 151199 Computer, Math
## 14707 13-1071 131071 Business, Finance
## 14708 15-1132 151132 Computer, Math
## 14709 15-1132 151132 Computer, Math
## 14710 19-1029 191029 Life, Physcial, Social Science
## 14711 15-1132 151132 Computer, Math
## 14712 27-1021 271021 Media, Design
## 14713 15-1199 151199 Computer, Math
## 14714 15-1132 151132 Computer, Math
## 14715 29-1062.00 291062 Healthcare Practitioner
## 14716 15-1132 151132 Computer, Math
## 14717 15-1132 151132 Computer, Math
## 14718 15-1132 151132 Computer, Math
## 14719 17-2161 172161 Architecture, Engineer
## 14720 15-1132 151132 Computer, Math
## 14721 15-1121 151121 Computer, Math
## 14722 15-1121 151121 Computer, Math
## 14723 15-1132 151132 Computer, Math
## 14724 15-1132 151132 Computer, Math
## 14725 15-1121 151121 Computer, Math
## 14726 15-1132 151132 Computer, Math
## 14727 15-1132 151132 Computer, Math
## 14728 13-2051 132051 Business, Finance
## 14729 15-1199 151199 Computer, Math
## 14730 13-1161 131161 Business, Finance
## 14731 15-1132 151132 Computer, Math
## 14732 13-2011 132011 Business, Finance
## 14733 15-1131 151131 Computer, Math
## 14734 15-1132 151132 Computer, Math
## 14735 15-1131 151131 Computer, Math
## 14736 17-2072 172072 Architecture, Engineer
## 14737 15-1131 151131 Computer, Math
## 14738 17-2112 172112 Architecture, Engineer
## 14739 15-1121 151121 Computer, Math
## 14740 15-1131 151131 Computer, Math
## 14741 15-1132 151132 Computer, Math
## 14742 15-1132 151132 Computer, Math
## 14743 41-9031 419031 Sales
## 14744 15-1199 151199 Computer, Math
## 14745 15-1199 151199 Computer, Math
## 14746 15-1132 151132 Computer, Math
## 14747 15-1199 151199 Computer, Math
## 14748 15-1132 151132 Computer, Math
## 14749 15-1122 151122 Computer, Math
## 14750 15-1121 151121 Computer, Math
## 14751 15-1141 151141 Computer, Math
## 14752 13-1111 131111 Business, Finance
## 14753 15-1122 151122 Computer, Math
## 14754 15-1131 151131 Computer, Math
## 14755 29-1051 291051 Healthcare Practitioner
## 14756 11-9199 119199 Management
## 14757 11-9121 119121 Management
## 14758 15-1132 151132 Computer, Math
## 14759 15-1132 151132 Computer, Math
## 14760 15-1199 151199 Computer, Math
## 14761 17-2061 172061 Architecture, Engineer
## 14762 13-1111 131111 Business, Finance
## 14763 17-2199 172199 Architecture, Engineer
## 14764 15-1199 151199 Computer, Math
## 14765 15-1121 151121 Computer, Math
## 14766 15-1121 151121 Computer, Math
## 14767 15-1121 151121 Computer, Math
## 14768 15-1199 151199 Computer, Math
## 14769 15-1121 151121 Computer, Math
## 14770 15-1132 151132 Computer, Math
## 14771 15-1131 151131 Computer, Math
## 14772 15-1132 151132 Computer, Math
## 14773 15-1132 151132 Computer, Math
## 14774 15-1132 151132 Computer, Math
## 14775 15-1132 151132 Computer, Math
## 14776 13-1111 131111 Business, Finance
## 14777 15-1132 151132 Computer, Math
## 14778 17-2141 172141 Architecture, Engineer
## 14779 19-4041 194041 Life, Physcial, Social Science
## 14780 15-1122 151122 Computer, Math
## 14781 15-1132 151132 Computer, Math
## 14782 15-1143 151143 Computer, Math
## 14783 15-1143 151143 Computer, Math
## 14784 15-1133 151133 Computer, Math
## 14785 15-1199 151199 Computer, Math
## 14786 15-1199 151199 Computer, Math
## 14787 13-2051 132051 Business, Finance
## 14788 15-1121 151121 Computer, Math
## 14789 15-1132 151132 Computer, Math
## 14790 15-1132 151132 Computer, Math
## 14791 17-2031 172031 Architecture, Engineer
## 14792 17-2141 172141 Architecture, Engineer
## 14793 13-1161 131161 Business, Finance
## 14794 15-1121 151121 Computer, Math
## 14795 15-1199 151199 Computer, Math
## 14796 15-1141 151141 Computer, Math
## 14797 15-1132 151132 Computer, Math
## 14798 15-1132 151132 Computer, Math
## 14799 15-1132 151132 Computer, Math
## 14800 15-1199 151199 Computer, Math
## 14801 13-1161 131161 Business, Finance
## 14802 15-1132 151132 Computer, Math
## 14803 15-1132 151132 Computer, Math
## 14804 15-1132 151132 Computer, Math
## 14805 15-1132 151132 Computer, Math
## 14806 17-2141 172141 Architecture, Engineer
## 14807 15-1132 151132 Computer, Math
## 14808 15-1132 151132 Computer, Math
## 14809 15-1141 151141 Computer, Math
## 14810 15-1141 151141 Computer, Math
## 14811 15-1199 151199 Computer, Math
## 14812 15-1132 151132 Computer, Math
## 14813 15-1132 151132 Computer, Math
## 14814 15-1132 151132 Computer, Math
## 14815 15-1132 151132 Computer, Math
## 14816 15-1199 151199 Computer, Math
## 14817 15-1131 151131 Computer, Math
## 14818 15-1199 151199 Computer, Math
## 14819 15-1132 151132 Computer, Math
## 14820 23-2011 232011 Legal
## 14821 15-1132 151132 Computer, Math
## 14822 15-1121 151121 Computer, Math
## 14823 13-1111 131111 Business, Finance
## 14824 15-1132 151132 Computer, Math
## 14825 15-1199 151199 Computer, Math
## 14826 15-1132 151132 Computer, Math
## 14827 13-1081 131081 Business, Finance
## 14828 15-1121 151121 Computer, Math
## 14829 15-1199 151199 Computer, Math
## 14830 15-1122 151122 Computer, Math
## 14831 15-1121 151121 Computer, Math
## 14832 15-1199 151199 Computer, Math
## 14833 15-1141 151141 Computer, Math
## 14834 11-3031 113031 Management
## 14835 15-1199 151199 Computer, Math
## 14836 15-1132 151132 Computer, Math
## 14837 15-1034 151034 Computer, Math
## 14838 17-3029 173029 Architecture, Engineer
## 14839 17-2072 172072 Architecture, Engineer
## 14840 15-1121 151121 Computer, Math
## 14841 15-1132 151132 Computer, Math
## 14842 15-1121 151121 Computer, Math
## 14843 15-1132 151132 Computer, Math
## 14844 15-1132 151132 Computer, Math
## 14845 15-1121 151121 Computer, Math
## 14846 29-1127 291127 Healthcare Practitioner
## 14847 15-1132 151132 Computer, Math
## 14848 15-1132 151132 Computer, Math
## 14849 15-1132 151132 Computer, Math
## 14850 15-1132 151132 Computer, Math
## 14851 15-1141 151141 Computer, Math
## 14852 15-1121 151121 Computer, Math
## 14853 15-1132 151132 Computer, Math
## 14854 17-2031 172031 Architecture, Engineer
## 14855 19-1021 191021 Life, Physcial, Social Science
## 14856 17-2051 172051 Architecture, Engineer
## 14857 15-1132 151132 Computer, Math
## 14858 15-1132 151132 Computer, Math
## 14859 15-1132 151132 Computer, Math
## 14860 15-1132 151132 Computer, Math
## 14861 15-1132 151132 Computer, Math
## 14862 15-1131 151131 Computer, Math
## 14863 15-1131 151131 Computer, Math
## 14864 19-3011 193011 Life, Physcial, Social Science
## 14865 11-9041 119041 Management
## 14866 13-1199 131199 Business, Finance
## 14867 17-2112 172112 Architecture, Engineer
## 14868 15-1199 151199 Computer, Math
## 14869 15-1132 151132 Computer, Math
## 14870 17-3029 173029 Architecture, Engineer
## 14871 17-2071 172071 Architecture, Engineer
## 14872 15-1141 151141 Computer, Math
## 14873 13-2099 132099 Business, Finance
## 14874 15-1132 151132 Computer, Math
## 14875 29-1069 291069 Healthcare Practitioner
## 14876 25-1062 251062 Education, Training
## 14877 15-1199 151199 Computer, Math
## 14878 15-1141 151141 Computer, Math
## 14879 15-1132 151132 Computer, Math
## 14880 15-1132 151132 Computer, Math
## 14881 15-1132 151132 Computer, Math
## 14882 17-2141 172141 Architecture, Engineer
## 14883 15-1133 151133 Computer, Math
## 14884 15-1199 151199 Computer, Math
## 14885 15-1132 151132 Computer, Math
## 14886 15-1132 151132 Computer, Math
## 14887 15-1132 151132 Computer, Math
## 14888 15-1199 151199 Computer, Math
## 14889 15-1199 151199 Computer, Math
## 14890 15-1121 151121 Computer, Math
## 14891 13-2051 132051 Business, Finance
## 14892 15-1199 151199 Computer, Math
## 14893 15-2031 152031 Computer, Math
## 14894 19-2031 192031 Life, Physcial, Social Science
## 14895 15-1132 151132 Computer, Math
## 14896 15-1132 151132 Computer, Math
## 14897 15-1121 151121 Computer, Math
## 14898 15-1143 151143 Computer, Math
## 14899 15-1132 151132 Computer, Math
## 14900 15-1132 151132 Computer, Math
## 14901 25-1071 251071 Education, Training
## 14902 15-1132 151132 Computer, Math
## 14903 15-1199 151199 Computer, Math
## 14904 15-1132 151132 Computer, Math
## 14905 15-1131 151131 Computer, Math
## 14906 15-1131 151131 Computer, Math
## 14907 15-1133 151133 Computer, Math
## 14908 15-1132 151132 Computer, Math
## 14909 17-2051 172051 Architecture, Engineer
## 14910 15-1132 151132 Computer, Math
## 14911 15-1132 151132 Computer, Math
## 14912 15-2031 152031 Computer, Math
## 14913 15-1133 151133 Computer, Math
## 14914 19-4021 194021 Life, Physcial, Social Science
## 14915 15-1132 151132 Computer, Math
## 14916 15-1141 151141 Computer, Math
## 14917 15-1132 151132 Computer, Math
## 14918 15-1121 151121 Computer, Math
## 14919 29-1123 291123 Healthcare Practitioner
## 14920 15-1132 151132 Computer, Math
## 14921 27-3022 273022 Media, Design
## 14922 15-1132 151132 Computer, Math
## 14923 13-2099 132099 Business, Finance
## 14924 15-1132 151132 Computer, Math
## 14925 15-1132 151132 Computer, Math
## 14926 15-1132 151132 Computer, Math
## 14927 13-2051 132051 Business, Finance
## 14928 15-1131 151131 Computer, Math
## 14929 15-1134 151134 Computer, Math
## 14930 15-1132 151132 Computer, Math
## 14931 15-1132 151132 Computer, Math
## 14932 15-1121 151121 Computer, Math
## 14933 15-1133 151133 Computer, Math
## 14934 15-1037 151037 Computer, Math
## 14935 15-1133 151133 Computer, Math
## 14936 15-1132 151132 Computer, Math
## 14937 15-1121 151121 Computer, Math
## 14938 29-1063 291063 Healthcare Practitioner
## 14939 17-2141 172141 Architecture, Engineer
## 14940 13-1161 131161 Business, Finance
## 14941 15-1134 151134 Computer, Math
## 14942 15-1141 151141 Computer, Math
## 14943 15-1121 151121 Computer, Math
## 14944 13-1111 131111 Business, Finance
## 14945 15-1131 151131 Computer, Math
## 14946 15-1132 151132 Computer, Math
## 14947 13-2011 132011 Business, Finance
## 14948 15-1133 151133 Computer, Math
## 14949 25-1051 251051 Education, Training
## 14950 15-1121 151121 Computer, Math
## 14951 15-1121 151121 Computer, Math
## 14952 15-1121 151121 Computer, Math
## 14953 15-1132 151132 Computer, Math
## 14954 15-1199 151199 Computer, Math
## 14955 13-2011 132011 Business, Finance
## 14956 15-1131 151131 Computer, Math
## 14957 15-1132 151132 Computer, Math
## 14958 15-1121 151121 Computer, Math
## 14959 15-1199 151199 Computer, Math
## 14960 15-1199 151199 Computer, Math
## 14961 19-2031 192031 Life, Physcial, Social Science
## 14962 15-1132 151132 Computer, Math
## 14963 15-1121 151121 Computer, Math
## 14964 19-2032 192032 Life, Physcial, Social Science
## 14965 15-1131 151131 Computer, Math
## 14966 15-2041 152041 Computer, Math
## 14967 15-1131 151131 Computer, Math
## 14968 15-1121 151121 Computer, Math
## 14969 15-1133 151133 Computer, Math
## 14970 15-2031 152031 Computer, Math
## 14971 15-1132 151132 Computer, Math
## 14972 15-1199 151199 Computer, Math
## 14973 15-2031 152031 Computer, Math
## 14974 15-1133 151133 Computer, Math
## 14975 11-9111 119111 Management
## 14976 15-1143 151143 Computer, Math
## 14977 19-2012 192012 Life, Physcial, Social Science
## 14978 13-1111 131111 Business, Finance
## 14979 15-1121 151121 Computer, Math
## 14980 15-1199 151199 Computer, Math
## 14981 15-1199 151199 Computer, Math
## 14982 15-1131 151131 Computer, Math
## 14983 29-1065 291065 Healthcare Practitioner
## 14984 15-1199 151199 Computer, Math
## 14985 15-1121 151121 Computer, Math
## 14986 11-9041 119041 Management
## 14987 15-1142 151142 Computer, Math
## 14988 15-1132 151132 Computer, Math
## 14989 15-1131 151131 Computer, Math
## 14990 15-1132 151132 Computer, Math
## 14991 15-1132 151132 Computer, Math
## 14992 15-1131 151131 Computer, Math
## 14993 15-1132 151132 Computer, Math
## 14994 17-2141 172141 Architecture, Engineer
## 14995 15-1199 151199 Computer, Math
## 14996 15-1132 151132 Computer, Math
## 14997 15-1121 151121 Computer, Math
## 14998 15-1122 151122 Computer, Math
## 14999 27-3031 273031 Media, Design
## 15000 15-1152 151152 Computer, Math
## 15001 19-1029 191029 Life, Physcial, Social Science
## 15002 15-2031 152031 Computer, Math
## 15003 15-1132 151132 Computer, Math
## 15004 15-1132 151132 Computer, Math
## 15005 15-1132 151132 Computer, Math
## 15006 15-1132 151132 Computer, Math
## 15007 15-1199 151199 Computer, Math
## 15008 17-2141 172141 Architecture, Engineer
## 15009 15-1199 151199 Computer, Math
## 15010 17-2112 172112 Architecture, Engineer
## 15011 15-1132 151132 Computer, Math
## 15012 15-1121 151121 Computer, Math
## 15013 15-1121 151121 Computer, Math
## 15014 15-1132 151132 Computer, Math
## 15015 15-1132 151132 Computer, Math
## 15016 17-2131 172131 Architecture, Engineer
## 15017 15-1199 151199 Computer, Math
## 15018 15-1199 151199 Computer, Math
## 15019 17-2199 172199 Architecture, Engineer
## 15020 15-1131 151131 Computer, Math
## 15021 15-1132 151132 Computer, Math
## 15022 15-1131 151131 Computer, Math
## 15023 15-1131 151131 Computer, Math
## 15024 15-1132 151132 Computer, Math
## 15025 17-2051 172051 Architecture, Engineer
## 15026 15-1142 151142 Computer, Math
## 15027 15-1199 151199 Computer, Math
## 15028 13-1161 131161 Business, Finance
## 15029 29-1123 291123 Healthcare Practitioner
## 15030 29-1123 291123 Healthcare Practitioner
## 15031 15-2041 152041 Computer, Math
## 15032 15-1133 151133 Computer, Math
## 15033 15-1132 151132 Computer, Math
## 15034 15-1121 151121 Computer, Math
## 15035 13-1111 131111 Business, Finance
## 15036 13-1161 131161 Business, Finance
## 15037 15-1132 151132 Computer, Math
## 15038 15-1121 151121 Computer, Math
## 15039 27-3042 273042 Media, Design
## 15040 15-1121 151121 Computer, Math
## 15041 19-1042 191042 Life, Physcial, Social Science
## 15042 15-1199 151199 Computer, Math
## 15043 15-1199 151199 Computer, Math
## 15044 15-1132 151132 Computer, Math
## 15045 15-1132 151132 Computer, Math
## 15046 15-1121 151121 Computer, Math
## 15047 15-1132 151132 Computer, Math
## 15048 25-1193 251193 Education, Training
## 15049 15-2041 152041 Computer, Math
## 15050 11-3021 113021 Management
## 15051 15-1132 151132 Computer, Math
## 15052 25-1066 251066 Education, Training
## 15053 11-3021 113021 Management
## 15054 15-1199 151199 Computer, Math
## 15055 27-1024 271024 Media, Design
## 15056 15-1143 151143 Computer, Math
## 15057 15-1142 151142 Computer, Math
## 15058 15-2011 152011 Computer, Math
## 15059 15-1199 151199 Computer, Math
## 15060 15-1132 151132 Computer, Math
## 15061 15-1132 151132 Computer, Math
## 15062 15-1131 151131 Computer, Math
## 15063 25-1022 251022 Education, Training
## 15064 15-1132 151132 Computer, Math
## 15065 19-2031 192031 Life, Physcial, Social Science
## 15066 15-1199 151199 Computer, Math
## 15067 15-2031 152031 Computer, Math
## 15068 15-1132 151132 Computer, Math
## 15069 15-1199 151199 Computer, Math
## 15070 15-1132 151132 Computer, Math
## 15071 13-2051 132051 Business, Finance
## 15072 15-1132 151132 Computer, Math
## 15073 15-1132 151132 Computer, Math
## 15074 13-1041 131041 Business, Finance
## 15075 29-1063 291063 Healthcare Practitioner
## 15076 15-1132 151132 Computer, Math
## 15077 15-1199 151199 Computer, Math
## 15078 15-1132 151132 Computer, Math
## 15079 15-1121 151121 Computer, Math
## 15080 15-1131 151131 Computer, Math
## 15081 15-1141 151141 Computer, Math
## 15082 13-1111 131111 Business, Finance
## 15083 15-1199 151199 Computer, Math
## 15084 15-1132 151132 Computer, Math
## 15085 13-2011 132011 Business, Finance
## 15086 11-3021 113021 Management
## 15087 15-1132 151132 Computer, Math
## 15088 15-1132 151132 Computer, Math
## 15089 15-1199 151199 Computer, Math
## 15090 15-1132 151132 Computer, Math
## 15091 19-1042 191042 Life, Physcial, Social Science
## 15092 15-1132 151132 Computer, Math
## 15093 15-1132 151132 Computer, Math
## 15094 15-1199 151199 Computer, Math
## 15095 15-1199 151199 Computer, Math
## 15096 15-1121 151121 Computer, Math
## 15097 15-1121 151121 Computer, Math
## 15098 15-1199 151199 Computer, Math
## 15099 15-2041 152041 Computer, Math
## 15100 15-1142 151142 Computer, Math
## 15101 15-1143 151143 Computer, Math
## 15102 15-1199 151199 Computer, Math
## 15103 19-2043 192043 Life, Physcial, Social Science
## 15104 15-1132 151132 Computer, Math
## 15105 15-1132 151132 Computer, Math
## 15106 25-1031 251031 Education, Training
## 15107 15-1131 151131 Computer, Math
## 15108 15-1141 151141 Computer, Math
## 15109 15-1132 151132 Computer, Math
## 15110 15-1132 151132 Computer, Math
## 15111 17-2141 172141 Architecture, Engineer
## 15112 15-1131 151131 Computer, Math
## 15113 19-1029 191029 Life, Physcial, Social Science
## 15114 15-1132 151132 Computer, Math
## 15115 23-1012 231012 Legal
## 15116 15-1132 151132 Computer, Math
## 15117 15-1121 151121 Computer, Math
## 15118 15-1141 151141 Computer, Math
## 15119 15-1199 151199 Computer, Math
## 15120 15-1121 151121 Computer, Math
## 15121 15-1199 151199 Computer, Math
## 15122 15-1199 151199 Computer, Math
## 15123 15-1132 151132 Computer, Math
## 15124 15-1142 151142 Computer, Math
## 15125 15-1199 151199 Computer, Math
## 15126 15-1134 151134 Computer, Math
## 15127 15-1132 151132 Computer, Math
## 15128 15-1199 151199 Computer, Math
## 15129 17-2131 172131 Architecture, Engineer
## 15130 15-1132 151132 Computer, Math
## 15131 15-1132 151132 Computer, Math
## 15132 15-1132 151132 Computer, Math
## 15133 15-1132 151132 Computer, Math
## 15134 15-1199 151199 Computer, Math
## 15135 15-1141 151141 Computer, Math
## 15136 17-2071 172071 Architecture, Engineer
## 15137 15-1199 151199 Computer, Math
## 15138 15-1132 151132 Computer, Math
## 15139 29-1123 291123 Healthcare Practitioner
## 15140 15-1132 151132 Computer, Math
## 15141 15-1132 151132 Computer, Math
## 15142 15-2031 152031 Computer, Math
## 15143 15-1141 151141 Computer, Math
## 15144 13-1199 131199 Business, Finance
## 15145 15-1199 151199 Computer, Math
## 15146 13-1081 131081 Business, Finance
## 15147 15-1132 151132 Computer, Math
## 15148 41-9031 419031 Sales
## 15149 41-9031 419031 Sales
## 15150 15-1133 151133 Computer, Math
## 15151 11-9041 119041 Management
## 15152 15-1141 151141 Computer, Math
## 15153 15-1132 151132 Computer, Math
## 15154 11-3121 113121 Management
## 15155 15-1141 151141 Computer, Math
## 15156 17-2072 172072 Architecture, Engineer
## 15157 11-2021 112021 Management
## 15158 15-1141 151141 Computer, Math
## 15159 15-1132 151132 Computer, Math
## 15160 27-3031 273031 Media, Design
## 15161 15-1199 151199 Computer, Math
## 15162 15-1132 151132 Computer, Math
## 15163 15-1132 151132 Computer, Math
## 15164 15-1132 151132 Computer, Math
## 15165 15-1142 151142 Computer, Math
## 15166 15-1199 151199 Computer, Math
## 15167 13-2099 132099 Business, Finance
## 15168 15-1121 151121 Computer, Math
## 15169 15-1132 151132 Computer, Math
## 15170 15-1132 151132 Computer, Math
## 15171 15-1131 151131 Computer, Math
## 15172 15-1132 151132 Computer, Math
## 15173 15-1133 151133 Computer, Math
## 15174 15-1121 151121 Computer, Math
## 15175 25-2054 252054 Education, Training
## 15176 13-2099 132099 Business, Finance
## 15177 17-2131 172131 Architecture, Engineer
## 15178 15-1133 151133 Computer, Math
## 15179 15-1132 151132 Computer, Math
## 15180 15-1132 151132 Computer, Math
## 15181 15-1132 151132 Computer, Math
## 15182 15-1132 151132 Computer, Math
## 15183 17-2112 172112 Architecture, Engineer
## 15184 11-3051 113051 Management
## 15185 15-1132 151132 Computer, Math
## 15186 29-1131 291131 Healthcare Practitioner
## 15187 15-1132 151132 Computer, Math
## 15188 13-1161 131161 Business, Finance
## 15189 29-1122 291122 Healthcare Practitioner
## 15190 15-1132 151132 Computer, Math
## 15191 15-2031 152031 Computer, Math
## 15192 15-1121 151121 Computer, Math
## 15193 13-1111 131111 Business, Finance
## 15194 15-1141 151141 Computer, Math
## 15195 29-2011 292011 Healthcare Practitioner
## 15196 11-3021 113021 Management
## 15197 15-1199 151199 Computer, Math
## 15198 15-1199 151199 Computer, Math
## 15199 17-2131 172131 Architecture, Engineer
## 15200 15-1121 151121 Computer, Math
## 15201 15-1121 151121 Computer, Math
## 15202 15-1199 151199 Computer, Math
## 15203 29-1062 291062 Healthcare Practitioner
## 15204 15-1132 151132 Computer, Math
## 15205 15-1132 151132 Computer, Math
## 15206 15-1121 151121 Computer, Math
## 15207 15-1132 151132 Computer, Math
## 15208 15-1132 151132 Computer, Math
## 15209 15-1132 151132 Computer, Math
## 15210 11-2021 112021 Management
## 15211 15-1131 151131 Computer, Math
## 15212 15-1132 151132 Computer, Math
## 15213 15-1132 151132 Computer, Math
## 15214 13-1111 131111 Business, Finance
## 15215 29-2011 292011 Healthcare Practitioner
## 15216 15-1132 151132 Computer, Math
## 15217 11-9021 119021 Management
## 15218 13-2011 132011 Business, Finance
## 15219 15-1121 151121 Computer, Math
## 15220 15-1132 151132 Computer, Math
## 15221 19-1042 191042 Life, Physcial, Social Science
## 15222 29-1069 291069 Healthcare Practitioner
## 15223 13-2051 132051 Business, Finance
## 15224 17-2141 172141 Architecture, Engineer
## 15225 15-1132 151132 Computer, Math
## 15226 15-1132 151132 Computer, Math
## 15227 13-1161 131161 Business, Finance
## 15228 15-1132 151132 Computer, Math
## 15229 11-3031 113031 Management
## 15230 15-1132 151132 Computer, Math
## 15231 15-1131 151131 Computer, Math
## 15232 15-1132 151132 Computer, Math
## 15233 15-1132 151132 Computer, Math
## 15234 15-1199 151199 Computer, Math
## 15235 17-2141 172141 Architecture, Engineer
## 15236 17-2141 172141 Architecture, Engineer
## 15237 15-1152 151152 Computer, Math
## 15238 13-2051 132051 Business, Finance
## 15239 17-2141 172141 Architecture, Engineer
## 15240 15-2041 152041 Computer, Math
## 15241 17-2112 172112 Architecture, Engineer
## 15242 15-1199 151199 Computer, Math
## 15243 15-1132 151132 Computer, Math
## 15244 15-1132 151132 Computer, Math
## 15245 15-2031 152031 Computer, Math
## 15246 15-1132 151132 Computer, Math
## 15247 13-2051 132051 Business, Finance
## 15248 15-1132 151132 Computer, Math
## 15249 15-2041 152041 Computer, Math
## 15250 15-1132 151132 Computer, Math
## 15251 15-1121 151121 Computer, Math
## 15252 17-2071 172071 Architecture, Engineer
## 15253 15-1133 151133 Computer, Math
## 15254 15-1121 151121 Computer, Math
## 15255 15-1132 151132 Computer, Math
## 15256 15-1141 151141 Computer, Math
## 15257 13-2051 132051 Business, Finance
## 15258 13-1151 131151 Business, Finance
## 15259 15-1132 151132 Computer, Math
## 15260 15-1132 151132 Computer, Math
## 15261 15-1121 151121 Computer, Math
## 15262 15-1132 151132 Computer, Math
## 15263 13-2051 132051 Business, Finance
## 15264 15-1121 151121 Computer, Math
## 15265 15-1131 151131 Computer, Math
## 15266 15-1199 151199 Computer, Math
## 15267 17-2071 172071 Architecture, Engineer
## 15268 15-1134 151134 Computer, Math
## 15269 15-1132 151132 Computer, Math
## 15270 15-1121 151121 Computer, Math
## 15271 15-2041 152041 Computer, Math
## 15272 15-1121 151121 Computer, Math
## 15273 15-1132 151132 Computer, Math
## 15274 15-1121 151121 Computer, Math
## 15275 13-1199 131199 Business, Finance
## 15276 17-2141 172141 Architecture, Engineer
## 15277 13-2099 132099 Business, Finance
## 15278 15-1199 151199 Computer, Math
## 15279 15-1132 151132 Computer, Math
## 15280 15-1132 151132 Computer, Math
## 15281 15-1132 151132 Computer, Math
## 15282 15-1199 151199 Computer, Math
## 15283 17-2072 172072 Architecture, Engineer
## 15284 13-2011 132011 Business, Finance
## 15285 35-1011 351011 Others
## 15286 15-1132 151132 Computer, Math
## 15287 19-1042 191042 Life, Physcial, Social Science
## 15288 15-1141 151141 Computer, Math
## 15289 15-1132 151132 Computer, Math
## 15290 15-1132 151132 Computer, Math
## 15291 15-1199 151199 Computer, Math
## 15292 15-1121 151121 Computer, Math
## 15293 27-1021 271021 Media, Design
## 15294 15-1199 151199 Computer, Math
## 15295 13-1161 131161 Business, Finance
## 15296 15-1132 151132 Computer, Math
## 15297 15-1199 151199 Computer, Math
## 15298 17-2141 172141 Architecture, Engineer
## 15299 25-1032 251032 Education, Training
## 15300 15-1111 151111 Computer, Math
## 15301 15-2031 152031 Computer, Math
## 15302 15-1142 151142 Computer, Math
## 15303 15-1132 151132 Computer, Math
## 15304 15-1121 151121 Computer, Math
## 15305 15-1132 151132 Computer, Math
## 15306 15-1199 151199 Computer, Math
## 15307 15-1132 151132 Computer, Math
## 15308 13-1111 131111 Business, Finance
## 15309 17-2051 172051 Architecture, Engineer
## 15310 15-1132 151132 Computer, Math
## 15311 17-2141 172141 Architecture, Engineer
## 15312 15-1121 151121 Computer, Math
## 15313 15-1121 151121 Computer, Math
## 15314 23-2099 232099 Legal
## 15315 15-1141 151141 Computer, Math
## 15316 15-1142 151142 Computer, Math
## 15317 15-1132 151132 Computer, Math
## 15318 13-1081 131081 Business, Finance
## 15319 25-1071 251071 Education, Training
## 15320 15-1132 151132 Computer, Math
## 15321 15-1121 151121 Computer, Math
## 15322 15-2011 152011 Computer, Math
## 15323 15-1121 151121 Computer, Math
## 15324 13-2011 132011 Business, Finance
## 15325 15-2031 152031 Computer, Math
## 15326 15-1132 151132 Computer, Math
## 15327 15-1133 151133 Computer, Math
## 15328 15-1199 151199 Computer, Math
## 15329 15-1121 151121 Computer, Math
## 15330 15-1132 151132 Computer, Math
## 15331 15-1121 151121 Computer, Math
## 15332 13-2051 132051 Business, Finance
## 15333 15-1132 151132 Computer, Math
## 15334 15-1121 151121 Computer, Math
## 15335 17-2072 172072 Architecture, Engineer
## 15336 15-1132 151132 Computer, Math
## 15337 15-1199 151199 Computer, Math
## 15338 15-1133 151133 Computer, Math
## 15339 15-1121 151121 Computer, Math
## 15340 15-1121 151121 Computer, Math
## 15341 13-2051 132051 Business, Finance
## 15342 15-1132 151132 Computer, Math
## 15343 15-1132 151132 Computer, Math
## 15344 15-1199 151199 Computer, Math
## 15345 15-1121 151121 Computer, Math
## 15346 17-2112 172112 Architecture, Engineer
## 15347 15-1132 151132 Computer, Math
## 15348 13-1111 131111 Business, Finance
## 15349 15-1132 151132 Computer, Math
## 15350 15-1142 151142 Computer, Math
## 15351 29-9099 299099 Healthcare Practitioner
## 15352 11-9021 119021 Management
## 15353 13-1161 131161 Business, Finance
## 15354 11-3021 113021 Management
## 15355 15-1131 151131 Computer, Math
## 15356 15-1132 151132 Computer, Math
## 15357 15-1121 151121 Computer, Math
## 15358 15-1132 151132 Computer, Math
## 15359 25-1022 251022 Education, Training
## 15360 15-1132 151132 Computer, Math
## 15361 15-1199 151199 Computer, Math
## 15362 15-1121 151121 Computer, Math
## 15363 15-1132 151132 Computer, Math
## 15364 15-1132 151132 Computer, Math
## 15365 15-1142 151142 Computer, Math
## 15366 15-2031 152031 Computer, Math
## 15367 15-1132 151132 Computer, Math
## 15368 15-1132 151132 Computer, Math
## 15369 15-1132 151132 Computer, Math
## 15370 15-1141 151141 Computer, Math
## 15371 15-1199 151199 Computer, Math
## 15372 15-1131 151131 Computer, Math
## 15373 11-3021 113021 Management
## 15374 15-1121 151121 Computer, Math
## 15375 15-1132 151132 Computer, Math
## 15376 15-1199 151199 Computer, Math
## 15377 15-1199 151199 Computer, Math
## 15378 15-1131 151131 Computer, Math
## 15379 15-1142 151142 Computer, Math
## 15380 19-3022 193022 Life, Physcial, Social Science
## 15381 15-1121 151121 Computer, Math
## 15382 13-2051 132051 Business, Finance
## 15383 15-1122 151122 Computer, Math
## 15384 15-1121 151121 Computer, Math
## 15385 15-1133 151133 Computer, Math
## 15386 15-1121 151121 Computer, Math
## 15387 15-1199 151199 Computer, Math
## 15388 15-2041 152041 Computer, Math
## 15389 17-2112 172112 Architecture, Engineer
## 15390 15-1132 151132 Computer, Math
## 15391 13-1161 131161 Business, Finance
## 15392 15-1034 151034 Computer, Math
## 15393 17-2072 172072 Architecture, Engineer
## 15394 15-1121 151121 Computer, Math
## 15395 15-1121 151121 Computer, Math
## 15396 15-1132 151132 Computer, Math
## 15397 15-1132 151132 Computer, Math
## 15398 15-1132 151132 Computer, Math
## 15399 15-1133 151133 Computer, Math
## 15400 15-1121 151121 Computer, Math
## 15401 11-9111 119111 Management
## 15402 25-1124 251124 Education, Training
## 15403 15-1121 151121 Computer, Math
## 15404 15-1131 151131 Computer, Math
## 15405 15-1132 151132 Computer, Math
## 15406 15-1132 151132 Computer, Math
## 15407 15-1121 151121 Computer, Math
## 15408 15-1132 151132 Computer, Math
## 15409 15-1121 151121 Computer, Math
## 15410 15-1132 151132 Computer, Math
## 15411 15-1132 151132 Computer, Math
## 15412 15-1132 151132 Computer, Math
## 15413 15-1121 151121 Computer, Math
## 15414 15-1199.09 151199 Computer, Math
## 15415 13-2011 132011 Business, Finance
## 15416 15-2031 152031 Computer, Math
## 15417 15-1121 151121 Computer, Math
## 15418 15-1132 151132 Computer, Math
## 15419 19-3011 193011 Life, Physcial, Social Science
## 15420 15-1121 151121 Computer, Math
## 15421 15-2031 152031 Computer, Math
## 15422 15-1132 151132 Computer, Math
## 15423 15-1199 151199 Computer, Math
## 15424 29-1123 291123 Healthcare Practitioner
## 15425 15-1121 151121 Computer, Math
## 15426 15-1132 151132 Computer, Math
## 15427 15-1132 151132 Computer, Math
## 15428 15-1132 151132 Computer, Math
## 15429 15-1133 151133 Computer, Math
## 15430 13-1111 131111 Business, Finance
## 15431 15-1199 151199 Computer, Math
## 15432 15-1199 151199 Computer, Math
## 15433 15-1121 151121 Computer, Math
## 15434 15-1132 151132 Computer, Math
## 15435 15-1132 151132 Computer, Math
## 15436 15-1133 151133 Computer, Math
## 15437 15-1132 151132 Computer, Math
## 15438 15-1132 151132 Computer, Math
## 15439 15-1132 151132 Computer, Math
## 15440 15-1121 151121 Computer, Math
## 15441 15-1199 151199 Computer, Math
## 15442 15-1199 151199 Computer, Math
## 15443 11-2021 112021 Management
## 15444 15-1121 151121 Computer, Math
## 15445 11-2021 112021 Management
## 15446 15-2041 152041 Computer, Math
## 15447 11-3021 113021 Management
## 15448 15-1132 151132 Computer, Math
## 15449 15-1133 151133 Computer, Math
## 15450 15-1133 151133 Computer, Math
## 15451 15-2031 152031 Computer, Math
## 15452 15-1132 151132 Computer, Math
## 15453 17-2071 172071 Architecture, Engineer
## 15454 15-1132 151132 Computer, Math
## 15455 25-1071 251071 Education, Training
## 15456 15-1199 151199 Computer, Math
## 15457 13-2099 132099 Business, Finance
## 15458 13-2099 132099 Business, Finance
## 15459 29-2011 292011 Healthcare Practitioner
## 15460 17-2112 172112 Architecture, Engineer
## 15461 15-1132 151132 Computer, Math
## 15462 15-1132 151132 Computer, Math
## 15463 19-2031 192031 Life, Physcial, Social Science
## 15464 15-1132 151132 Computer, Math
## 15465 15-1121 151121 Computer, Math
## 15466 13-1111 131111 Business, Finance
## 15467 15-1133 151133 Computer, Math
## 15468 11-3021 113021 Management
## 15469 15-1131 151131 Computer, Math
## 15470 15-1199 151199 Computer, Math
## 15471 15-1132 151132 Computer, Math
## 15472 17-2071 172071 Architecture, Engineer
## 15473 15-1143 151143 Computer, Math
## 15474 15-1132 151132 Computer, Math
## 15475 15-1132 151132 Computer, Math
## 15476 15-1133 151133 Computer, Math
## 15477 15-1132 151132 Computer, Math
## 15478 17-2141 172141 Architecture, Engineer
## 15479 15-1141 151141 Computer, Math
## 15480 15-1132 151132 Computer, Math
## 15481 15-1132 151132 Computer, Math
## 15482 15-1132 151132 Computer, Math
## 15483 15-1132 151132 Computer, Math
## 15484 15-1142 151142 Computer, Math
## 15485 15-1132 151132 Computer, Math
## 15486 15-1132 151132 Computer, Math
## 15487 15-2031 152031 Computer, Math
## 15488 15-1132 151132 Computer, Math
## 15489 15-1121 151121 Computer, Math
## 15490 13-2051 132051 Business, Finance
## 15491 15-1141 151141 Computer, Math
## 15492 15-1132 151132 Computer, Math
## 15493 15-1121 151121 Computer, Math
## 15494 15-1121 151121 Computer, Math
## 15495 15-1141 151141 Computer, Math
## 15496 13-1161 131161 Business, Finance
## 15497 15-1132 151132 Computer, Math
## 15498 15-1131 151131 Computer, Math
## 15499 15-1132 151132 Computer, Math
## 15500 17-2131 172131 Architecture, Engineer
## 15501 15-1121 151121 Computer, Math
## 15502 13-1111 131111 Business, Finance
## 15503 15-1199 151199 Computer, Math
## 15504 15-1199 151199 Computer, Math
## 15505 17-2072 172072 Architecture, Engineer
## 15506 15-1132 151132 Computer, Math
## 15507 15-1199 151199 Computer, Math
## 15508 11-9111 119111 Management
## 15509 15-1132 151132 Computer, Math
## 15510 15-1132 151132 Computer, Math
## 15511 15-1132 151132 Computer, Math
## 15512 15-1121 151121 Computer, Math
## 15513 25-1011 251011 Education, Training
## 15514 15-1132 151132 Computer, Math
## 15515 15-1131 151131 Computer, Math
## 15516 15-1121 151121 Computer, Math
## 15517 15-1121 151121 Computer, Math
## 15518 15-1133 151133 Computer, Math
## 15519 15-1132 151132 Computer, Math
## 15520 15-1121 151121 Computer, Math
## 15521 15-1199 151199 Computer, Math
## 15522 15-1132 151132 Computer, Math
## 15523 15-1199 151199 Computer, Math
## 15524 13-2099 132099 Business, Finance
## 15525 15-1199 151199 Computer, Math
## 15526 15-1131 151131 Computer, Math
## 15527 15-1131 151131 Computer, Math
## 15528 15-1132 151132 Computer, Math
## 15529 15-1199 151199 Computer, Math
## 15530 15-1132 151132 Computer, Math
## 15531 15-1132 151132 Computer, Math
## 15532 11-3031 113031 Management
## 15533 13-2051 132051 Business, Finance
## 15534 15-1132 151132 Computer, Math
## 15535 15-1132 151132 Computer, Math
## 15536 15-1199 151199 Computer, Math
## 15537 15-1132 151132 Computer, Math
## 15538 15-1132 151132 Computer, Math
## 15539 15-1121 151121 Computer, Math
## 15540 15-1131 151131 Computer, Math
## 15541 13-2051 132051 Business, Finance
## 15542 15-1199 151199 Computer, Math
## 15543 15-1122 151122 Computer, Math
## 15544 15-1121 151121 Computer, Math
## 15545 15-1141 151141 Computer, Math
## 15546 15-2031 152031 Computer, Math
## 15547 15-2031 152031 Computer, Math
## 15548 13-2011 132011 Business, Finance
## 15549 15-1132 151132 Computer, Math
## 15550 15-1199 151199 Computer, Math
## 15551 15-1199 151199 Computer, Math
## 15552 15-1199 151199 Computer, Math
## 15553 15-1132 151132 Computer, Math
## 15554 15-1132 151132 Computer, Math
## 15555 17-2051 172051 Architecture, Engineer
## 15556 15-1142 151142 Computer, Math
## 15557 15-1134 151134 Computer, Math
## 15558 15-1131 151131 Computer, Math
## 15559 15-1132 151132 Computer, Math
## 15560 15-1132 151132 Computer, Math
## 15561 17-2141 172141 Architecture, Engineer
## 15562 15-1132 151132 Computer, Math
## 15563 15-1141 151141 Computer, Math
## 15564 15-2031 152031 Computer, Math
## 15565 15-1132 151132 Computer, Math
## 15566 15-1199 151199 Computer, Math
## 15567 15-1132 151132 Computer, Math
## 15568 15-1121 151121 Computer, Math
## 15569 15-1132 151132 Computer, Math
## 15570 15-1121 151121 Computer, Math
## 15571 15-1132 151132 Computer, Math
## 15572 15-1132 151132 Computer, Math
## 15573 15-1121 151121 Computer, Math
## 15574 15-1132 151132 Computer, Math
## 15575 13-1111 131111 Business, Finance
## 15576 15-1142 151142 Computer, Math
## 15577 15-1199 151199 Computer, Math
## 15578 17-2141 172141 Architecture, Engineer
## 15579 15-1131 151131 Computer, Math
## 15580 15-1132 151132 Computer, Math
## 15581 11-3021 113021 Management
## 15582 17-2041 172041 Architecture, Engineer
## 15583 13-2011 132011 Business, Finance
## 15584 15-1132 151132 Computer, Math
## 15585 27-1025 271025 Media, Design
## 15586 15-1121 151121 Computer, Math
## 15587 13-1081 131081 Business, Finance
## 15588 17-2051 172051 Architecture, Engineer
## 15589 15-1132 151132 Computer, Math
## 15590 15-1199 151199 Computer, Math
## 15591 15-1132 151132 Computer, Math
## 15592 15-1122 151122 Computer, Math
## 15593 15-2031 152031 Computer, Math
## 15594 15-1121 151121 Computer, Math
## 15595 15-1199 151199 Computer, Math
## 15596 15-1132 151132 Computer, Math
## 15597 17-3011 173011 Architecture, Engineer
## 15598 15-1132 151132 Computer, Math
## 15599 25-1061 251061 Education, Training
## 15600 15-1131 151131 Computer, Math
## 15601 13-1111 131111 Business, Finance
## 15602 15-1132 151132 Computer, Math
## 15603 13-1081 131081 Business, Finance
## 15604 13-1041 131041 Business, Finance
## 15605 15-1132 151132 Computer, Math
## 15606 15-1199 151199 Computer, Math
## 15607 15-1133 151133 Computer, Math
## 15608 17-2071 172071 Architecture, Engineer
## 15609 15-1199 151199 Computer, Math
## 15610 17-2072 172072 Architecture, Engineer
## 15611 15-1132 151132 Computer, Math
## 15612 15-2031 152031 Computer, Math
## 15613 17-2131 172131 Architecture, Engineer
## 15614 11-9021 119021 Management
## 15615 15-2041 152041 Computer, Math
## 15616 15-1199 151199 Computer, Math
## 15617 19-1042 191042 Life, Physcial, Social Science
## 15618 15-1132 151132 Computer, Math
## 15619 15-1132 151132 Computer, Math
## 15620 15-1134 151134 Computer, Math
## 15621 25-1063 251063 Education, Training
## 15622 15-1132 151132 Computer, Math
## 15623 15-1131 151131 Computer, Math
## 15624 15-1133 151133 Computer, Math
## 15625 15-1199 151199 Computer, Math
## 15626 15-1121 151121 Computer, Math
## 15627 19-2031 192031 Life, Physcial, Social Science
## 15628 15-1132 151132 Computer, Math
## 15629 15-1199 151199 Computer, Math
## 15630 15-1132 151132 Computer, Math
## 15631 15-1199 151199 Computer, Math
## 15632 15-1132 151132 Computer, Math
## 15633 15-1132 151132 Computer, Math
## 15634 15-1199 151199 Computer, Math
## 15635 15-1132 151132 Computer, Math
## 15636 15-1132 151132 Computer, Math
## 15637 15-1132 151132 Computer, Math
## 15638 15-1132 151132 Computer, Math
## 15639 15-1131 151131 Computer, Math
## 15640 15-1132 151132 Computer, Math
## 15641 11-3021 113021 Management
## 15642 15-1132 151132 Computer, Math
## 15643 15-1199 151199 Computer, Math
## 15644 17-1011 171011 Architecture, Engineer
## 15645 15-1199 151199 Computer, Math
## 15646 15-1132 151132 Computer, Math
## 15647 15-1199 151199 Computer, Math
## 15648 17-2072 172072 Architecture, Engineer
## 15649 25-1041 251041 Education, Training
## 15650 15-1199 151199 Computer, Math
## 15651 15-1199 151199 Computer, Math
## 15652 15-1132 151132 Computer, Math
## 15653 15-2041 152041 Computer, Math
## 15654 13-2051 132051 Business, Finance
## 15655 17-2071 172071 Architecture, Engineer
## 15656 29-1127 291127 Healthcare Practitioner
## 15657 15-1122 151122 Computer, Math
## 15658 15-1132 151132 Computer, Math
## 15659 15-1121 151121 Computer, Math
## 15660 15-1199 151199 Computer, Math
## 15661 15-1199 151199 Computer, Math
## 15662 15-1121 151121 Computer, Math
## 15663 27-1014 271014 Media, Design
## 15664 17-2112 172112 Architecture, Engineer
## 15665 15-1132 151132 Computer, Math
## 15666 13-2099 132099 Business, Finance
## 15667 15-1132 151132 Computer, Math
## 15668 13-1141 131141 Business, Finance
## 15669 15-1199 151199 Computer, Math
## 15670 15-1132 151132 Computer, Math
## 15671 15-1199 151199 Computer, Math
## 15672 13-2011 132011 Business, Finance
## 15673 19-3011 193011 Life, Physcial, Social Science
## 15674 25-1081 251081 Education, Training
## 15675 11-9041 119041 Management
## 15676 13-1161 131161 Business, Finance
## 15677 15-1132 151132 Computer, Math
## 15678 17-2141 172141 Architecture, Engineer
## 15679 15-1131 151131 Computer, Math
## 15680 17-2072 172072 Architecture, Engineer
## 15681 25-1032 251032 Education, Training
## 15682 15-1132 151132 Computer, Math
## 15683 15-1133 151133 Computer, Math
## 15684 15-1133 151133 Computer, Math
## 15685 15-1132 151132 Computer, Math
## 15686 15-1199 151199 Computer, Math
## 15687 15-1132 151132 Computer, Math
## 15688 15-1132 151132 Computer, Math
## 15689 15-1132 151132 Computer, Math
## 15690 15-2031 152031 Computer, Math
## 15691 17-2141 172141 Architecture, Engineer
## 15692 17-2112 172112 Architecture, Engineer
## 15693 25-1031 251031 Education, Training
## 15694 15-1132 151132 Computer, Math
## 15695 17-2051 172051 Architecture, Engineer
## 15696 15-1132 151132 Computer, Math
## 15697 15-1132 151132 Computer, Math
## 15698 15-1199 151199 Computer, Math
## 15699 15-1151 151151 Computer, Math
## 15700 15-1132 151132 Computer, Math
## 15701 15-1199 151199 Computer, Math
## 15702 15-1121 151121 Computer, Math
## 15703 15-1133 151133 Computer, Math
## 15704 15-1133 151133 Computer, Math
## 15705 17-2141 172141 Architecture, Engineer
## 15706 15-1131 151131 Computer, Math
## 15707 17-2112 172112 Architecture, Engineer
## 15708 15-1131 151131 Computer, Math
## 15709 15-1132 151132 Computer, Math
## 15710 15-1132 151132 Computer, Math
## 15711 15-1132 151132 Computer, Math
## 15712 15-1199 151199 Computer, Math
## 15713 15-1132 151132 Computer, Math
## 15714 15-1132 151132 Computer, Math
## 15715 13-1111 131111 Business, Finance
## 15716 15-1134 151134 Computer, Math
## 15717 27-1024 271024 Media, Design
## 15718 15-1131 151131 Computer, Math
## 15719 13-1141 131141 Business, Finance
## 15720 15-1132 151132 Computer, Math
## 15721 15-1199 151199 Computer, Math
## 15722 15-1132 151132 Computer, Math
## 15723 17-2141 172141 Architecture, Engineer
## 15724 13-1071 131071 Business, Finance
## 15725 11-3021 113021 Management
## 15726 15-1199 151199 Computer, Math
## 15727 15-1133 151133 Computer, Math
## 15728 15-1132 151132 Computer, Math
## 15729 15-1132 151132 Computer, Math
## 15730 15-1151 151151 Computer, Math
## 15731 13-1081 131081 Business, Finance
## 15732 15-1143 151143 Computer, Math
## 15733 19-1042 191042 Life, Physcial, Social Science
## 15734 15-1132 151132 Computer, Math
## 15735 15-1132 151132 Computer, Math
## 15736 11-9041 119041 Management
## 15737 15-1037 151037 Computer, Math
## 15738 15-1131 151131 Computer, Math
## 15739 15-1132 151132 Computer, Math
## 15740 11-9041 119041 Management
## 15741 13-1161 131161 Business, Finance
## 15742 15-1132 151132 Computer, Math
## 15743 15-1133 151133 Computer, Math
## 15744 15-1199 151199 Computer, Math
## 15745 15-1121 151121 Computer, Math
## 15746 15-1121 151121 Computer, Math
## 15747 15-1199 151199 Computer, Math
## 15748 15-1132 151132 Computer, Math
## 15749 15-1132 151132 Computer, Math
## 15750 19-1021 191021 Life, Physcial, Social Science
## 15751 15-2031 152031 Computer, Math
## 15752 15-1199 151199 Computer, Math
## 15753 15-1132 151132 Computer, Math
## 15754 15-1132 151132 Computer, Math
## 15755 15-1132 151132 Computer, Math
## 15756 17-2141 172141 Architecture, Engineer
## 15757 15-1132 151132 Computer, Math
## 15758 15-1132 151132 Computer, Math
## 15759 15-1131 151131 Computer, Math
## 15760 15-1132 151132 Computer, Math
## 15761 13-2051 132051 Business, Finance
## 15762 15-1111 151111 Computer, Math
## 15763 15-1199 151199 Computer, Math
## 15764 13-1111 131111 Business, Finance
## 15765 15-1121 151121 Computer, Math
## 15766 15-1132 151132 Computer, Math
## 15767 15-1132 151132 Computer, Math
## 15768 13-2051 132051 Business, Finance
## 15769 15-1121 151121 Computer, Math
## 15770 27-1029 271029 Media, Design
## 15771 15-1199 151199 Computer, Math
## 15772 15-1121 151121 Computer, Math
## 15773 15-1199 151199 Computer, Math
## 15774 11-3051 113051 Management
## 15775 15-1132 151132 Computer, Math
## 15776 15-1199 151199 Computer, Math
## 15777 15-1152 151152 Computer, Math
## 15778 15-1132 151132 Computer, Math
## 15779 15-1132 151132 Computer, Math
## 15780 15-1121 151121 Computer, Math
## 15781 15-1199 151199 Computer, Math
## 15782 13-1071 131071 Business, Finance
## 15783 15-1132 151132 Computer, Math
## 15784 15-1132 151132 Computer, Math
## 15785 15-1122 151122 Computer, Math
## 15786 17-2141 172141 Architecture, Engineer
## 15787 15-1132 151132 Computer, Math
## 15788 15-1132 151132 Computer, Math
## 15789 15-1132 151132 Computer, Math
## 15790 15-1121 151121 Computer, Math
## 15791 15-1132 151132 Computer, Math
## 15792 17-3011 173011 Architecture, Engineer
## 15793 15-1199 151199 Computer, Math
## 15794 15-1121 151121 Computer, Math
## 15795 15-1132 151132 Computer, Math
## 15796 11-3021 113021 Management
## 15797 15-1111 151111 Computer, Math
## 15798 15-1132 151132 Computer, Math
## 15799 15-1132 151132 Computer, Math
## 15800 15-1121 151121 Computer, Math
## 15801 21-1014 211014 Social Service
## 15802 25-1054 251054 Education, Training
## 15803 15-1121 151121 Computer, Math
## 15804 15-1132 151132 Computer, Math
## 15805 15-1199 151199 Computer, Math
## 15806 11-1021 111021 Management
## 15807 19-1021 191021 Life, Physcial, Social Science
## 15808 15-1132 151132 Computer, Math
## 15809 15-1133 151133 Computer, Math
## 15810 29-1123 291123 Healthcare Practitioner
## 15811 15-1141 151141 Computer, Math
## 15812 15-1199 151199 Computer, Math
## 15813 29-1063 291063 Healthcare Practitioner
## 15814 13-1111 131111 Business, Finance
## 15815 15-1132 151132 Computer, Math
## 15816 11-9041 119041 Management
## 15817 15-1133 151133 Computer, Math
## 15818 15-1132 151132 Computer, Math
## 15819 17-2112 172112 Architecture, Engineer
## 15820 15-1141 151141 Computer, Math
## 15821 15-1199 151199 Computer, Math
## 15822 11-1021 111021 Management
## 15823 15-1132 151132 Computer, Math
## 15824 15-1121 151121 Computer, Math
## 15825 27-1021 271021 Media, Design
## 15826 15-1142 151142 Computer, Math
## 15827 15-1132 151132 Computer, Math
## 15828 15-1141 151141 Computer, Math
## 15829 15-1131 151131 Computer, Math
## 15830 15-1121 151121 Computer, Math
## 15831 15-1132 151132 Computer, Math
## 15832 11-1021 111021 Management
## 15833 17-2199 172199 Architecture, Engineer
## 15834 15-1132 151132 Computer, Math
## 15835 15-1122 151122 Computer, Math
## 15836 15-1133 151133 Computer, Math
## 15837 15-1132 151132 Computer, Math
## 15838 15-1132 151132 Computer, Math
## 15839 15-1132 151132 Computer, Math
## 15840 15-1121 151121 Computer, Math
## 15841 13-2011 132011 Business, Finance
## 15842 15-1132 151132 Computer, Math
## 15843 15-1131 151131 Computer, Math
## 15844 17-2199 172199 Architecture, Engineer
## 15845 15-1132 151132 Computer, Math
## 15846 15-1199 151199 Computer, Math
## 15847 15-1121 151121 Computer, Math
## 15848 15-1121 151121 Computer, Math
## 15849 15-1133 151133 Computer, Math
## 15850 15-1121 151121 Computer, Math
## 15851 15-1199 151199 Computer, Math
## 15852 15-1132 151132 Computer, Math
## 15853 15-1132 151132 Computer, Math
## 15854 15-1132 151132 Computer, Math
## 15855 15-1132 151132 Computer, Math
## 15856 15-1132 151132 Computer, Math
## 15857 15-1199 151199 Computer, Math
## 15858 15-1132 151132 Computer, Math
## 15859 15-1132 151132 Computer, Math
## 15860 13-2051 132051 Business, Finance
## 15861 13-2051 132051 Business, Finance
## 15862 15-1111 151111 Computer, Math
## 15863 15-1199 151199 Computer, Math
## 15864 25-1066 251066 Education, Training
## 15865 25-1071 251071 Education, Training
## 15866 15-1121 151121 Computer, Math
## 15867 15-1199 151199 Computer, Math
## 15868 15-1121 151121 Computer, Math
## 15869 15-1132 151132 Computer, Math
## 15870 15-1132 151132 Computer, Math
## 15871 17-2112 172112 Architecture, Engineer
## 15872 15-1132 151132 Computer, Math
## 15873 15-1132 151132 Computer, Math
## 15874 15-1199 151199 Computer, Math
## 15875 11-3021 113021 Management
## 15876 17-2112 172112 Architecture, Engineer
## 15877 15-1134 151134 Computer, Math
## 15878 13-2011 132011 Business, Finance
## 15879 15-1199 151199 Computer, Math
## 15880 17-2071 172071 Architecture, Engineer
## 15881 15-1122 151122 Computer, Math
## 15882 15-1132 151132 Computer, Math
## 15883 15-1132 151132 Computer, Math
## 15884 15-2031 152031 Computer, Math
## 15885 15-1132 151132 Computer, Math
## 15886 15-1132 151132 Computer, Math
## 15887 17-2071 172071 Architecture, Engineer
## 15888 17-2141 172141 Architecture, Engineer
## 15889 15-1132 151132 Computer, Math
## 15890 15-1131 151131 Computer, Math
## 15891 15-1132 151132 Computer, Math
## 15892 15-1132 151132 Computer, Math
## 15893 15-1199 151199 Computer, Math
## 15894 25-1064 251064 Education, Training
## 15895 17-2141 172141 Architecture, Engineer
## 15896 15-1132 151132 Computer, Math
## 15897 13-1111 131111 Business, Finance
## 15898 11-3021 113021 Management
## 15899 15-1121 151121 Computer, Math
## 15900 11-9021 119021 Management
## 15901 15-1121 151121 Computer, Math
## 15902 15-1199 151199 Computer, Math
## 15903 15-1121 151121 Computer, Math
## 15904 15-1199 151199 Computer, Math
## 15905 15-1199 151199 Computer, Math
## 15906 15-1131 151131 Computer, Math
## 15907 19-2032 192032 Life, Physcial, Social Science
## 15908 29-1123 291123 Healthcare Practitioner
## 15909 11-9041 119041 Management
## 15910 15-2031 152031 Computer, Math
## 15911 15-1132 151132 Computer, Math
## 15912 15-1132 151132 Computer, Math
## 15913 15-1132 151132 Computer, Math
## 15914 15-1121 151121 Computer, Math
## 15915 15-1131 151131 Computer, Math
## 15916 11-3021 113021 Management
## 15917 15-1111 151111 Computer, Math
## 15918 17-2199 172199 Architecture, Engineer
## 15919 13-1111 131111 Business, Finance
## 15920 29-1062 291062 Healthcare Practitioner
## 15921 15-1199 151199 Computer, Math
## 15922 41-9031 419031 Sales
## 15923 15-1133 151133 Computer, Math
## 15924 17-2141 172141 Architecture, Engineer
## 15925 17-2112 172112 Architecture, Engineer
## 15926 17-2141 172141 Architecture, Engineer
## 15927 29-1123 291123 Healthcare Practitioner
## 15928 15-1199 151199 Computer, Math
## 15929 15-1132 151132 Computer, Math
## 15930 13-2011 132011 Business, Finance
## 15931 15-1199 151199 Computer, Math
## 15932 15-1132 151132 Computer, Math
## 15933 15-1132 151132 Computer, Math
## 15934 11-2021 112021 Management
## 15935 15-1133 151133 Computer, Math
## 15936 13-2051 132051 Business, Finance
## 15937 15-1199 151199 Computer, Math
## 15938 15-1132 151132 Computer, Math
## 15939 15-1121 151121 Computer, Math
## 15940 15-1133 151133 Computer, Math
## 15941 13-2051 132051 Business, Finance
## 15942 13-1111 131111 Business, Finance
## 15943 15-2021 152021 Computer, Math
## 15944 13-1111 131111 Business, Finance
## 15945 15-1199 151199 Computer, Math
## 15946 15-1132 151132 Computer, Math
## 15947 15-1199 151199 Computer, Math
## 15948 25-3099.00 253099 Education, Training
## 15949 15-1132 151132 Computer, Math
## 15950 13-1111 131111 Business, Finance
## 15951 15-1141 151141 Computer, Math
## 15952 15-1132 151132 Computer, Math
## 15953 15-1133 151133 Computer, Math
## 15954 15-1133 151133 Computer, Math
## 15955 17-2112 172112 Architecture, Engineer
## 15956 15-1199 151199 Computer, Math
## 15957 15-1142 151142 Computer, Math
## 15958 13-1161 131161 Business, Finance
## 15959 13-1161 131161 Business, Finance
## 15960 15-1132 151132 Computer, Math
## 15961 15-1121 151121 Computer, Math
## 15962 15-1132 151132 Computer, Math
## 15963 15-1121 151121 Computer, Math
## 15964 15-1121 151121 Computer, Math
## 15965 13-1111 131111 Business, Finance
## 15966 41-9031 419031 Sales
## 15967 29-1063 291063 Healthcare Practitioner
## 15968 15-1132 151132 Computer, Math
## 15969 15-1131 151131 Computer, Math
## 15970 15-1121 151121 Computer, Math
## 15971 29-1123 291123 Healthcare Practitioner
## 15972 15-1132 151132 Computer, Math
## 15973 15-1132 151132 Computer, Math
## 15974 15-1133 151133 Computer, Math
## 15975 15-1132 151132 Computer, Math
## 15976 15-1132 151132 Computer, Math
## 15977 15-1121 151121 Computer, Math
## 15978 15-1133 151133 Computer, Math
## 15979 15-1132 151132 Computer, Math
## 15980 13-2031 132031 Business, Finance
## 15981 15-1121 151121 Computer, Math
## 15982 15-1141 151141 Computer, Math
## 15983 15-1133 151133 Computer, Math
## 15984 13-2011 132011 Business, Finance
## 15985 13-2051 132051 Business, Finance
## 15986 15-1199 151199 Computer, Math
## 15987 15-1132 151132 Computer, Math
## 15988 17-2072 172072 Architecture, Engineer
## 15989 15-1131 151131 Computer, Math
## 15990 15-1132 151132 Computer, Math
## 15991 29-1065 291065 Healthcare Practitioner
## 15992 15-1121 151121 Computer, Math
## 15993 15-1132 151132 Computer, Math
## 15994 15-1132 151132 Computer, Math
## 15995 15-1199 151199 Computer, Math
## 15996 15-1121 151121 Computer, Math
## 15997 15-1133 151133 Computer, Math
## 15998 15-1132 151132 Computer, Math
## 15999 17-2071 172071 Architecture, Engineer
## 16000 15-1142 151142 Computer, Math
## 16001 15-1132 151132 Computer, Math
## 16002 15-1131 151131 Computer, Math
## 16003 13-1041 131041 Business, Finance
## 16004 15-1121 151121 Computer, Math
## 16005 15-1034 151034 Computer, Math
## 16006 15-1133 151133 Computer, Math
## 16007 15-1141 151141 Computer, Math
## 16008 13-2051 132051 Business, Finance
## 16009 15-1132 151132 Computer, Math
## 16010 15-1132 151132 Computer, Math
## 16011 15-1132 151132 Computer, Math
## 16012 15-1132 151132 Computer, Math
## 16013 15-1132 151132 Computer, Math
## 16014 15-1133 151133 Computer, Math
## 16015 15-1121 151121 Computer, Math
## 16016 15-1121 151121 Computer, Math
## 16017 15-1132 151132 Computer, Math
## 16018 25-9031 259031 Education, Training
## 16019 11-3021 113021 Management
## 16020 15-1199 151199 Computer, Math
## 16021 13-2099 132099 Business, Finance
## 16022 15-1141 151141 Computer, Math
## 16023 15-1132 151132 Computer, Math
## 16024 13-2051 132051 Business, Finance
## 16025 29-9099 299099 Healthcare Practitioner
## 16026 15-1131 151131 Computer, Math
## 16027 15-1131 151131 Computer, Math
## 16028 15-1132 151132 Computer, Math
## 16029 15-1132 151132 Computer, Math
## 16030 15-1132 151132 Computer, Math
## 16031 13-2051 132051 Business, Finance
## 16032 15-1133 151133 Computer, Math
## 16033 11-9041 119041 Management
## 16034 15-1199 151199 Computer, Math
## 16035 15-1121 151121 Computer, Math
## 16036 15-1131 151131 Computer, Math
## 16037 17-2141 172141 Architecture, Engineer
## 16038 15-1132 151132 Computer, Math
## 16039 15-1132 151132 Computer, Math
## 16040 15-1132 151132 Computer, Math
## 16041 27-1025 271025 Media, Design
## 16042 15-1199 151199 Computer, Math
## 16043 15-1132 151132 Computer, Math
## 16044 15-1132 151132 Computer, Math
## 16045 15-1132 151132 Computer, Math
## 16046 27-1022 271022 Media, Design
## 16047 15-1121 151121 Computer, Math
## 16048 15-1132 151132 Computer, Math
## 16049 15-2031 152031 Computer, Math
## 16050 19-1029 191029 Life, Physcial, Social Science
## 16051 15-1132 151132 Computer, Math
## 16052 11-9041 119041 Management
## 16053 15-1121 151121 Computer, Math
## 16054 15-1132 151132 Computer, Math
## 16055 29-1065 291065 Healthcare Practitioner
## 16056 15-1132 151132 Computer, Math
## 16057 23-1011 231011 Legal
## 16058 15-1199 151199 Computer, Math
## 16059 15-1132 151132 Computer, Math
## 16060 25-1052 251052 Education, Training
## 16061 15-1132 151132 Computer, Math
## 16062 15-1132 151132 Computer, Math
## 16063 15-1131 151131 Computer, Math
## 16064 15-1133 151133 Computer, Math
## 16065 15-1132 151132 Computer, Math
## 16066 15-1132 151132 Computer, Math
## 16067 19-1042 191042 Life, Physcial, Social Science
## 16068 15-1132 151132 Computer, Math
## 16069 17-2071 172071 Architecture, Engineer
## 16070 15-1132 151132 Computer, Math
## 16071 15-1121 151121 Computer, Math
## 16072 17-2112 172112 Architecture, Engineer
## 16073 15-1132 151132 Computer, Math
## 16074 15-1132 151132 Computer, Math
## 16075 15-1131 151131 Computer, Math
## 16076 11-9121 119121 Management
## 16077 15-2031 152031 Computer, Math
## 16078 15-1199 151199 Computer, Math
## 16079 15-1132 151132 Computer, Math
## 16080 15-1199 151199 Computer, Math
## 16081 15-1141 151141 Computer, Math
## 16082 15-1134 151134 Computer, Math
## 16083 15-1132 151132 Computer, Math
## 16084 15-2031 152031 Computer, Math
## 16085 15-1121 151121 Computer, Math
## 16086 15-1133 151133 Computer, Math
## 16087 15-1121 151121 Computer, Math
## 16088 15-1121 151121 Computer, Math
## 16089 25-1069 251069 Education, Training
## 16090 15-1133 151133 Computer, Math
## 16091 15-1121 151121 Computer, Math
## 16092 15-1121 151121 Computer, Math
## 16093 15-1121 151121 Computer, Math
## 16094 15-1132 151132 Computer, Math
## 16095 19-1042 191042 Life, Physcial, Social Science
## 16096 15-1122 151122 Computer, Math
## 16097 15-1121 151121 Computer, Math
## 16098 19-2031 192031 Life, Physcial, Social Science
## 16099 15-1132 151132 Computer, Math
## 16100 15-1132 151132 Computer, Math
## 16101 15-1132 151132 Computer, Math
## 16102 15-1132 151132 Computer, Math
## 16103 15-1132 151132 Computer, Math
## 16104 15-1132 151132 Computer, Math
## 16105 29-1069 291069 Healthcare Practitioner
## 16106 15-1122 151122 Computer, Math
## 16107 13-1161 131161 Business, Finance
## 16108 15-1121 151121 Computer, Math
## 16109 19-1042 191042 Life, Physcial, Social Science
## 16110 17-2141 172141 Architecture, Engineer
## 16111 15-1121 151121 Computer, Math
## 16112 15-2041 152041 Computer, Math
## 16113 15-1132 151132 Computer, Math
## 16114 15-2011 152011 Computer, Math
## 16115 15-1132 151132 Computer, Math
## 16116 41-9031 419031 Sales
## 16117 17-2141 172141 Architecture, Engineer
## 16118 15-1132 151132 Computer, Math
## 16119 15-1142 151142 Computer, Math
## 16120 15-1132 151132 Computer, Math
## 16121 15-1132 151132 Computer, Math
## 16122 15-1132 151132 Computer, Math
## 16123 25-1193 251193 Education, Training
## 16124 15-1141 151141 Computer, Math
## 16125 25-1032 251032 Education, Training
## 16126 17-1011 171011 Architecture, Engineer
## 16127 19-2031 192031 Life, Physcial, Social Science
## 16128 15-1132 151132 Computer, Math
## 16129 41-9031 419031 Sales
## 16130 17-2051 172051 Architecture, Engineer
## 16131 15-1132 151132 Computer, Math
## 16132 25-1052 251052 Education, Training
## 16133 15-1131 151131 Computer, Math
## 16134 15-1132 151132 Computer, Math
## 16135 27-3022 273022 Media, Design
## 16136 15-1132 151132 Computer, Math
## 16137 17-2199 172199 Architecture, Engineer
## 16138 15-2031 152031 Computer, Math
## 16139 15-1132 151132 Computer, Math
## 16140 15-1199 151199 Computer, Math
## 16141 15-1121 151121 Computer, Math
## 16142 19-1029 191029 Life, Physcial, Social Science
## 16143 15-1121 151121 Computer, Math
## 16144 15-1142 151142 Computer, Math
## 16145 15-1121 151121 Computer, Math
## 16146 15-1143 151143 Computer, Math
## 16147 17-2072 172072 Architecture, Engineer
## 16148 15-1121 151121 Computer, Math
## 16149 15-1131 151131 Computer, Math
## 16150 15-1199 151199 Computer, Math
## 16151 15-1132 151132 Computer, Math
## 16152 11-2021 112021 Management
## 16153 15-1132 151132 Computer, Math
## 16154 15-1133 151133 Computer, Math
## 16155 15-1132 151132 Computer, Math
## 16156 15-1131 151131 Computer, Math
## 16157 15-2041 152041 Computer, Math
## 16158 15-1133 151133 Computer, Math
## 16159 15-1141 151141 Computer, Math
## 16160 15-1121 151121 Computer, Math
## 16161 17-1012 171012 Architecture, Engineer
## 16162 15-2031 152031 Computer, Math
## 16163 15-1111 151111 Computer, Math
## 16164 15-1132 151132 Computer, Math
## 16165 19-1021 191021 Life, Physcial, Social Science
## 16166 27-1024 271024 Media, Design
## 16167 13-1131 131131 Business, Finance
## 16168 13-2099 132099 Business, Finance
## 16169 13-2051 132051 Business, Finance
## 16170 13-1111 131111 Business, Finance
## 16171 15-1132 151132 Computer, Math
## 16172 15-1132 151132 Computer, Math
## 16173 15-1132 151132 Computer, Math
## 16174 15-1131 151131 Computer, Math
## 16175 15-1111 151111 Computer, Math
## 16176 11-2021 112021 Management
## 16177 15-1121 151121 Computer, Math
## 16178 15-2031 152031 Computer, Math
## 16179 15-1133 151133 Computer, Math
## 16180 13-1111 131111 Business, Finance
## 16181 17-1011 171011 Architecture, Engineer
## 16182 13-2099 132099 Business, Finance
## 16183 15-1121 151121 Computer, Math
## 16184 29-1029 291029 Healthcare Practitioner
## 16185 17-2141 172141 Architecture, Engineer
## 16186 15-1132 151132 Computer, Math
## 16187 15-1142 151142 Computer, Math
## 16188 15-1132 151132 Computer, Math
## 16189 15-1132 151132 Computer, Math
## 16190 15-1133 151133 Computer, Math
## 16191 15-1121 151121 Computer, Math
## 16192 13-1111 131111 Business, Finance
## 16193 15-1121 151121 Computer, Math
## 16194 11-3021 113021 Management
## 16195 11-3021 113021 Management
## 16196 15-1121 151121 Computer, Math
## 16197 17-1011 171011 Architecture, Engineer
## 16198 15-1132 151132 Computer, Math
## 16199 29-9099 299099 Healthcare Practitioner
## 16200 17-2141 172141 Architecture, Engineer
## 16201 15-1132 151132 Computer, Math
## 16202 15-2031 152031 Computer, Math
## 16203 15-1132 151132 Computer, Math
## 16204 15-1132 151132 Computer, Math
## 16205 15-1143 151143 Computer, Math
## 16206 17-2112 172112 Architecture, Engineer
## 16207 15-1133 151133 Computer, Math
## 16208 15-1134 151134 Computer, Math
## 16209 15-1151 151151 Computer, Math
## 16210 15-1199 151199 Computer, Math
## 16211 17-2141 172141 Architecture, Engineer
## 16212 15-1121 151121 Computer, Math
## 16213 17-2072 172072 Architecture, Engineer
## 16214 15-1131 151131 Computer, Math
## 16215 15-1121 151121 Computer, Math
## 16216 29-1051 291051 Healthcare Practitioner
## 16217 13-2011 132011 Business, Finance
## 16218 15-1121 151121 Computer, Math
## 16219 13-2052 132052 Business, Finance
## 16220 15-1132 151132 Computer, Math
## 16221 15-1121 151121 Computer, Math
## 16222 17-2051 172051 Architecture, Engineer
## 16223 11-1021 111021 Management
## 16224 15-2031 152031 Computer, Math
## 16225 15-1132 151132 Computer, Math
## 16226 15-1132 151132 Computer, Math
## 16227 15-1132 151132 Computer, Math
## 16228 11-3021 113021 Management
## 16229 13-2011 132011 Business, Finance
## 16230 15-1199 151199 Computer, Math
## 16231 17-1011 171011 Architecture, Engineer
## 16232 15-1121 151121 Computer, Math
## 16233 13-1111 131111 Business, Finance
## 16234 15-1121 151121 Computer, Math
## 16235 19-1042 191042 Life, Physcial, Social Science
## 16236 15-1141 151141 Computer, Math
## 16237 15-1131 151131 Computer, Math
## 16238 15-1132 151132 Computer, Math
## 16239 15-1121 151121 Computer, Math
## 16240 11-3031 113031 Management
## 16241 15-1132 151132 Computer, Math
## 16242 15-1132 151132 Computer, Math
## 16243 15-1121 151121 Computer, Math
## 16244 15-1121 151121 Computer, Math
## 16245 15-1142 151142 Computer, Math
## 16246 17-2112 172112 Architecture, Engineer
## 16247 15-1132 151132 Computer, Math
## 16248 15-1132 151132 Computer, Math
## 16249 15-1132 151132 Computer, Math
## 16250 15-1121 151121 Computer, Math
## 16251 15-2041 152041 Computer, Math
## 16252 15-1121 151121 Computer, Math
## 16253 15-1121 151121 Computer, Math
## 16254 19-1021 191021 Life, Physcial, Social Science
## 16255 29-2011 292011 Healthcare Practitioner
## 16256 15-1141 151141 Computer, Math
## 16257 15-1132 151132 Computer, Math
## 16258 15-1132 151132 Computer, Math
## 16259 15-1121 151121 Computer, Math
## 16260 15-1132 151132 Computer, Math
## 16261 15-1131 151131 Computer, Math
## 16262 15-1132 151132 Computer, Math
## 16263 15-1142 151142 Computer, Math
## 16264 15-2041 152041 Computer, Math
## 16265 15-1199 151199 Computer, Math
## 16266 11-3021 113021 Management
## 16267 15-1132 151132 Computer, Math
## 16268 11-3031 113031 Management
## 16269 15-1132 151132 Computer, Math
## 16270 15-1121 151121 Computer, Math
## 16271 15-1132 151132 Computer, Math
## 16272 15-1131 151131 Computer, Math
## 16273 15-1121 151121 Computer, Math
## 16274 15-1132 151132 Computer, Math
## 16275 15-1132 151132 Computer, Math
## 16276 13-2099 132099 Business, Finance
## 16277 15-1035 151035 Computer, Math
## 16278 15-1121 151121 Computer, Math
## 16279 13-1161 131161 Business, Finance
## 16280 15-2041 152041 Computer, Math
## 16281 15-1132 151132 Computer, Math
## 16282 15-1132 151132 Computer, Math
## 16283 13-2011 132011 Business, Finance
## 16284 11-2021 112021 Management
## 16285 15-1132 151132 Computer, Math
## 16286 15-1121 151121 Computer, Math
## 16287 15-1131 151131 Computer, Math
## 16288 15-1132 151132 Computer, Math
## 16289 13-2051 132051 Business, Finance
## 16290 15-1132 151132 Computer, Math
## 16291 15-1132 151132 Computer, Math
## 16292 15-1121 151121 Computer, Math
## 16293 13-1151 131151 Business, Finance
## 16294 15-1132 151132 Computer, Math
## 16295 15-1132 151132 Computer, Math
## 16296 15-1132 151132 Computer, Math
## 16297 15-1132 151132 Computer, Math
## 16298 15-1121 151121 Computer, Math
## 16299 15-1132 151132 Computer, Math
## 16300 15-1131 151131 Computer, Math
## 16301 19-2031 192031 Life, Physcial, Social Science
## 16302 15-1121 151121 Computer, Math
## 16303 15-2031 152031 Computer, Math
## 16304 13-1161 131161 Business, Finance
## 16305 15-2041 152041 Computer, Math
## 16306 17-2072 172072 Architecture, Engineer
## 16307 17-2051 172051 Architecture, Engineer
## 16308 41-9031 419031 Sales
## 16309 15-1132 151132 Computer, Math
## 16310 15-2031 152031 Computer, Math
## 16311 15-1121 151121 Computer, Math
## 16312 15-1121 151121 Computer, Math
## 16313 17-2141 172141 Architecture, Engineer
## 16314 25-2021 252021 Education, Training
## 16315 15-1142 151142 Computer, Math
## 16316 15-1132 151132 Computer, Math
## 16317 15-1133 151133 Computer, Math
## 16318 15-1132 151132 Computer, Math
## 16319 15-1199 151199 Computer, Math
## 16320 17-2071 172071 Architecture, Engineer
## 16321 15-1199 151199 Computer, Math
## 16322 15-1132 151132 Computer, Math
## 16323 27-1024 271024 Media, Design
## 16324 15-1199 151199 Computer, Math
## 16325 15-1132 151132 Computer, Math
## 16326 15-1133 151133 Computer, Math
## 16327 15-1121 151121 Computer, Math
## 16328 15-1121 151121 Computer, Math
## 16329 15-1132 151132 Computer, Math
## 16330 15-1199 151199 Computer, Math
## 16331 15-1132 151132 Computer, Math
## 16332 15-1141 151141 Computer, Math
## 16333 15-1132 151132 Computer, Math
## 16334 15-1132 151132 Computer, Math
## 16335 19-1042 191042 Life, Physcial, Social Science
## 16336 13-2011 132011 Business, Finance
## 16337 19-2042 192042 Life, Physcial, Social Science
## 16338 13-2011 132011 Business, Finance
## 16339 15-1034 151034 Computer, Math
## 16340 19-2012 192012 Life, Physcial, Social Science
## 16341 15-1199 151199 Computer, Math
## 16342 15-1132 151132 Computer, Math
## 16343 11-1021 111021 Management
## 16344 27-2012 272012 Media, Design
## 16345 15-1132 151132 Computer, Math
## 16346 13-2051 132051 Business, Finance
## 16347 17-2051 172051 Architecture, Engineer
## 16348 15-1199 151199 Computer, Math
## 16349 13-2051 132051 Business, Finance
## 16350 11-1021 111021 Management
## 16351 15-1199 151199 Computer, Math
## 16352 15-1132 151132 Computer, Math
## 16353 17-2112 172112 Architecture, Engineer
## 16354 17-2051 172051 Architecture, Engineer
## 16355 15-1132 151132 Computer, Math
## 16356 13-1161 131161 Business, Finance
## 16357 15-1132 151132 Computer, Math
## 16358 15-1133 151133 Computer, Math
## 16359 15-1142 151142 Computer, Math
## 16360 17-2141 172141 Architecture, Engineer
## 16361 15-1199 151199 Computer, Math
## 16362 15-1134 151134 Computer, Math
## 16363 15-1121 151121 Computer, Math
## 16364 15-2031 152031 Computer, Math
## 16365 13-1111 131111 Business, Finance
## 16366 15-1199 151199 Computer, Math
## 16367 15-1132 151132 Computer, Math
## 16368 15-2031 152031 Computer, Math
## 16369 15-1142 151142 Computer, Math
## 16370 15-1121 151121 Computer, Math
## 16371 17-2071 172071 Architecture, Engineer
## 16372 15-1199 151199 Computer, Math
## 16373 15-1121 151121 Computer, Math
## 16374 15-1132 151132 Computer, Math
## 16375 15-1121 151121 Computer, Math
## 16376 19-1042 191042 Life, Physcial, Social Science
## 16377 17-2141 172141 Architecture, Engineer
## 16378 29-1123 291123 Healthcare Practitioner
## 16379 17-2112 172112 Architecture, Engineer
## 16380 13-1111 131111 Business, Finance
## 16381 15-1132 151132 Computer, Math
## 16382 15-1131 151131 Computer, Math
## 16383 15-1132 151132 Computer, Math
## 16384 15-1133 151133 Computer, Math
## 16385 15-1132 151132 Computer, Math
## 16386 27-3031 273031 Media, Design
## 16387 13-1041 131041 Business, Finance
## 16388 15-1143 151143 Computer, Math
## 16389 15-1131 151131 Computer, Math
## 16390 15-1121 151121 Computer, Math
## 16391 15-1131 151131 Computer, Math
## 16392 15-1133 151133 Computer, Math
## 16393 15-2041 152041 Computer, Math
## 16394 15-1132 151132 Computer, Math
## 16395 15-1199 151199 Computer, Math
## 16396 15-1132 151132 Computer, Math
## 16397 15-1132 151132 Computer, Math
## 16398 15-1121 151121 Computer, Math
## 16399 25-1071 251071 Education, Training
## 16400 19-1021 191021 Life, Physcial, Social Science
## 16401 15-1132 151132 Computer, Math
## 16402 15-1132 151132 Computer, Math
## 16403 13-1111 131111 Business, Finance
## 16404 15-1132 151132 Computer, Math
## 16405 15-1132 151132 Computer, Math
## 16406 25-1071 251071 Education, Training
## 16407 15-1132 151132 Computer, Math
## 16408 29-1069 291069 Healthcare Practitioner
## 16409 15-1141 151141 Computer, Math
## 16410 29-1066 291066 Healthcare Practitioner
## 16411 13-2011 132011 Business, Finance
## 16412 15-1133 151133 Computer, Math
## 16413 15-1132 151132 Computer, Math
## 16414 15-1111 151111 Computer, Math
## 16415 13-2051 132051 Business, Finance
## 16416 29-1069 291069 Healthcare Practitioner
## 16417 15-1121 151121 Computer, Math
## 16418 17-2141 172141 Architecture, Engineer
## 16419 25-3099 253099 Education, Training
## 16420 15-1199 151199 Computer, Math
## 16421 15-1199 151199 Computer, Math
## 16422 15-1142 151142 Computer, Math
## 16423 15-1121 151121 Computer, Math
## 16424 17-2141 172141 Architecture, Engineer
## 16425 15-1199 151199 Computer, Math
## 16426 27-3022 273022 Media, Design
## 16427 15-1132 151132 Computer, Math
## 16428 17-2199 172199 Architecture, Engineer
## 16429 11-3021 113021 Management
## 16430 11-2022 112022 Management
## 16431 15-1199 151199 Computer, Math
## 16432 15-1132 151132 Computer, Math
## 16433 15-1199 151199 Computer, Math
## 16434 15-1132 151132 Computer, Math
## 16435 13-2011 132011 Business, Finance
## 16436 15-1132 151132 Computer, Math
## 16437 19-1042 191042 Life, Physcial, Social Science
## 16438 19-1041 191041 Life, Physcial, Social Science
## 16439 15-1133 151133 Computer, Math
## 16440 15-1132 151132 Computer, Math
## 16441 15-1132 151132 Computer, Math
## 16442 15-1133 151133 Computer, Math
## 16443 15-1132 151132 Computer, Math
## 16444 15-1132 151132 Computer, Math
## 16445 15-1199 151199 Computer, Math
## 16446 15-1199 151199 Computer, Math
## 16447 15-1134 151134 Computer, Math
## 16448 17-2072 172072 Architecture, Engineer
## 16449 17-2071 172071 Architecture, Engineer
## 16450 15-1121 151121 Computer, Math
## 16451 15-1121 151121 Computer, Math
## 16452 23-1011 231011 Legal
## 16453 15-1132 151132 Computer, Math
## 16454 15-1142 151142 Computer, Math
## 16455 15-1132 151132 Computer, Math
## 16456 15-2041 152041 Computer, Math
## 16457 13-2031 132031 Business, Finance
## 16458 15-1121 151121 Computer, Math
## 16459 15-1132 151132 Computer, Math
## 16460 15-1132 151132 Computer, Math
## 16461 15-1132 151132 Computer, Math
## 16462 13-1161 131161 Business, Finance
## 16463 15-1121 151121 Computer, Math
## 16464 13-1111 131111 Business, Finance
## 16465 15-1131 151131 Computer, Math
## 16466 13-2051 132051 Business, Finance
## 16467 15-1132 151132 Computer, Math
## 16468 15-1132 151132 Computer, Math
## 16469 11-2021 112021 Management
## 16470 15-1142 151142 Computer, Math
## 16471 11-9021 119021 Management
## 16472 15-1121 151121 Computer, Math
## 16473 13-2051 132051 Business, Finance
## 16474 15-1131 151131 Computer, Math
## 16475 15-1199 151199 Computer, Math
## 16476 13-2051 132051 Business, Finance
## 16477 15-1199 151199 Computer, Math
## 16478 15-1133 151133 Computer, Math
## 16479 15-1132 151132 Computer, Math
## 16480 15-1199 151199 Computer, Math
## 16481 15-2031 152031 Computer, Math
## 16482 15-1121 151121 Computer, Math
## 16483 25-2051 252051 Education, Training
## 16484 27-1022 271022 Media, Design
## 16485 15-2031 152031 Computer, Math
## 16486 15-1199 151199 Computer, Math
## 16487 15-1132 151132 Computer, Math
## 16488 15-1132 151132 Computer, Math
## 16489 11-2021 112021 Management
## 16490 15-1199 151199 Computer, Math
## 16491 15-1121 151121 Computer, Math
## 16492 25-1124 251124 Education, Training
## 16493 15-1199 151199 Computer, Math
## 16494 15-1121 151121 Computer, Math
## 16495 15-1132 151132 Computer, Math
## 16496 15-1132 151132 Computer, Math
## 16497 15-1132 151132 Computer, Math
## 16498 41-9031 419031 Sales
## 16499 13-2099 132099 Business, Finance
## 16500 15-1132 151132 Computer, Math
## 16501 17-2141 172141 Architecture, Engineer
## 16502 15-1132 151132 Computer, Math
## 16503 15-1132 151132 Computer, Math
## 16504 27-3031 273031 Media, Design
## 16505 15-1121 151121 Computer, Math
## 16506 15-1121 151121 Computer, Math
## 16507 15-1132 151132 Computer, Math
## 16508 15-1199 151199 Computer, Math
## 16509 15-1143 151143 Computer, Math
## 16510 15-1122 151122 Computer, Math
## 16511 15-1141 151141 Computer, Math
## 16512 15-1132 151132 Computer, Math
## 16513 19-4061 194061 Life, Physcial, Social Science
## 16514 25-1121 251121 Education, Training
## 16515 15-1132 151132 Computer, Math
## 16516 25-1071 251071 Education, Training
## 16517 15-1142 151142 Computer, Math
## 16518 17-2141 172141 Architecture, Engineer
## 16519 15-1121 151121 Computer, Math
## 16520 15-1131 151131 Computer, Math
## 16521 19-1042 191042 Life, Physcial, Social Science
## 16522 11-2021 112021 Management
## 16523 15-1132 151132 Computer, Math
## 16524 11-3031 113031 Management
## 16525 15-1132 151132 Computer, Math
## 16526 15-1132 151132 Computer, Math
## 16527 15-1132 151132 Computer, Math
## 16528 15-1132 151132 Computer, Math
## 16529 15-1131 151131 Computer, Math
## 16530 13-1111 131111 Business, Finance
## 16531 15-1132 151132 Computer, Math
## 16532 15-1132 151132 Computer, Math
## 16533 17-2072 172072 Architecture, Engineer
## 16534 15-1132 151132 Computer, Math
## 16535 15-1132 151132 Computer, Math
## 16536 17-1012 171012 Architecture, Engineer
## 16537 15-1132 151132 Computer, Math
## 16538 15-1121 151121 Computer, Math
## 16539 15-1132 151132 Computer, Math
## 16540 15-1199 151199 Computer, Math
## 16541 15-1132 151132 Computer, Math
## 16542 15-2031 152031 Computer, Math
## 16543 15-1121 151121 Computer, Math
## 16544 11-3021 113021 Management
## 16545 17-2141 172141 Architecture, Engineer
## 16546 15-1132 151132 Computer, Math
## 16547 13-1041 131041 Business, Finance
## 16548 15-1121 151121 Computer, Math
## 16549 15-1199 151199 Computer, Math
## 16550 15-1131 151131 Computer, Math
## 16551 15-1132 151132 Computer, Math
## 16552 15-1122 151122 Computer, Math
## 16553 15-1143 151143 Computer, Math
## 16554 13-1111 131111 Business, Finance
## 16555 15-1132 151132 Computer, Math
## 16556 13-1071 131071 Business, Finance
## 16557 13-1111 131111 Business, Finance
## 16558 15-1132 151132 Computer, Math
## 16559 17-2072 172072 Architecture, Engineer
## 16560 15-1121 151121 Computer, Math
## 16561 15-1132 151132 Computer, Math
## 16562 15-2041 152041 Computer, Math
## 16563 15-1121 151121 Computer, Math
## 16564 15-1132 151132 Computer, Math
## 16565 17-2051 172051 Architecture, Engineer
## 16566 15-1132 151132 Computer, Math
## 16567 15-1152 151152 Computer, Math
## 16568 15-1132 151132 Computer, Math
## 16569 15-1132 151132 Computer, Math
## 16570 15-1121 151121 Computer, Math
## 16571 17-2031 172031 Architecture, Engineer
## 16572 25-2021 252021 Education, Training
## 16573 15-1132 151132 Computer, Math
## 16574 15-1131 151131 Computer, Math
## 16575 15-1134 151134 Computer, Math
## 16576 11-9199 119199 Management
## 16577 15-1131 151131 Computer, Math
## 16578 13-1071 131071 Business, Finance
## 16579 29-1069 291069 Healthcare Practitioner
## 16580 13-1111 131111 Business, Finance
## 16581 15-1132 151132 Computer, Math
## 16582 15-1132 151132 Computer, Math
## 16583 15-1141 151141 Computer, Math
## 16584 15-1132 151132 Computer, Math
## 16585 15-1121 151121 Computer, Math
## 16586 15-1132 151132 Computer, Math
## 16587 15-1132 151132 Computer, Math
## 16588 15-2031 152031 Computer, Math
## 16589 15-1142 151142 Computer, Math
## 16590 15-1199 151199 Computer, Math
## 16591 15-1199 151199 Computer, Math
## 16592 15-1132 151132 Computer, Math
## 16593 15-1132 151132 Computer, Math
## 16594 17-2199 172199 Architecture, Engineer
## 16595 17-2199 172199 Architecture, Engineer
## 16596 15-1132 151132 Computer, Math
## 16597 15-1132 151132 Computer, Math
## 16598 15-1132 151132 Computer, Math
## 16599 15-1132 151132 Computer, Math
## 16600 15-1133 151133 Computer, Math
## 16601 15-1132 151132 Computer, Math
## 16602 15-1121 151121 Computer, Math
## 16603 15-1132 151132 Computer, Math
## 16604 17-2071 172071 Architecture, Engineer
## 16605 15-1132 151132 Computer, Math
## 16606 15-1132 151132 Computer, Math
## 16607 13-2051 132051 Business, Finance
## 16608 15-1132 151132 Computer, Math
## 16609 15-1199 151199 Computer, Math
## 16610 15-1132 151132 Computer, Math
## 16611 29-1125 291125 Healthcare Practitioner
## 16612 15-1132 151132 Computer, Math
## 16613 15-1199 151199 Computer, Math
## 16614 41-9031 419031 Sales
## 16615 15-1121 151121 Computer, Math
## 16616 15-2041 152041 Computer, Math
## 16617 15-1121 151121 Computer, Math
## 16618 15-1142 151142 Computer, Math
## 16619 15-1132 151132 Computer, Math
## 16620 13-2011 132011 Business, Finance
## 16621 15-1143 151143 Computer, Math
## 16622 15-1132 151132 Computer, Math
## 16623 15-1199 151199 Computer, Math
## 16624 15-1133 151133 Computer, Math
## 16625 15-1143 151143 Computer, Math
## 16626 15-1132 151132 Computer, Math
## 16627 11-2021 112021 Management
## 16628 15-1121 151121 Computer, Math
## 16629 13-2011 132011 Business, Finance
## 16630 15-1199 151199 Computer, Math
## 16631 15-1133 151133 Computer, Math
## 16632 15-1132 151132 Computer, Math
## 16633 29-1066 291066 Healthcare Practitioner
## 16634 13-2099 132099 Business, Finance
## 16635 13-1111 131111 Business, Finance
## 16636 15-1131 151131 Computer, Math
## 16637 15-1131 151131 Computer, Math
## 16638 15-1133 151133 Computer, Math
## 16639 15-1131 151131 Computer, Math
## 16640 15-1199 151199 Computer, Math
## 16641 15-1132 151132 Computer, Math
## 16642 15-1121 151121 Computer, Math
## 16643 15-1133 151133 Computer, Math
## 16644 15-1131 151131 Computer, Math
## 16645 13-2099 132099 Business, Finance
## 16646 15-1121 151121 Computer, Math
## 16647 17-2112 172112 Architecture, Engineer
## 16648 15-1132 151132 Computer, Math
## 16649 15-1133 151133 Computer, Math
## 16650 15-1133 151133 Computer, Math
## 16651 15-1199 151199 Computer, Math
## 16652 13-1161 131161 Business, Finance
## 16653 15-1132 151132 Computer, Math
## 16654 15-1132 151132 Computer, Math
## 16655 15-1132 151132 Computer, Math
## 16656 29-1021 291021 Healthcare Practitioner
## 16657 15-1199 151199 Computer, Math
## 16658 15-1121 151121 Computer, Math
## 16659 15-1132 151132 Computer, Math
## 16660 11-3031 113031 Management
## 16661 15-1132 151132 Computer, Math
## 16662 15-1121 151121 Computer, Math
## 16663 15-1121 151121 Computer, Math
## 16664 15-2031 152031 Computer, Math
## 16665 41-9031 419031 Sales
## 16666 15-2031 152031 Computer, Math
## 16667 15-1121 151121 Computer, Math
## 16668 13-2051 132051 Business, Finance
## 16669 15-1121 151121 Computer, Math
## 16670 15-1133 151133 Computer, Math
## 16671 15-1199 151199 Computer, Math
## 16672 15-1131 151131 Computer, Math
## 16673 15-1131 151131 Computer, Math
## 16674 29-1069 291069 Healthcare Practitioner
## 16675 27-1029 271029 Media, Design
## 16676 27-1014 271014 Media, Design
## 16677 15-1131 151131 Computer, Math
## 16678 15-1132 151132 Computer, Math
## 16679 15-1132 151132 Computer, Math
## 16680 15-1199 151199 Computer, Math
## 16681 15-1132 151132 Computer, Math
## 16682 15-1121 151121 Computer, Math
## 16683 15-1133 151133 Computer, Math
## 16684 17-2141 172141 Architecture, Engineer
## 16685 15-1132 151132 Computer, Math
## 16686 15-1199 151199 Computer, Math
## 16687 15-1132 151132 Computer, Math
## 16688 27-1014 271014 Media, Design
## 16689 15-1132 151132 Computer, Math
## 16690 15-1121 151121 Computer, Math
## 16691 17-2071 172071 Architecture, Engineer
## 16692 15-2031 152031 Computer, Math
## 16693 15-1133 151133 Computer, Math
## 16694 15-1121 151121 Computer, Math
## 16695 29-1051 291051 Healthcare Practitioner
## 16696 15-1132 151132 Computer, Math
## 16697 15-1132 151132 Computer, Math
## 16698 27-1021 271021 Media, Design
## 16699 25-1021 251021 Education, Training
## 16700 15-1121 151121 Computer, Math
## 16701 15-1133 151133 Computer, Math
## 16702 15-1132 151132 Computer, Math
## 16703 13-1111 131111 Business, Finance
## 16704 15-1133 151133 Computer, Math
## 16705 15-1132 151132 Computer, Math
## 16706 29-1123 291123 Healthcare Practitioner
## 16707 19-1099 191099 Life, Physcial, Social Science
## 16708 13-2041 132041 Business, Finance
## 16709 15-1132 151132 Computer, Math
## 16710 15-1132 151132 Computer, Math
## 16711 23-1011 231011 Legal
## 16712 13-1111 131111 Business, Finance
## 16713 15-1132 151132 Computer, Math
## 16714 15-1121 151121 Computer, Math
## 16715 29-1069 291069 Healthcare Practitioner
## 16716 13-2051 132051 Business, Finance
## 16717 15-1199 151199 Computer, Math
## 16718 15-1121 151121 Computer, Math
## 16719 15-1132 151132 Computer, Math
## 16720 15-1132 151132 Computer, Math
## 16721 15-1121 151121 Computer, Math
## 16722 15-1133 151133 Computer, Math
## 16723 15-1133 151133 Computer, Math
## 16724 15-1132 151132 Computer, Math
## 16725 13-2011 132011 Business, Finance
## 16726 15-1132 151132 Computer, Math
## 16727 13-2011 132011 Business, Finance
## 16728 15-1199 151199 Computer, Math
## 16729 15-1143 151143 Computer, Math
## 16730 15-1199 151199 Computer, Math
## 16731 15-1199 151199 Computer, Math
## 16732 15-1132 151132 Computer, Math
## 16733 15-1132 151132 Computer, Math
## 16734 15-1141 151141 Computer, Math
## 16735 13-1051 131051 Business, Finance
## 16736 15-1132 151132 Computer, Math
## 16737 15-1133 151133 Computer, Math
## 16738 15-1121 151121 Computer, Math
## 16739 15-1132 151132 Computer, Math
## 16740 15-1132 151132 Computer, Math
## 16741 11-9021 119021 Management
## 16742 15-1134 151134 Computer, Math
## 16743 17-3029 173029 Architecture, Engineer
## 16744 19-1029 191029 Life, Physcial, Social Science
## 16745 15-1132 151132 Computer, Math
## 16746 17-2199 172199 Architecture, Engineer
## 16747 15-1132 151132 Computer, Math
## 16748 15-1199 151199 Computer, Math
## 16749 15-1132 151132 Computer, Math
## 16750 15-1142 151142 Computer, Math
## 16751 15-1199 151199 Computer, Math
## 16752 15-1132 151132 Computer, Math
## 16753 13-1081 131081 Business, Finance
## 16754 15-1132 151132 Computer, Math
## 16755 15-1132 151132 Computer, Math
## 16756 15-1132 151132 Computer, Math
## 16757 15-1199 151199 Computer, Math
## 16758 15-1199 151199 Computer, Math
## 16759 15-1133 151133 Computer, Math
## 16760 15-1141 151141 Computer, Math
## 16761 15-1132 151132 Computer, Math
## 16762 15-1199 151199 Computer, Math
## 16763 17-2071 172071 Architecture, Engineer
## 16764 15-1132 151132 Computer, Math
## 16765 13-1161 131161 Business, Finance
## 16766 15-1199 151199 Computer, Math
## 16767 15-1141 151141 Computer, Math
## 16768 17-2141 172141 Architecture, Engineer
## 16769 15-1199 151199 Computer, Math
## 16770 15-1132 151132 Computer, Math
## 16771 17-2112 172112 Architecture, Engineer
## 16772 13-2011 132011 Business, Finance
## 16773 15-1132 151132 Computer, Math
## 16774 15-1111 151111 Computer, Math
## 16775 15-1199 151199 Computer, Math
## 16776 15-1199 151199 Computer, Math
## 16777 15-1132 151132 Computer, Math
## 16778 15-1132 151132 Computer, Math
## 16779 15-1132 151132 Computer, Math
## 16780 15-1132 151132 Computer, Math
## 16781 11-3061 113061 Management
## 16782 15-1134 151134 Computer, Math
## 16783 15-1199 151199 Computer, Math
## 16784 17-2072 172072 Architecture, Engineer
## 16785 15-1122 151122 Computer, Math
## 16786 15-1122 151122 Computer, Math
## 16787 15-1132 151132 Computer, Math
## 16788 27-1024 271024 Media, Design
## 16789 15-1199 151199 Computer, Math
## 16790 11-1021 111021 Management
## 16791 15-1132 151132 Computer, Math
## 16792 13-1081 131081 Business, Finance
## 16793 15-1141 151141 Computer, Math
## 16794 13-2099 132099 Business, Finance
## 16795 15-1199 151199 Computer, Math
## 16796 15-1121 151121 Computer, Math
## 16797 15-1133 151133 Computer, Math
## 16798 15-1132 151132 Computer, Math
## 16799 15-1132 151132 Computer, Math
## 16800 15-1133 151133 Computer, Math
## 16801 15-1133 151133 Computer, Math
## 16802 15-1143 151143 Computer, Math
## 16803 15-1142 151142 Computer, Math
## 16804 15-1133 151133 Computer, Math
## 16805 15-1141 151141 Computer, Math
## 16806 19-2032 192032 Life, Physcial, Social Science
## 16807 15-1132 151132 Computer, Math
## 16808 13-2051 132051 Business, Finance
## 16809 15-1141 151141 Computer, Math
## 16810 15-1134 151134 Computer, Math
## 16811 15-1132 151132 Computer, Math
## 16812 15-1131 151131 Computer, Math
## 16813 15-1132 151132 Computer, Math
## 16814 15-1133 151133 Computer, Math
## 16815 15-1152 151152 Computer, Math
## 16816 15-1199 151199 Computer, Math
## 16817 15-1132 151132 Computer, Math
## 16818 15-2041 152041 Computer, Math
## 16819 15-2041 152041 Computer, Math
## 16820 15-1132 151132 Computer, Math
## 16821 27-1024 271024 Media, Design
## 16822 15-1132 151132 Computer, Math
## 16823 15-1121 151121 Computer, Math
## 16824 15-1132 151132 Computer, Math
## 16825 15-1121 151121 Computer, Math
## 16826 15-1132 151132 Computer, Math
## 16827 15-1132 151132 Computer, Math
## 16828 13-2099 132099 Business, Finance
## 16829 15-1121 151121 Computer, Math
## 16830 15-1134 151134 Computer, Math
## 16831 17-2072 172072 Architecture, Engineer
## 16832 15-1132 151132 Computer, Math
## 16833 15-1132 151132 Computer, Math
## 16834 15-1199 151199 Computer, Math
## 16835 15-1121 151121 Computer, Math
## 16836 13-1023 131023 Business, Finance
## 16837 19-1021 191021 Life, Physcial, Social Science
## 16838 11-9199 119199 Management
## 16839 15-1121 151121 Computer, Math
## 16840 15-1142 151142 Computer, Math
## 16841 15-1132 151132 Computer, Math
## 16842 15-1132 151132 Computer, Math
## 16843 15-1132 151132 Computer, Math
## 16844 15-1132 151132 Computer, Math
## 16845 25-1011 251011 Education, Training
## 16846 15-1199 151199 Computer, Math
## 16847 15-1133 151133 Computer, Math
## 16848 15-1132 151132 Computer, Math
## 16849 15-1132 151132 Computer, Math
## 16850 25-1071 251071 Education, Training
## 16851 11-9151 119151 Management
## 16852 11-9121 119121 Management
## 16853 13-2051 132051 Business, Finance
## 16854 13-2051 132051 Business, Finance
## 16855 15-1132 151132 Computer, Math
## 16856 15-1132 151132 Computer, Math
## 16857 15-1199 151199 Computer, Math
## 16858 15-1121 151121 Computer, Math
## 16859 15-1121 151121 Computer, Math
## 16860 19-2031 192031 Life, Physcial, Social Science
## 16861 15-1121 151121 Computer, Math
## 16862 15-1121 151121 Computer, Math
## 16863 15-1132 151132 Computer, Math
## 16864 15-1121 151121 Computer, Math
## 16865 29-1069 291069 Healthcare Practitioner
## 16866 15-1199 151199 Computer, Math
## 16867 13-1111 131111 Business, Finance
## 16868 15-1132 151132 Computer, Math
## 16869 15-1199 151199 Computer, Math
## 16870 15-1132 151132 Computer, Math
## 16871 15-1199 151199 Computer, Math
## 16872 15-2031 152031 Computer, Math
## 16873 15-1133 151133 Computer, Math
## 16874 15-1131 151131 Computer, Math
## 16875 15-1121 151121 Computer, Math
## 16876 15-1133 151133 Computer, Math
## 16877 15-1121 151121 Computer, Math
## 16878 15-1132 151132 Computer, Math
## 16879 15-1121 151121 Computer, Math
## 16880 15-1141 151141 Computer, Math
## 16881 15-1121 151121 Computer, Math
## 16882 27-2042 272042 Media, Design
## 16883 19-1042 191042 Life, Physcial, Social Science
## 16884 15-1131 151131 Computer, Math
## 16885 17-2199 172199 Architecture, Engineer
## 16886 15-1132 151132 Computer, Math
## 16887 15-1111 151111 Computer, Math
## 16888 11-2021 112021 Management
## 16889 11-3131 113131 Management
## 16890 15-1199 151199 Computer, Math
## 16891 19-1042 191042 Life, Physcial, Social Science
## 16892 15-1132 151132 Computer, Math
## 16893 13-1031 131031 Business, Finance
## 16894 15-1132 151132 Computer, Math
## 16895 13-2099 132099 Business, Finance
## 16896 13-1111 131111 Business, Finance
## 16897 15-1199 151199 Computer, Math
## 16898 15-1133 151133 Computer, Math
## 16899 13-2071 132071 Business, Finance
## 16900 15-1131 151131 Computer, Math
## 16901 11-3021 113021 Management
## 16902 29-1051 291051 Healthcare Practitioner
## 16903 15-1132 151132 Computer, Math
## 16904 15-2011 152011 Computer, Math
## 16905 19-3011 193011 Life, Physcial, Social Science
## 16906 15-1132 151132 Computer, Math
## 16907 15-2031 152031 Computer, Math
## 16908 15-2031 152031 Computer, Math
## 16909 13-1161 131161 Business, Finance
## 16910 15-1132 151132 Computer, Math
## 16911 15-1133 151133 Computer, Math
## 16912 15-1132 151132 Computer, Math
## 16913 15-1132 151132 Computer, Math
## 16914 15-1131 151131 Computer, Math
## 16915 15-1132 151132 Computer, Math
## 16916 17-2141 172141 Architecture, Engineer
## 16917 15-1132 151132 Computer, Math
## 16918 15-1122 151122 Computer, Math
## 16919 15-1134 151134 Computer, Math
## 16920 15-1131 151131 Computer, Math
## 16921 15-2031 152031 Computer, Math
## 16922 15-1121 151121 Computer, Math
## 16923 17-2141 172141 Architecture, Engineer
## 16924 13-2011 132011 Business, Finance
## 16925 13-2052 132052 Business, Finance
## 16926 15-1132 151132 Computer, Math
## 16927 15-1132 151132 Computer, Math
## 16928 15-1121 151121 Computer, Math
## 16929 15-1132 151132 Computer, Math
## 16930 13-2051 132051 Business, Finance
## 16931 17-2071 172071 Architecture, Engineer
## 16932 27-1021 271021 Media, Design
## 16933 41-9031 419031 Sales
## 16934 25-1066 251066 Education, Training
## 16935 13-2051 132051 Business, Finance
## 16936 13-1111 131111 Business, Finance
## 16937 17-2141 172141 Architecture, Engineer
## 16938 15-1132 151132 Computer, Math
## 16939 15-1132 151132 Computer, Math
## 16940 15-1132 151132 Computer, Math
## 16941 15-1121 151121 Computer, Math
## 16942 15-2041 152041 Computer, Math
## 16943 13-2051 132051 Business, Finance
## 16944 17-2112 172112 Architecture, Engineer
## 16945 15-1132 151132 Computer, Math
## 16946 15-1141 151141 Computer, Math
## 16947 15-1121 151121 Computer, Math
## 16948 15-1132 151132 Computer, Math
## 16949 13-1161 131161 Business, Finance
## 16950 15-1121 151121 Computer, Math
## 16951 17-1011 171011 Architecture, Engineer
## 16952 15-1132 151132 Computer, Math
## 16953 17-2072 172072 Architecture, Engineer
## 16954 11-9199 119199 Management
## 16955 15-1199 151199 Computer, Math
## 16956 15-1121 151121 Computer, Math
## 16957 15-1131 151131 Computer, Math
## 16958 19-2031 192031 Life, Physcial, Social Science
## 16959 15-1199 151199 Computer, Math
## 16960 15-1132 151132 Computer, Math
## 16961 15-1132 151132 Computer, Math
## 16962 15-1122 151122 Computer, Math
## 16963 15-1141 151141 Computer, Math
## 16964 15-2041 152041 Computer, Math
## 16965 15-1199 151199 Computer, Math
## 16966 15-2041 152041 Computer, Math
## 16967 13-1111 131111 Business, Finance
## 16968 15-1132 151132 Computer, Math
## 16969 15-1121 151121 Computer, Math
## 16970 15-1132 151132 Computer, Math
## 16971 15-1132 151132 Computer, Math
## 16972 15-2031 152031 Computer, Math
## 16973 15-1121 151121 Computer, Math
## 16974 15-1121 151121 Computer, Math
## 16975 17-2074 172074 Architecture, Engineer
## 16976 15-1199 151199 Computer, Math
## 16977 15-2031 152031 Computer, Math
## 16978 15-1132 151132 Computer, Math
## 16979 15-1199 151199 Computer, Math
## 16980 13-2011 132011 Business, Finance
## 16981 11-9013 119013 Management
## 16982 15-1132 151132 Computer, Math
## 16983 13-1111 131111 Business, Finance
## 16984 15-1111 151111 Computer, Math
## 16985 13-2011 132011 Business, Finance
## 16986 13-1111 131111 Business, Finance
## 16987 19-3011 193011 Life, Physcial, Social Science
## 16988 15-1132 151132 Computer, Math
## 16989 15-1199 151199 Computer, Math
## 16990 15-1199 151199 Computer, Math
## 16991 15-1131 151131 Computer, Math
## 16992 15-1132 151132 Computer, Math
## 16993 15-1132 151132 Computer, Math
## 16994 15-1131 151131 Computer, Math
## 16995 15-1132 151132 Computer, Math
## 16996 15-1131 151131 Computer, Math
## 16997 19-2031 192031 Life, Physcial, Social Science
## 16998 13-1081 131081 Business, Finance
## 16999 15-1199 151199 Computer, Math
## 17000 13-1111 131111 Business, Finance
## 17001 13-2051 132051 Business, Finance
## 17002 15-1141 151141 Computer, Math
## 17003 15-1122 151122 Computer, Math
## 17004 13-2011 132011 Business, Finance
## 17005 17-2141 172141 Architecture, Engineer
## 17006 27-1022 271022 Media, Design
## 17007 39-9032 399032 Others
## 17008 11-3021 113021 Management
## 17009 15-1132 151132 Computer, Math
## 17010 15-1199 151199 Computer, Math
## 17011 13-1111 131111 Business, Finance
## 17012 15-1132 151132 Computer, Math
## 17013 19-4061 194061 Life, Physcial, Social Science
## 17014 19-1042 191042 Life, Physcial, Social Science
## 17015 15-1121 151121 Computer, Math
## 17016 17-2041 172041 Architecture, Engineer
## 17017 15-1132 151132 Computer, Math
## 17018 15-1132 151132 Computer, Math
## 17019 15-1132 151132 Computer, Math
## 17020 15-1199 151199 Computer, Math
## 17021 15-1132 151132 Computer, Math
## 17022 15-1142 151142 Computer, Math
## 17023 15-1199 151199 Computer, Math
## 17024 15-1133 151133 Computer, Math
## 17025 15-1132 151132 Computer, Math
## 17026 41-3099 413099 Sales
## 17027 15-1121 151121 Computer, Math
## 17028 15-1132 151132 Computer, Math
## 17029 15-1199 151199 Computer, Math
## 17030 15-1121 151121 Computer, Math
## 17031 27-1024 271024 Media, Design
## 17032 15-1132 151132 Computer, Math
## 17033 15-1131 151131 Computer, Math
## 17034 13-1111 131111 Business, Finance
## 17035 13-2051 132051 Business, Finance
## 17036 15-1199 151199 Computer, Math
## 17037 15-1132 151132 Computer, Math
## 17038 13-2061 132061 Business, Finance
## 17039 13-2051 132051 Business, Finance
## 17040 15-1121 151121 Computer, Math
## 17041 15-1141 151141 Computer, Math
## 17042 29-1123 291123 Healthcare Practitioner
## 17043 15-1133 151133 Computer, Math
## 17044 29-1063 291063 Healthcare Practitioner
## 17045 15-2041 152041 Computer, Math
## 17046 17-2112 172112 Architecture, Engineer
## 17047 15-1132 151132 Computer, Math
## 17048 15-1199 151199 Computer, Math
## 17049 13-2051 132051 Business, Finance
## 17050 17-2071 172071 Architecture, Engineer
## 17051 15-1199 151199 Computer, Math
## 17052 29-1066 291066 Healthcare Practitioner
## 17053 11-3061 113061 Management
## 17054 15-2031 152031 Computer, Math
## 17055 15-2031 152031 Computer, Math
## 17056 15-1132 151132 Computer, Math
## 17057 13-1111 131111 Business, Finance
## 17058 29-1021 291021 Healthcare Practitioner
## 17059 15-1121 151121 Computer, Math
## 17060 15-1121 151121 Computer, Math
## 17061 13-1111 131111 Business, Finance
## 17062 11-3021 113021 Management
## 17063 15-1199 151199 Computer, Math
## 17064 15-1132 151132 Computer, Math
## 17065 15-1121 151121 Computer, Math
## 17066 15-1121 151121 Computer, Math
## 17067 15-1132 151132 Computer, Math
## 17068 17-2199 172199 Architecture, Engineer
## 17069 17-2199 172199 Architecture, Engineer
## 17070 15-1133 151133 Computer, Math
## 17071 11-9121 119121 Management
## 17072 13-2011 132011 Business, Finance
## 17073 13-2051 132051 Business, Finance
## 17074 25-1021 251021 Education, Training
## 17075 15-1199 151199 Computer, Math
## 17076 15-1132 151132 Computer, Math
## 17077 15-1141 151141 Computer, Math
## 17078 15-1132 151132 Computer, Math
## 17079 13-2011 132011 Business, Finance
## 17080 13-1161 131161 Business, Finance
## 17081 15-1132 151132 Computer, Math
## 17082 15-1131 151131 Computer, Math
## 17083 15-1121 151121 Computer, Math
## 17084 15-1199 151199 Computer, Math
## 17085 15-1122 151122 Computer, Math
## 17086 15-1132 151132 Computer, Math
## 17087 15-1131 151131 Computer, Math
## 17088 17-2072 172072 Architecture, Engineer
## 17089 15-1132 151132 Computer, Math
## 17090 15-1133 151133 Computer, Math
## 17091 15-1121 151121 Computer, Math
## 17092 15-1132 151132 Computer, Math
## 17093 15-1121 151121 Computer, Math
## 17094 15-1131 151131 Computer, Math
## 17095 15-1142 151142 Computer, Math
## 17096 11-9199 119199 Management
## 17097 19-2031 192031 Life, Physcial, Social Science
## 17098 15-1132 151132 Computer, Math
## 17099 15-2041 152041 Computer, Math
## 17100 15-1132 151132 Computer, Math
## 17101 15-1121 151121 Computer, Math
## 17102 17-2051 172051 Architecture, Engineer
## 17103 15-1132 151132 Computer, Math
## 17104 15-1132 151132 Computer, Math
## 17105 15-1199 151199 Computer, Math
## 17106 13-2051 132051 Business, Finance
## 17107 19-1021 191021 Life, Physcial, Social Science
## 17108 23-2099 232099 Legal
## 17109 15-1132 151132 Computer, Math
## 17110 17-3011 173011 Architecture, Engineer
## 17111 15-1199 151199 Computer, Math
## 17112 17-2061 172061 Architecture, Engineer
## 17113 15-2031 152031 Computer, Math
## 17114 15-1132 151132 Computer, Math
## 17115 19-1042 191042 Life, Physcial, Social Science
## 17116 15-1132 151132 Computer, Math
## 17117 15-1132 151132 Computer, Math
## 17118 17-2072 172072 Architecture, Engineer
## 17119 15-1199 151199 Computer, Math
## 17120 15-1121 151121 Computer, Math
## 17121 15-1132 151132 Computer, Math
## 17122 15-1132 151132 Computer, Math
## 17123 15-1132 151132 Computer, Math
## 17124 15-1142 151142 Computer, Math
## 17125 15-1199 151199 Computer, Math
## 17126 19-1029 191029 Life, Physcial, Social Science
## 17127 15-1121 151121 Computer, Math
## 17128 15-1132 151132 Computer, Math
## 17129 15-1132 151132 Computer, Math
## 17130 17-2031 172031 Architecture, Engineer
## 17131 15-1132 151132 Computer, Math
## 17132 15-1132 151132 Computer, Math
## 17133 29-1171 291171 Healthcare Practitioner
## 17134 25-2021 252021 Education, Training
## 17135 15-1134 151134 Computer, Math
## 17136 15-1132 151132 Computer, Math
## 17137 19-2031 192031 Life, Physcial, Social Science
## 17138 15-1133 151133 Computer, Math
## 17139 15-1132 151132 Computer, Math
## 17140 15-1133 151133 Computer, Math
## 17141 17-2071 172071 Architecture, Engineer
## 17142 15-1132 151132 Computer, Math
## 17143 15-1132 151132 Computer, Math
## 17144 15-1121 151121 Computer, Math
## 17145 15-1132 151132 Computer, Math
## 17146 15-1132 151132 Computer, Math
## 17147 11-9111 119111 Management
## 17148 15-1132 151132 Computer, Math
## 17149 15-1121 151121 Computer, Math
## 17150 15-1121 151121 Computer, Math
## 17151 15-1131 151131 Computer, Math
## 17152 15-1199 151199 Computer, Math
## 17153 11-9041 119041 Management
## 17154 15-1199 151199 Computer, Math
## 17155 15-1121 151121 Computer, Math
## 17156 15-1132 151132 Computer, Math
## 17157 15-1142 151142 Computer, Math
## 17158 25-1063 251063 Education, Training
## 17159 15-1121 151121 Computer, Math
## 17160 15-1132 151132 Computer, Math
## 17161 13-1111 131111 Business, Finance
## 17162 15-1121 151121 Computer, Math
## 17163 15-1132 151132 Computer, Math
## 17164 15-1121 151121 Computer, Math
## 17165 15-1134 151134 Computer, Math
## 17166 15-1199 151199 Computer, Math
## 17167 15-1132 151132 Computer, Math
## 17168 15-1132 151132 Computer, Math
## 17169 27-1024 271024 Media, Design
## 17170 15-1132 151132 Computer, Math
## 17171 15-1132 151132 Computer, Math
## 17172 15-1121 151121 Computer, Math
## 17173 15-1132 151132 Computer, Math
## 17174 15-1121 151121 Computer, Math
## 17175 15-1132 151132 Computer, Math
## 17176 19-2032 192032 Life, Physcial, Social Science
## 17177 15-1142 151142 Computer, Math
## 17178 15-1122 151122 Computer, Math
## 17179 15-1199 151199 Computer, Math
## 17180 15-1199 151199 Computer, Math
## 17181 15-1132 151132 Computer, Math
## 17182 15-1132 151132 Computer, Math
## 17183 15-1134 151134 Computer, Math
## 17184 15-1121 151121 Computer, Math
## 17185 15-1199 151199 Computer, Math
## 17186 15-1199 151199 Computer, Math
## 17187 15-1132 151132 Computer, Math
## 17188 15-1121 151121 Computer, Math
## 17189 15-1121 151121 Computer, Math
## 17190 19-2031 192031 Life, Physcial, Social Science
## 17191 15-1132 151132 Computer, Math
## 17192 15-1132 151132 Computer, Math
## 17193 17-2071 172071 Architecture, Engineer
## 17194 15-1132 151132 Computer, Math
## 17195 27-1014 271014 Media, Design
## 17196 19-1029 191029 Life, Physcial, Social Science
## 17197 13-2051 132051 Business, Finance
## 17198 15-1121 151121 Computer, Math
## 17199 15-1132 151132 Computer, Math
## 17200 15-1132 151132 Computer, Math
## 17201 13-1081 131081 Business, Finance
## 17202 15-1133 151133 Computer, Math
## 17203 13-1111 131111 Business, Finance
## 17204 15-1121 151121 Computer, Math
## 17205 15-1199 151199 Computer, Math
## 17206 15-1132 151132 Computer, Math
## 17207 15-1142 151142 Computer, Math
## 17208 13-1111 131111 Business, Finance
## 17209 15-1199 151199 Computer, Math
## 17210 15-1121 151121 Computer, Math
## 17211 11-1021 111021 Management
## 17212 13-1111 131111 Business, Finance
## 17213 15-1132 151132 Computer, Math
## 17214 25-1032 251032 Education, Training
## 17215 15-1132 151132 Computer, Math
## 17216 15-1111 151111 Computer, Math
## 17217 13-2011 132011 Business, Finance
## 17218 13-2051 132051 Business, Finance
## 17219 13-1111 131111 Business, Finance
## 17220 15-1199 151199 Computer, Math
## 17221 15-1131 151131 Computer, Math
## 17222 15-1132 151132 Computer, Math
## 17223 17-2011 172011 Architecture, Engineer
## 17224 15-1121 151121 Computer, Math
## 17225 25-1032 251032 Education, Training
## 17226 15-1111 151111 Computer, Math
## 17227 17-2199 172199 Architecture, Engineer
## 17228 15-1132 151132 Computer, Math
## 17229 17-2071 172071 Architecture, Engineer
## 17230 11-3021 113021 Management
## 17231 17-2199 172199 Architecture, Engineer
## 17232 15-1132 151132 Computer, Math
## 17233 15-1132 151132 Computer, Math
## 17234 15-1132 151132 Computer, Math
## 17235 15-1132 151132 Computer, Math
## 17236 15-1132 151132 Computer, Math
## 17237 15-1199 151199 Computer, Math
## 17238 15-1132 151132 Computer, Math
## 17239 15-1121 151121 Computer, Math
## 17240 15-1132 151132 Computer, Math
## 17241 15-1142 151142 Computer, Math
## 17242 15-2041 152041 Computer, Math
## 17243 15-1132 151132 Computer, Math
## 17244 25-3021 253021 Education, Training
## 17245 15-1121 151121 Computer, Math
## 17246 13-2011 132011 Business, Finance
## 17247 15-1121 151121 Computer, Math
## 17248 17-2141 172141 Architecture, Engineer
## 17249 15-1132 151132 Computer, Math
## 17250 23-1011 231011 Legal
## 17251 15-1132 151132 Computer, Math
## 17252 13-2051 132051 Business, Finance
## 17253 15-1133 151133 Computer, Math
## 17254 17-2141 172141 Architecture, Engineer
## 17255 11-9121 119121 Management
## 17256 15-2031 152031 Computer, Math
## 17257 13-2011 132011 Business, Finance
## 17258 13-1071 131071 Business, Finance
## 17259 15-1132 151132 Computer, Math
## 17260 15-1121 151121 Computer, Math
## 17261 17-2031 172031 Architecture, Engineer
## 17262 15-1132 151132 Computer, Math
## 17263 15-1199 151199 Computer, Math
## 17264 15-1132 151132 Computer, Math
## 17265 15-1121 151121 Computer, Math
## 17266 15-1132 151132 Computer, Math
## 17267 11-9199 119199 Management
## 17268 29-1065 291065 Healthcare Practitioner
## 17269 15-1133 151133 Computer, Math
## 17270 15-1121 151121 Computer, Math
## 17271 15-1121 151121 Computer, Math
## 17272 17-2031 172031 Architecture, Engineer
## 17273 15-1121 151121 Computer, Math
## 17274 15-1199 151199 Computer, Math
## 17275 19-1042 191042 Life, Physcial, Social Science
## 17276 15-1132 151132 Computer, Math
## 17277 15-1142 151142 Computer, Math
## 17278 15-1132 151132 Computer, Math
## 17279 13-2011 132011 Business, Finance
## 17280 13-1111 131111 Business, Finance
## 17281 15-1132 151132 Computer, Math
## 17282 15-1132 151132 Computer, Math
## 17283 15-1132 151132 Computer, Math
## 17284 15-1199 151199 Computer, Math
## 17285 15-1132 151132 Computer, Math
## 17286 11-3021 113021 Management
## 17287 15-1121 151121 Computer, Math
## 17288 15-1199 151199 Computer, Math
## 17289 15-1199 151199 Computer, Math
## 17290 13-2011 132011 Business, Finance
## 17291 19-1042 191042 Life, Physcial, Social Science
## 17292 15-1132 151132 Computer, Math
## 17293 17-2112 172112 Architecture, Engineer
## 17294 13-1081 131081 Business, Finance
## 17295 17-2072 172072 Architecture, Engineer
## 17296 15-1141 151141 Computer, Math
## 17297 15-1133 151133 Computer, Math
## 17298 15-1199 151199 Computer, Math
## 17299 15-1199 151199 Computer, Math
## 17300 17-2112 172112 Architecture, Engineer
## 17301 15-2031 152031 Computer, Math
## 17302 15-1121 151121 Computer, Math
## 17303 19-1021 191021 Life, Physcial, Social Science
## 17304 17-2141 172141 Architecture, Engineer
## 17305 15-1132 151132 Computer, Math
## 17306 15-1199 151199 Computer, Math
## 17307 27-1014 271014 Media, Design
## 17308 15-1132 151132 Computer, Math
## 17309 19-1012 191012 Life, Physcial, Social Science
## 17310 15-1199 151199 Computer, Math
## 17311 17-3029 173029 Architecture, Engineer
## 17312 15-1121 151121 Computer, Math
## 17313 13-1111 131111 Business, Finance
## 17314 19-1021 191021 Life, Physcial, Social Science
## 17315 15-2021 152021 Computer, Math
## 17316 15-1132 151132 Computer, Math
## 17317 15-1121 151121 Computer, Math
## 17318 15-1132 151132 Computer, Math
## 17319 15-1132 151132 Computer, Math
## 17320 13-2051 132051 Business, Finance
## 17321 15-1132 151132 Computer, Math
## 17322 11-9021 119021 Management
## 17323 15-1133 151133 Computer, Math
## 17324 15-1141 151141 Computer, Math
## 17325 15-1132 151132 Computer, Math
## 17326 15-1132 151132 Computer, Math
## 17327 15-1199 151199 Computer, Math
## 17328 15-1132 151132 Computer, Math
## 17329 15-1132 151132 Computer, Math
## 17330 15-1132 151132 Computer, Math
## 17331 19-2032 192032 Life, Physcial, Social Science
## 17332 15-1132 151132 Computer, Math
## 17333 15-1132 151132 Computer, Math
## 17334 15-1132 151132 Computer, Math
## 17335 15-1122 151122 Computer, Math
## 17336 15-1132 151132 Computer, Math
## 17337 15-1132 151132 Computer, Math
## 17338 19-1021 191021 Life, Physcial, Social Science
## 17339 17-2112 172112 Architecture, Engineer
## 17340 15-1121 151121 Computer, Math
## 17341 15-1132 151132 Computer, Math
## 17342 17-2141 172141 Architecture, Engineer
## 17343 17-3011 173011 Architecture, Engineer
## 17344 15-1121 151121 Computer, Math
## 17345 19-1029 191029 Life, Physcial, Social Science
## 17346 13-1161 131161 Business, Finance
## 17347 15-1132 151132 Computer, Math
## 17348 15-1142 151142 Computer, Math
## 17349 15-1134 151134 Computer, Math
## 17350 15-1132 151132 Computer, Math
## 17351 15-1132 151132 Computer, Math
## 17352 15-1132 151132 Computer, Math
## 17353 15-1132 151132 Computer, Math
## 17354 15-1199 151199 Computer, Math
## 17355 15-1141 151141 Computer, Math
## 17356 15-1132 151132 Computer, Math
## 17357 15-1131 151131 Computer, Math
## 17358 15-1132 151132 Computer, Math
## 17359 15-1121 151121 Computer, Math
## 17360 15-1132 151132 Computer, Math
## 17361 15-1132 151132 Computer, Math
## 17362 25-1071 251071 Education, Training
## 17363 15-1132 151132 Computer, Math
## 17364 15-1132 151132 Computer, Math
## 17365 17-1011 171011 Architecture, Engineer
## 17366 23-1011 231011 Legal
## 17367 15-1132 151132 Computer, Math
## 17368 15-1121 151121 Computer, Math
## 17369 15-1121 151121 Computer, Math
## 17370 15-1131 151131 Computer, Math
## 17371 13-1111 131111 Business, Finance
## 17372 15-1199 151199 Computer, Math
## 17373 11-3021 113021 Management
## 17374 15-2031 152031 Computer, Math
## 17375 15-1199 151199 Computer, Math
## 17376 15-1199 151199 Computer, Math
## 17377 15-1199 151199 Computer, Math
## 17378 15-1121 151121 Computer, Math
## 17379 15-1134 151134 Computer, Math
## 17380 27-1021 271021 Media, Design
## 17381 15-1132 151132 Computer, Math
## 17382 15-1134 151134 Computer, Math
## 17383 15-1132 151132 Computer, Math
## 17384 15-1132 151132 Computer, Math
## 17385 15-1133 151133 Computer, Math
## 17386 15-1132 151132 Computer, Math
## 17387 15-1121 151121 Computer, Math
## 17388 15-1132 151132 Computer, Math
## 17389 15-1132 151132 Computer, Math
## 17390 11-2021 112021 Management
## 17391 15-1121 151121 Computer, Math
## 17392 13-2099 132099 Business, Finance
## 17393 19-4021 194021 Life, Physcial, Social Science
## 17394 15-1132 151132 Computer, Math
## 17395 15-1199 151199 Computer, Math
## 17396 15-1199 151199 Computer, Math
## 17397 15-1132 151132 Computer, Math
## 17398 15-1131 151131 Computer, Math
## 17399 15-1121 151121 Computer, Math
## 17400 15-1132 151132 Computer, Math
## 17401 15-1132 151132 Computer, Math
## 17402 15-1132 151132 Computer, Math
## 17403 15-1121 151121 Computer, Math
## 17404 15-1199 151199 Computer, Math
## 17405 15-1199 151199 Computer, Math
## 17406 13-1161 131161 Business, Finance
## 17407 15-1132 151132 Computer, Math
## 17408 17-2141 172141 Architecture, Engineer
## 17409 15-1121 151121 Computer, Math
## 17410 15-1132 151132 Computer, Math
## 17411 15-1199 151199 Computer, Math
## 17412 15-1121 151121 Computer, Math
## 17413 29-1127 291127 Healthcare Practitioner
## 17414 15-1199 151199 Computer, Math
## 17415 15-1132 151132 Computer, Math
## 17416 15-1121 151121 Computer, Math
## 17417 15-1121 151121 Computer, Math
## 17418 15-1121 151121 Computer, Math
## 17419 15-1132 151132 Computer, Math
## 17420 15-1121 151121 Computer, Math
## 17421 15-1132 151132 Computer, Math
## 17422 21-1021 211021 Social Service
## 17423 15-1121 151121 Computer, Math
## 17424 15-1132 151132 Computer, Math
## 17425 13-1111 131111 Business, Finance
## 17426 15-1132 151132 Computer, Math
## 17427 15-1131 151131 Computer, Math
## 17428 15-1199 151199 Computer, Math
## 17429 15-1199 151199 Computer, Math
## 17430 11-3071 113071 Management
## 17431 15-1133 151133 Computer, Math
## 17432 15-1132 151132 Computer, Math
## 17433 15-1132 151132 Computer, Math
## 17434 15-1199 151199 Computer, Math
## 17435 15-1132 151132 Computer, Math
## 17436 27-1021 271021 Media, Design
## 17437 15-1132 151132 Computer, Math
## 17438 15-1199 151199 Computer, Math
## 17439 17-2112 172112 Architecture, Engineer
## 17440 15-1131 151131 Computer, Math
## 17441 15-1143 151143 Computer, Math
## 17442 15-1132 151132 Computer, Math
## 17443 15-1132 151132 Computer, Math
## 17444 15-1121 151121 Computer, Math
## 17445 15-1142 151142 Computer, Math
## 17446 15-1132 151132 Computer, Math
## 17447 15-1199 151199 Computer, Math
## 17448 17-2051 172051 Architecture, Engineer
## 17449 15-1143 151143 Computer, Math
## 17450 15-1132 151132 Computer, Math
## 17451 27-1021 271021 Media, Design
## 17452 15-1132 151132 Computer, Math
## 17453 15-1131 151131 Computer, Math
## 17454 15-1132 151132 Computer, Math
## 17455 15-1132 151132 Computer, Math
## 17456 29-1069 291069 Healthcare Practitioner
## 17457 15-1131 151131 Computer, Math
## 17458 29-1051 291051 Healthcare Practitioner
## 17459 15-1199 151199 Computer, Math
## 17460 15-1121 151121 Computer, Math
## 17461 15-1121 151121 Computer, Math
## 17462 15-1132 151132 Computer, Math
## 17463 15-1132 151132 Computer, Math
## 17464 15-1132 151132 Computer, Math
## 17465 15-1199 151199 Computer, Math
## 17466 15-1133 151133 Computer, Math
## 17467 11-2021 112021 Management
## 17468 15-1132 151132 Computer, Math
## 17469 15-1142 151142 Computer, Math
## 17470 15-1121 151121 Computer, Math
## 17471 13-1111 131111 Business, Finance
## 17472 15-1132 151132 Computer, Math
## 17473 15-1132 151132 Computer, Math
## 17474 15-1199 151199 Computer, Math
## 17475 15-1132 151132 Computer, Math
## 17476 17-2073 172073 Architecture, Engineer
## 17477 19-2012 192012 Life, Physcial, Social Science
## 17478 15-1142 151142 Computer, Math
## 17479 13-2011 132011 Business, Finance
## 17480 15-1199 151199 Computer, Math
## 17481 15-1132 151132 Computer, Math
## 17482 13-1041 131041 Business, Finance
## 17483 25-1054 251054 Education, Training
## 17484 15-1133 151133 Computer, Math
## 17485 15-1132 151132 Computer, Math
## 17486 25-2021 252021 Education, Training
## 17487 15-1121 151121 Computer, Math
## 17488 15-1199 151199 Computer, Math
## 17489 15-1132 151132 Computer, Math
## 17490 15-1132 151132 Computer, Math
## 17491 17-2141 172141 Architecture, Engineer
## 17492 15-1199 151199 Computer, Math
## 17493 15-1132 151132 Computer, Math
## 17494 15-1199 151199 Computer, Math
## 17495 15-1132 151132 Computer, Math
## 17496 15-1132 151132 Computer, Math
## 17497 15-1131 151131 Computer, Math
## 17498 15-1132 151132 Computer, Math
## 17499 29-1123 291123 Healthcare Practitioner
## 17500 15-1132 151132 Computer, Math
## 17501 15-1199 151199 Computer, Math
## 17502 15-1199 151199 Computer, Math
## 17503 11-9199 119199 Management
## 17504 29-1021 291021 Healthcare Practitioner
## 17505 15-1132 151132 Computer, Math
## 17506 15-1121 151121 Computer, Math
## 17507 15-1121 151121 Computer, Math
## 17508 13-1051 131051 Business, Finance
## 17509 15-1132 151132 Computer, Math
## 17510 15-1121 151121 Computer, Math
## 17511 25-2022 252022 Education, Training
## 17512 17-2072 172072 Architecture, Engineer
## 17513 15-1132 151132 Computer, Math
## 17514 15-1121 151121 Computer, Math
## 17515 15-1121 151121 Computer, Math
## 17516 15-1132 151132 Computer, Math
## 17517 15-1132 151132 Computer, Math
## 17518 15-1132 151132 Computer, Math
## 17519 15-1121 151121 Computer, Math
## 17520 15-1132 151132 Computer, Math
## 17521 17-2141 172141 Architecture, Engineer
## 17522 17-1011 171011 Architecture, Engineer
## 17523 15-1132 151132 Computer, Math
## 17524 15-1132 151132 Computer, Math
## 17525 15-1132 151132 Computer, Math
## 17526 15-1199 151199 Computer, Math
## 17527 15-1132 151132 Computer, Math
## 17528 15-1132 151132 Computer, Math
## 17529 13-2099 132099 Business, Finance
## 17530 17-2071 172071 Architecture, Engineer
## 17531 15-2041 152041 Computer, Math
## 17532 15-1121 151121 Computer, Math
## 17533 17-2053 172053 Architecture, Engineer
## 17534 17-2041 172041 Architecture, Engineer
## 17535 15-1131 151131 Computer, Math
## 17536 15-1133 151133 Computer, Math
## 17537 15-1132 151132 Computer, Math
## 17538 15-1132 151132 Computer, Math
## 17539 15-1199 151199 Computer, Math
## 17540 15-1199 151199 Computer, Math
## 17541 13-1151 131151 Business, Finance
## 17542 15-1132 151132 Computer, Math
## 17543 15-1199 151199 Computer, Math
## 17544 15-2041 152041 Computer, Math
## 17545 17-2141 172141 Architecture, Engineer
## 17546 15-1132 151132 Computer, Math
## 17547 17-2031 172031 Architecture, Engineer
## 17548 15-1121 151121 Computer, Math
## 17549 15-1199 151199 Computer, Math
## 17550 15-1132 151132 Computer, Math
## 17551 17-2141 172141 Architecture, Engineer
## 17552 25-1032 251032 Education, Training
## 17553 15-1132 151132 Computer, Math
## 17554 15-1132 151132 Computer, Math
## 17555 15-1132 151132 Computer, Math
## 17556 15-1111 151111 Computer, Math
## 17557 11-3031 113031 Management
## 17558 17-2061 172061 Architecture, Engineer
## 17559 17-2072 172072 Architecture, Engineer
## 17560 15-1132 151132 Computer, Math
## 17561 15-1132 151132 Computer, Math
## 17562 15-1132 151132 Computer, Math
## 17563 15-1199 151199 Computer, Math
## 17564 15-1199 151199 Computer, Math
## 17565 15-1121 151121 Computer, Math
## 17566 29-1069 291069 Healthcare Practitioner
## 17567 15-1199 151199 Computer, Math
## 17568 17-2072 172072 Architecture, Engineer
## 17569 15-1132 151132 Computer, Math
## 17570 15-1121 151121 Computer, Math
## 17571 15-1199 151199 Computer, Math
## 17572 15-1132 151132 Computer, Math
## 17573 13-2051 132051 Business, Finance
## 17574 15-1199 151199 Computer, Math
## 17575 15-1111 151111 Computer, Math
## 17576 15-1133 151133 Computer, Math
## 17577 15-1132 151132 Computer, Math
## 17578 17-2141 172141 Architecture, Engineer
## 17579 19-1042 191042 Life, Physcial, Social Science
## 17580 13-2051 132051 Business, Finance
## 17581 19-1042 191042 Life, Physcial, Social Science
## 17582 15-1132 151132 Computer, Math
## 17583 11-3021 113021 Management
## 17584 15-1141 151141 Computer, Math
## 17585 15-1132 151132 Computer, Math
## 17586 15-1132 151132 Computer, Math
## 17587 15-1121 151121 Computer, Math
## 17588 25-2031 252031 Education, Training
## 17589 15-1132 151132 Computer, Math
## 17590 15-1131 151131 Computer, Math
## 17591 15-1133 151133 Computer, Math
## 17592 15-1141 151141 Computer, Math
## 17593 15-1133 151133 Computer, Math
## 17594 19-1022 191022 Life, Physcial, Social Science
## 17595 17-2141 172141 Architecture, Engineer
## 17596 13-2051 132051 Business, Finance
## 17597 15-1132 151132 Computer, Math
## 17598 15-1121 151121 Computer, Math
## 17599 29-1051 291051 Healthcare Practitioner
## 17600 11-3051 113051 Management
## 17601 15-1132 151132 Computer, Math
## 17602 17-2141 172141 Architecture, Engineer
## 17603 17-2072 172072 Architecture, Engineer
## 17604 15-1141 151141 Computer, Math
## 17605 15-2031 152031 Computer, Math
## 17606 15-1131 151131 Computer, Math
## 17607 15-1133 151133 Computer, Math
## 17608 15-1121 151121 Computer, Math
## 17609 17-2141 172141 Architecture, Engineer
## 17610 15-1133 151133 Computer, Math
## 17611 15-1121 151121 Computer, Math
## 17612 19-1042 191042 Life, Physcial, Social Science
## 17613 15-1134 151134 Computer, Math
## 17614 15-1121 151121 Computer, Math
## 17615 13-2051 132051 Business, Finance
## 17616 15-1199 151199 Computer, Math
## 17617 15-1199 151199 Computer, Math
## 17618 15-1199 151199 Computer, Math
## 17619 15-1132 151132 Computer, Math
## 17620 15-1131 151131 Computer, Math
## 17621 15-1132 151132 Computer, Math
## 17622 13-1111 131111 Business, Finance
## 17623 15-1132 151132 Computer, Math
## 17624 15-1199 151199 Computer, Math
## 17625 15-1121 151121 Computer, Math
## 17626 15-1199 151199 Computer, Math
## 17627 15-1131 151131 Computer, Math
## 17628 29-1064 291064 Healthcare Practitioner
## 17629 15-1133 151133 Computer, Math
## 17630 15-1132 151132 Computer, Math
## 17631 15-1132 151132 Computer, Math
## 17632 19-3031 193031 Life, Physcial, Social Science
## 17633 15-1132 151132 Computer, Math
## 17634 15-1199 151199 Computer, Math
## 17635 15-1133 151133 Computer, Math
## 17636 17-2071 172071 Architecture, Engineer
## 17637 15-1121 151121 Computer, Math
## 17638 29-2011 292011 Healthcare Practitioner
## 17639 15-1132 151132 Computer, Math
## 17640 15-1132 151132 Computer, Math
## 17641 17-2041 172041 Architecture, Engineer
## 17642 27-1014 271014 Media, Design
## 17643 15-2021 152021 Computer, Math
## 17644 17-2141 172141 Architecture, Engineer
## 17645 15-1132 151132 Computer, Math
## 17646 29-1051 291051 Healthcare Practitioner
## 17647 13-1081 131081 Business, Finance
## 17648 15-1131 151131 Computer, Math
## 17649 17-2141 172141 Architecture, Engineer
## 17650 19-1042 191042 Life, Physcial, Social Science
## 17651 15-1121 151121 Computer, Math
## 17652 15-1132 151132 Computer, Math
## 17653 15-2031 152031 Computer, Math
## 17654 25-1063 251063 Education, Training
## 17655 15-1131 151131 Computer, Math
## 17656 15-1199 151199 Computer, Math
## 17657 15-1132 151132 Computer, Math
## 17658 15-1121 151121 Computer, Math
## 17659 15-1132 151132 Computer, Math
## 17660 15-1121 151121 Computer, Math
## 17661 15-1131 151131 Computer, Math
## 17662 25-1031 251031 Education, Training
## 17663 29-1127 291127 Healthcare Practitioner
## 17664 29-1062 291062 Healthcare Practitioner
## 17665 15-1121 151121 Computer, Math
## 17666 17-2141 172141 Architecture, Engineer
## 17667 41-4011 414011 Sales
## 17668 15-1134 151134 Computer, Math
## 17669 15-1132 151132 Computer, Math
## 17670 15-1121 151121 Computer, Math
## 17671 15-1132 151132 Computer, Math
## 17672 15-1121 151121 Computer, Math
## 17673 15-1199 151199 Computer, Math
## 17674 15-1132 151132 Computer, Math
## 17675 41-9031 419031 Sales
## 17676 15-1199 151199 Computer, Math
## 17677 15-1133 151133 Computer, Math
## 17678 15-1199 151199 Computer, Math
## 17679 13-2011 132011 Business, Finance
## 17680 15-1121 151121 Computer, Math
## 17681 15-1132 151132 Computer, Math
## 17682 15-1133 151133 Computer, Math
## 17683 15-1131 151131 Computer, Math
## 17684 13-2031 132031 Business, Finance
## 17685 15-1121 151121 Computer, Math
## 17686 15-1141 151141 Computer, Math
## 17687 15-1121 151121 Computer, Math
## 17688 13-2011 132011 Business, Finance
## 17689 15-1121 151121 Computer, Math
## 17690 15-1132 151132 Computer, Math
## 17691 15-1121 151121 Computer, Math
## 17692 15-1199 151199 Computer, Math
## 17693 41-9031 419031 Sales
## 17694 17-2072 172072 Architecture, Engineer
## 17695 17-2071 172071 Architecture, Engineer
## 17696 13-2011 132011 Business, Finance
## 17697 15-1199 151199 Computer, Math
## 17698 15-1121 151121 Computer, Math
## 17699 15-1133 151133 Computer, Math
## 17700 15-1142 151142 Computer, Math
## 17701 15-1121 151121 Computer, Math
## 17702 15-1111 151111 Computer, Math
## 17703 13-2051 132051 Business, Finance
## 17704 15-1132 151132 Computer, Math
## 17705 15-1121 151121 Computer, Math
## 17706 15-1131 151131 Computer, Math
## 17707 15-1121 151121 Computer, Math
## 17708 17-2141 172141 Architecture, Engineer
## 17709 27-3042 273042 Media, Design
## 17710 15-1199 151199 Computer, Math
## 17711 15-1132 151132 Computer, Math
## 17712 15-1131 151131 Computer, Math
## 17713 15-1132 151132 Computer, Math
## 17714 15-1199 151199 Computer, Math
## 17715 15-1121 151121 Computer, Math
## 17716 19-1021 191021 Life, Physcial, Social Science
## 17717 15-1142 151142 Computer, Math
## 17718 13-2099 132099 Business, Finance
## 17719 11-3021 113021 Management
## 17720 17-2141 172141 Architecture, Engineer
## 17721 15-1132 151132 Computer, Math
## 17722 15-1132 151132 Computer, Math
## 17723 15-1132 151132 Computer, Math
## 17724 15-1132 151132 Computer, Math
## 17725 15-1132 151132 Computer, Math
## 17726 15-1132 151132 Computer, Math
## 17727 15-1132 151132 Computer, Math
## 17728 15-1132 151132 Computer, Math
## 17729 15-1121 151121 Computer, Math
## 17730 15-1132 151132 Computer, Math
## 17731 23-1011 231011 Legal
## 17732 17-2072 172072 Architecture, Engineer
## 17733 15-2031 152031 Computer, Math
## 17734 19-1042 191042 Life, Physcial, Social Science
## 17735 15-1132 151132 Computer, Math
## 17736 15-1132 151132 Computer, Math
## 17737 15-1132 151132 Computer, Math
## 17738 15-1132 151132 Computer, Math
## 17739 13-2099 132099 Business, Finance
## 17740 15-1132 151132 Computer, Math
## 17741 17-2141 172141 Architecture, Engineer
## 17742 25-1071 251071 Education, Training
## 17743 25-2021 252021 Education, Training
## 17744 15-1132 151132 Computer, Math
## 17745 15-1199 151199 Computer, Math
## 17746 15-1121 151121 Computer, Math
## 17747 15-1132 151132 Computer, Math
## 17748 15-1121 151121 Computer, Math
## 17749 11-3071 113071 Management
## 17750 15-1121 151121 Computer, Math
## 17751 15-1121 151121 Computer, Math
## 17752 15-1121 151121 Computer, Math
## 17753 15-1199 151199 Computer, Math
## 17754 15-2031 152031 Computer, Math
## 17755 15-1121 151121 Computer, Math
## 17756 15-1199 151199 Computer, Math
## 17757 15-1121 151121 Computer, Math
## 17758 15-1121 151121 Computer, Math
## 17759 15-1132 151132 Computer, Math
## 17760 15-1199 151199 Computer, Math
## 17761 15-1131 151131 Computer, Math
## 17762 15-1121 151121 Computer, Math
## 17763 17-2071 172071 Architecture, Engineer
## 17764 15-1121 151121 Computer, Math
## 17765 15-1131 151131 Computer, Math
## 17766 13-2031 132031 Business, Finance
## 17767 15-2041 152041 Computer, Math
## 17768 15-1121 151121 Computer, Math
## 17769 15-1199 151199 Computer, Math
## 17770 15-1143 151143 Computer, Math
## 17771 15-1132 151132 Computer, Math
## 17772 17-2199 172199 Architecture, Engineer
## 17773 13-2011 132011 Business, Finance
## 17774 15-1199 151199 Computer, Math
## 17775 15-1132 151132 Computer, Math
## 17776 15-1121 151121 Computer, Math
## 17777 15-1132 151132 Computer, Math
## 17778 25-1042 251042 Education, Training
## 17779 29-9099 299099 Healthcare Practitioner
## 17780 15-2031 152031 Computer, Math
## 17781 15-1133 151133 Computer, Math
## 17782 15-1142 151142 Computer, Math
## 17783 15-1132 151132 Computer, Math
## 17784 13-1041 131041 Business, Finance
## 17785 15-1142 151142 Computer, Math
## 17786 15-1132 151132 Computer, Math
## 17787 11-9041 119041 Management
## 17788 15-1121 151121 Computer, Math
## 17789 15-1132 151132 Computer, Math
## 17790 29-1127 291127 Healthcare Practitioner
## 17791 15-1132 151132 Computer, Math
## 17792 15-1133 151133 Computer, Math
## 17793 17-2072 172072 Architecture, Engineer
## 17794 15-1199 151199 Computer, Math
## 17795 15-1121 151121 Computer, Math
## 17796 15-1199 151199 Computer, Math
## 17797 15-1132 151132 Computer, Math
## 17798 15-1199 151199 Computer, Math
## 17799 15-1199 151199 Computer, Math
## 17800 15-2041 152041 Computer, Math
## 17801 15-2031 152031 Computer, Math
## 17802 15-1132 151132 Computer, Math
## 17803 15-1132 151132 Computer, Math
## 17804 19-2012 192012 Life, Physcial, Social Science
## 17805 15-1132 151132 Computer, Math
## 17806 17-2071 172071 Architecture, Engineer
## 17807 15-1133 151133 Computer, Math
## 17808 15-1132 151132 Computer, Math
## 17809 15-1121 151121 Computer, Math
## 17810 15-1199 151199 Computer, Math
## 17811 15-1199 151199 Computer, Math
## 17812 17-2141 172141 Architecture, Engineer
## 17813 13-2099 132099 Business, Finance
## 17814 15-1132 151132 Computer, Math
## 17815 15-1121 151121 Computer, Math
## 17816 17-1011 171011 Architecture, Engineer
## 17817 15-1133 151133 Computer, Math
## 17818 15-1132 151132 Computer, Math
## 17819 15-1132 151132 Computer, Math
## 17820 15-1132 151132 Computer, Math
## 17821 29-1069 291069 Healthcare Practitioner
## 17822 23-1011 231011 Legal
## 17823 15-1132 151132 Computer, Math
## 17824 19-1029 191029 Life, Physcial, Social Science
## 17825 11-3021 113021 Management
## 17826 15-2031 152031 Computer, Math
## 17827 15-1199 151199 Computer, Math
## 17828 11-2021 112021 Management
## 17829 15-1132 151132 Computer, Math
## 17830 15-1132 151132 Computer, Math
## 17831 15-1132 151132 Computer, Math
## 17832 15-1132 151132 Computer, Math
## 17833 15-1199 151199 Computer, Math
## 17834 15-1132 151132 Computer, Math
## 17835 15-1142 151142 Computer, Math
## 17836 13-2011 132011 Business, Finance
## 17837 15-1199 151199 Computer, Math
## 17838 15-1121 151121 Computer, Math
## 17839 15-1142 151142 Computer, Math
## 17840 13-2011 132011 Business, Finance
## 17841 15-1132 151132 Computer, Math
## 17842 15-1134 151134 Computer, Math
## 17843 15-1131 151131 Computer, Math
## 17844 15-1132 151132 Computer, Math
## 17845 29-1069 291069 Healthcare Practitioner
## 17846 15-1199 151199 Computer, Math
## 17847 19-2032 192032 Life, Physcial, Social Science
## 17848 15-1132 151132 Computer, Math
## 17849 15-2041 152041 Computer, Math
## 17850 15-1131 151131 Computer, Math
## 17851 15-1132 151132 Computer, Math
## 17852 15-1132 151132 Computer, Math
## 17853 13-1199 131199 Business, Finance
## 17854 15-1199 151199 Computer, Math
## 17855 15-1199 151199 Computer, Math
## 17856 15-1132 151132 Computer, Math
## 17857 15-1142 151142 Computer, Math
## 17858 15-2041 152041 Computer, Math
## 17859 15-1132 151132 Computer, Math
## 17860 15-1132 151132 Computer, Math
## 17861 15-1121 151121 Computer, Math
## 17862 15-1121 151121 Computer, Math
## 17863 15-1132 151132 Computer, Math
## 17864 15-1132 151132 Computer, Math
## 17865 29-1123 291123 Healthcare Practitioner
## 17866 15-1199 151199 Computer, Math
## 17867 15-1131 151131 Computer, Math
## 17868 15-1132 151132 Computer, Math
## 17869 13-2011 132011 Business, Finance
## 17870 15-2031 152031 Computer, Math
## 17871 15-1132 151132 Computer, Math
## 17872 15-1121 151121 Computer, Math
## 17873 11-3021 113021 Management
## 17874 15-1199 151199 Computer, Math
## 17875 25-3099 253099 Education, Training
## 17876 15-1199 151199 Computer, Math
## 17877 17-3011 173011 Architecture, Engineer
## 17878 13-1199 131199 Business, Finance
## 17879 17-2061 172061 Architecture, Engineer
## 17880 15-1132 151132 Computer, Math
## 17881 17-2141 172141 Architecture, Engineer
## 17882 15-1121 151121 Computer, Math
## 17883 13-2031 132031 Business, Finance
## 17884 15-1132 151132 Computer, Math
## 17885 15-1132 151132 Computer, Math
## 17886 13-1111 131111 Business, Finance
## 17887 15-1122 151122 Computer, Math
## 17888 15-1141 151141 Computer, Math
## 17889 29-1123 291123 Healthcare Practitioner
## 17890 15-1121 151121 Computer, Math
## 17891 15-1132 151132 Computer, Math
## 17892 15-1132 151132 Computer, Math
## 17893 25-2031 252031 Education, Training
## 17894 17-2141 172141 Architecture, Engineer
## 17895 13-1161 131161 Business, Finance
## 17896 15-1132 151132 Computer, Math
## 17897 15-1132 151132 Computer, Math
## 17898 17-2071 172071 Architecture, Engineer
## 17899 15-1132 151132 Computer, Math
## 17900 15-1132 151132 Computer, Math
## 17901 15-1132 151132 Computer, Math
## 17902 15-1199 151199 Computer, Math
## 17903 13-1041 131041 Business, Finance
## 17904 15-1121 151121 Computer, Math
## 17905 15-1132 151132 Computer, Math
## 17906 15-1199 151199 Computer, Math
## 17907 13-2051 132051 Business, Finance
## 17908 13-1111 131111 Business, Finance
## 17909 11-3071 113071 Management
## 17910 19-1029 191029 Life, Physcial, Social Science
## 17911 15-1132 151132 Computer, Math
## 17912 15-1121 151121 Computer, Math
## 17913 27-1024 271024 Media, Design
## 17914 15-1199 151199 Computer, Math
## 17915 15-1121 151121 Computer, Math
## 17916 15-1121 151121 Computer, Math
## 17917 19-1029 191029 Life, Physcial, Social Science
## 17918 15-1132 151132 Computer, Math
## 17919 15-1132 151132 Computer, Math
## 17920 15-1141 151141 Computer, Math
## 17921 15-1132 151132 Computer, Math
## 17922 15-1132 151132 Computer, Math
## 17923 25-1032 251032 Education, Training
## 17924 15-1132 151132 Computer, Math
## 17925 15-1132 151132 Computer, Math
## 17926 15-1121 151121 Computer, Math
## 17927 11-3021 113021 Management
## 17928 15-1199 151199 Computer, Math
## 17929 15-1132 151132 Computer, Math
## 17930 15-1121 151121 Computer, Math
## 17931 15-1132 151132 Computer, Math
## 17932 15-1131 151131 Computer, Math
## 17933 15-1121 151121 Computer, Math
## 17934 15-1199 151199 Computer, Math
## 17935 15-1132 151132 Computer, Math
## 17936 15-1133 151133 Computer, Math
## 17937 15-1132 151132 Computer, Math
## 17938 15-1132 151132 Computer, Math
## 17939 19-1042 191042 Life, Physcial, Social Science
## 17940 15-2021 152021 Computer, Math
## 17941 15-1132 151132 Computer, Math
## 17942 15-1132 151132 Computer, Math
## 17943 15-1131 151131 Computer, Math
## 17944 15-1133 151133 Computer, Math
## 17945 15-2041 152041 Computer, Math
## 17946 11-3021 113021 Management
## 17947 15-1134 151134 Computer, Math
## 17948 19-1042 191042 Life, Physcial, Social Science
## 17949 15-1132 151132 Computer, Math
## 17950 15-1133 151133 Computer, Math
## 17951 19-1029 191029 Life, Physcial, Social Science
## 17952 15-1132 151132 Computer, Math
## 17953 17-2199 172199 Architecture, Engineer
## 17954 15-2031 152031 Computer, Math
## 17955 17-2061 172061 Architecture, Engineer
## 17956 15-1121 151121 Computer, Math
## 17957 29-1021 291021 Healthcare Practitioner
## 17958 15-1132 151132 Computer, Math
## 17959 13-2051 132051 Business, Finance
## 17960 17-2071 172071 Architecture, Engineer
## 17961 15-1121 151121 Computer, Math
## 17962 15-1199 151199 Computer, Math
## 17963 15-1121 151121 Computer, Math
## 17964 15-1131 151131 Computer, Math
## 17965 15-1132 151132 Computer, Math
## 17966 13-2011 132011 Business, Finance
## 17967 15-1132 151132 Computer, Math
## 17968 15-1132 151132 Computer, Math
## 17969 15-1132 151132 Computer, Math
## 17970 15-1132 151132 Computer, Math
## 17971 15-1132 151132 Computer, Math
## 17972 15-1121 151121 Computer, Math
## 17973 15-2041 152041 Computer, Math
## 17974 15-1132 151132 Computer, Math
## 17975 15-1133 151133 Computer, Math
## 17976 15-1199 151199 Computer, Math
## 17977 15-1131 151131 Computer, Math
## 17978 15-1199 151199 Computer, Math
## 17979 15-1121 151121 Computer, Math
## 17980 11-3021 113021 Management
## 17981 15-1122 151122 Computer, Math
## 17982 25-1011 251011 Education, Training
## 17983 15-1121 151121 Computer, Math
## 17984 15-1132 151132 Computer, Math
## 17985 15-1132 151132 Computer, Math
## 17986 13-2051 132051 Business, Finance
## 17987 15-1199 151199 Computer, Math
## 17988 15-1132 151132 Computer, Math
## 17989 15-1199 151199 Computer, Math
## 17990 19-1042 191042 Life, Physcial, Social Science
## 17991 15-2041 152041 Computer, Math
## 17992 17-2112 172112 Architecture, Engineer
## 17993 15-1132 151132 Computer, Math
## 17994 19-3011 193011 Life, Physcial, Social Science
## 17995 15-1142 151142 Computer, Math
## 17996 15-1142 151142 Computer, Math
## 17997 15-1199 151199 Computer, Math
## 17998 13-2051 132051 Business, Finance
## 17999 17-2199 172199 Architecture, Engineer
## 18000 15-1132 151132 Computer, Math
## 18001 17-2041 172041 Architecture, Engineer
## 18002 15-1132 151132 Computer, Math
## 18003 15-1199 151199 Computer, Math
## 18004 15-1141 151141 Computer, Math
## 18005 15-1132 151132 Computer, Math
## 18006 15-1111 151111 Computer, Math
## 18007 13-1161 131161 Business, Finance
## 18008 15-2041 152041 Computer, Math
## 18009 15-1199 151199 Computer, Math
## 18010 15-1134 151134 Computer, Math
## 18011 15-1132 151132 Computer, Math
## 18012 13-1199 131199 Business, Finance
## 18013 17-2051 172051 Architecture, Engineer
## 18014 15-1133 151133 Computer, Math
## 18015 17-2112 172112 Architecture, Engineer
## 18016 15-1132 151132 Computer, Math
## 18017 15-1132 151132 Computer, Math
## 18018 15-1132 151132 Computer, Math
## 18019 13-2011 132011 Business, Finance
## 18020 15-2031 152031 Computer, Math
## 18021 15-1132 151132 Computer, Math
## 18022 15-1132 151132 Computer, Math
## 18023 15-1133 151133 Computer, Math
## 18024 13-2011 132011 Business, Finance
## 18025 15-1131 151131 Computer, Math
## 18026 15-1199 151199 Computer, Math
## 18027 17-2071 172071 Architecture, Engineer
## 18028 15-1132 151132 Computer, Math
## 18029 15-1141 151141 Computer, Math
## 18030 15-1132 151132 Computer, Math
## 18031 15-1121 151121 Computer, Math
## 18032 13-2099 132099 Business, Finance
## 18033 15-1132 151132 Computer, Math
## 18034 13-2051 132051 Business, Finance
## 18035 17-2011 172011 Architecture, Engineer
## 18036 15-1121 151121 Computer, Math
## 18037 15-1121 151121 Computer, Math
## 18038 15-1132 151132 Computer, Math
## 18039 15-1132 151132 Computer, Math
## 18040 15-1132 151132 Computer, Math
## 18041 13-2011 132011 Business, Finance
## 18042 13-2051 132051 Business, Finance
## 18043 15-1142 151142 Computer, Math
## 18044 15-1132 151132 Computer, Math
## 18045 29-9011 299011 Healthcare Practitioner
## 18046 15-1132 151132 Computer, Math
## 18047 15-1132 151132 Computer, Math
## 18048 15-1122 151122 Computer, Math
## 18049 15-1132 151132 Computer, Math
## 18050 15-1132 151132 Computer, Math
## 18051 13-1071 131071 Business, Finance
## 18052 25-1122 251122 Education, Training
## 18053 19-2031 192031 Life, Physcial, Social Science
## 18054 15-1132 151132 Computer, Math
## 18055 15-1132 151132 Computer, Math
## 18056 15-1141 151141 Computer, Math
## 18057 15-1133 151133 Computer, Math
## 18058 15-1142 151142 Computer, Math
## 18059 15-1132 151132 Computer, Math
## 18060 29-1123 291123 Healthcare Practitioner
## 18061 15-1121 151121 Computer, Math
## 18062 15-1134 151134 Computer, Math
## 18063 13-1161 131161 Business, Finance
## 18064 15-1132 151132 Computer, Math
## 18065 11-9199 119199 Management
## 18066 15-2031 152031 Computer, Math
## 18067 15-1132 151132 Computer, Math
## 18068 19-2031 192031 Life, Physcial, Social Science
## 18069 13-1111 131111 Business, Finance
## 18070 15-1132 151132 Computer, Math
## 18071 15-1132 151132 Computer, Math
## 18072 25-2031 252031 Education, Training
## 18073 15-1141 151141 Computer, Math
## 18074 15-1133 151133 Computer, Math
## 18075 19-1029 191029 Life, Physcial, Social Science
## 18076 11-3071 113071 Management
## 18077 15-1132 151132 Computer, Math
## 18078 15-1132 151132 Computer, Math
## 18079 17-2072 172072 Architecture, Engineer
## 18080 15-1132 151132 Computer, Math
## 18081 15-1132 151132 Computer, Math
## 18082 15-1134 151134 Computer, Math
## 18083 19-1029 191029 Life, Physcial, Social Science
## 18084 15-1132 151132 Computer, Math
## 18085 15-1132 151132 Computer, Math
## 18086 17-2051 172051 Architecture, Engineer
## 18087 15-1121 151121 Computer, Math
## 18088 29-1069 291069 Healthcare Practitioner
## 18089 15-1142 151142 Computer, Math
## 18090 13-1111 131111 Business, Finance
## 18091 15-1132 151132 Computer, Math
## 18092 15-1132 151132 Computer, Math
## 18093 17-2141 172141 Architecture, Engineer
## 18094 15-1132 151132 Computer, Math
## 18095 23-1011 231011 Legal
## 18096 15-1132 151132 Computer, Math
## 18097 15-2031 152031 Computer, Math
## 18098 15-1132 151132 Computer, Math
## 18099 17-2199 172199 Architecture, Engineer
## 18100 15-1132 151132 Computer, Math
## 18101 13-1161 131161 Business, Finance
## 18102 15-1142 151142 Computer, Math
## 18103 15-1132 151132 Computer, Math
## 18104 15-1133 151133 Computer, Math
## 18105 11-2011 112011 Management
## 18106 25-1054 251054 Education, Training
## 18107 15-1132 151132 Computer, Math
## 18108 15-1132 151132 Computer, Math
## 18109 15-1132 151132 Computer, Math
## 18110 15-1131 151131 Computer, Math
## 18111 15-1199 151199 Computer, Math
## 18112 15-1132 151132 Computer, Math
## 18113 15-1132 151132 Computer, Math
## 18114 15-1131 151131 Computer, Math
## 18115 19-2012 192012 Life, Physcial, Social Science
## 18116 15-1132 151132 Computer, Math
## 18117 13-1111 131111 Business, Finance
## 18118 17-2011 172011 Architecture, Engineer
## 18119 15-1142 151142 Computer, Math
## 18120 15-1132 151132 Computer, Math
## 18121 15-1199 151199 Computer, Math
## 18122 13-2011 132011 Business, Finance
## 18123 17-2071 172071 Architecture, Engineer
## 18124 15-1132 151132 Computer, Math
## 18125 15-1132 151132 Computer, Math
## 18126 15-1142 151142 Computer, Math
## 18127 15-1121 151121 Computer, Math
## 18128 15-1131 151131 Computer, Math
## 18129 15-1132 151132 Computer, Math
## 18130 17-2071 172071 Architecture, Engineer
## 18131 13-1111 131111 Business, Finance
## 18132 13-1081 131081 Business, Finance
## 18133 15-1121 151121 Computer, Math
## 18134 13-1161 131161 Business, Finance
## 18135 27-3042 273042 Media, Design
## 18136 27-3031 273031 Media, Design
## 18137 17-2051 172051 Architecture, Engineer
## 18138 15-1199 151199 Computer, Math
## 18139 17-2141 172141 Architecture, Engineer
## 18140 15-1132 151132 Computer, Math
## 18141 15-1121 151121 Computer, Math
## 18142 19-1022 191022 Life, Physcial, Social Science
## 18143 15-1132 151132 Computer, Math
## 18144 15-1133 151133 Computer, Math
## 18145 15-1133 151133 Computer, Math
## 18146 27-1024 271024 Media, Design
## 18147 15-1132 151132 Computer, Math
## 18148 15-1132 151132 Computer, Math
## 18149 15-1132 151132 Computer, Math
## 18150 29-1071 291071 Healthcare Practitioner
## 18151 15-1132 151132 Computer, Math
## 18152 11-3031 113031 Management
## 18153 15-1143 151143 Computer, Math
## 18154 13-2099 132099 Business, Finance
## 18155 15-1134 151134 Computer, Math
## 18156 17-2112 172112 Architecture, Engineer
## 18157 29-1123 291123 Healthcare Practitioner
## 18158 15-1199 151199 Computer, Math
## 18159 17-2031 172031 Architecture, Engineer
## 18160 15-1141 151141 Computer, Math
## 18161 17-2171 172171 Architecture, Engineer
## 18162 15-1199 151199 Computer, Math
## 18163 15-1131 151131 Computer, Math
## 18164 15-1132 151132 Computer, Math
## 18165 15-2031 152031 Computer, Math
## 18166 15-1121 151121 Computer, Math
## 18167 13-2051 132051 Business, Finance
## 18168 15-1121 151121 Computer, Math
## 18169 15-1132 151132 Computer, Math
## 18170 13-2021 132021 Business, Finance
## 18171 17-2112 172112 Architecture, Engineer
## 18172 15-1132 151132 Computer, Math
## 18173 19-2042 192042 Life, Physcial, Social Science
## 18174 15-1111 151111 Computer, Math
## 18175 15-1141 151141 Computer, Math
## 18176 15-1121 151121 Computer, Math
## 18177 15-1132 151132 Computer, Math
## 18178 15-1132 151132 Computer, Math
## 18179 17-2199 172199 Architecture, Engineer
## 18180 19-1029 191029 Life, Physcial, Social Science
## 18181 15-1132 151132 Computer, Math
## 18182 15-1132 151132 Computer, Math
## 18183 15-1199 151199 Computer, Math
## 18184 15-1121 151121 Computer, Math
## 18185 19-1013 191013 Life, Physcial, Social Science
## 18186 15-1133 151133 Computer, Math
## 18187 17-2112 172112 Architecture, Engineer
## 18188 15-1121 151121 Computer, Math
## 18189 15-1132 151132 Computer, Math
## 18190 15-1142 151142 Computer, Math
## 18191 15-1132 151132 Computer, Math
## 18192 15-1132 151132 Computer, Math
## 18193 25-1011 251011 Education, Training
## 18194 17-2141 172141 Architecture, Engineer
## 18195 15-1121 151121 Computer, Math
## 18196 13-2051 132051 Business, Finance
## 18197 15-1199 151199 Computer, Math
## 18198 15-1199 151199 Computer, Math
## 18199 13-1081 131081 Business, Finance
## 18200 15-1132 151132 Computer, Math
## 18201 15-1132 151132 Computer, Math
## 18202 15-1132 151132 Computer, Math
## 18203 15-1132 151132 Computer, Math
## 18204 15-1132 151132 Computer, Math
## 18205 15-1052 151052 Computer, Math
## 18206 25-1011 251011 Education, Training
## 18207 17-2199 172199 Architecture, Engineer
## 18208 15-1132 151132 Computer, Math
## 18209 15-1132 151132 Computer, Math
## 18210 15-1132 151132 Computer, Math
## 18211 15-1133 151133 Computer, Math
## 18212 15-1199 151199 Computer, Math
## 18213 15-1199 151199 Computer, Math
## 18214 15-1132 151132 Computer, Math
## 18215 15-2041 152041 Computer, Math
## 18216 29-1123 291123 Healthcare Practitioner
## 18217 17-2071 172071 Architecture, Engineer
## 18218 13-2051 132051 Business, Finance
## 18219 25-1071 251071 Education, Training
## 18220 15-1132 151132 Computer, Math
## 18221 15-1199 151199 Computer, Math
## 18222 15-1132 151132 Computer, Math
## 18223 13-2051 132051 Business, Finance
## 18224 15-1121 151121 Computer, Math
## 18225 15-1132 151132 Computer, Math
## 18226 19-1029 191029 Life, Physcial, Social Science
## 18227 11-9151 119151 Management
## 18228 15-1199 151199 Computer, Math
## 18229 15-1132 151132 Computer, Math
## 18230 17-2081 172081 Architecture, Engineer
## 18231 19-1042 191042 Life, Physcial, Social Science
## 18232 19-2042 192042 Life, Physcial, Social Science
## 18233 13-1111 131111 Business, Finance
## 18234 15-1132 151132 Computer, Math
## 18235 13-2011 132011 Business, Finance
## 18236 15-1121 151121 Computer, Math
## 18237 15-1141 151141 Computer, Math
## 18238 27-1021 271021 Media, Design
## 18239 13-1111 131111 Business, Finance
## 18240 15-1199 151199 Computer, Math
## 18241 17-2112 172112 Architecture, Engineer
## 18242 15-1132 151132 Computer, Math
## 18243 15-1133 151133 Computer, Math
## 18244 13-2051 132051 Business, Finance
## 18245 15-1132 151132 Computer, Math
## 18246 15-1121 151121 Computer, Math
## 18247 27-4032 274032 Media, Design
## 18248 17-2051 172051 Architecture, Engineer
## 18249 15-1132 151132 Computer, Math
## 18250 15-1133 151133 Computer, Math
## 18251 15-1132 151132 Computer, Math
## 18252 15-1132 151132 Computer, Math
## 18253 15-1132 151132 Computer, Math
## 18254 19-3011 193011 Life, Physcial, Social Science
## 18255 15-1132 151132 Computer, Math
## 18256 15-1132 151132 Computer, Math
## 18257 19-2031 192031 Life, Physcial, Social Science
## 18258 15-1121 151121 Computer, Math
## 18259 15-1132 151132 Computer, Math
## 18260 15-1121 151121 Computer, Math
## 18261 11-3031 113031 Management
## 18262 11-3071 113071 Management
## 18263 15-2041 152041 Computer, Math
## 18264 13-2041 132041 Business, Finance
## 18265 15-1131 151131 Computer, Math
## 18266 15-1132 151132 Computer, Math
## 18267 11-9032 119032 Management
## 18268 15-2031 152031 Computer, Math
## 18269 15-1133 151133 Computer, Math
## 18270 15-1132 151132 Computer, Math
## 18271 15-1142 151142 Computer, Math
## 18272 13-2011 132011 Business, Finance
## 18273 15-1199 151199 Computer, Math
## 18274 13-2011 132011 Business, Finance
## 18275 13-2051 132051 Business, Finance
## 18276 15-1132 151132 Computer, Math
## 18277 15-1121 151121 Computer, Math
## 18278 15-1121 151121 Computer, Math
## 18279 15-1142 151142 Computer, Math
## 18280 15-1132 151132 Computer, Math
## 18281 17-2051 172051 Architecture, Engineer
## 18282 17-2071 172071 Architecture, Engineer
## 18283 15-1121 151121 Computer, Math
## 18284 29-1123 291123 Healthcare Practitioner
## 18285 15-1132 151132 Computer, Math
## 18286 15-1132 151132 Computer, Math
## 18287 29-1081 291081 Healthcare Practitioner
## 18288 15-1132 151132 Computer, Math
## 18289 15-1199 151199 Computer, Math
## 18290 15-1121 151121 Computer, Math
## 18291 15-1111 151111 Computer, Math
## 18292 15-1142 151142 Computer, Math
## 18293 15-2031 152031 Computer, Math
## 18294 15-1121 151121 Computer, Math
## 18295 11-3021 113021 Management
## 18296 15-1199 151199 Computer, Math
## 18297 15-1132 151132 Computer, Math
## 18298 13-2051 132051 Business, Finance
## 18299 11-3021 113021 Management
## 18300 15-1132 151132 Computer, Math
## 18301 15-1132 151132 Computer, Math
## 18302 15-1131 151131 Computer, Math
## 18303 15-1199 151199 Computer, Math
## 18304 15-1121 151121 Computer, Math
## 18305 17-2074 172074 Architecture, Engineer
## 18306 13-1111 131111 Business, Finance
## 18307 15-1121 151121 Computer, Math
## 18308 13-2051 132051 Business, Finance
## 18309 15-1131 151131 Computer, Math
## 18310 15-1132 151132 Computer, Math
## 18311 17-2071 172071 Architecture, Engineer
## 18312 15-1134 151134 Computer, Math
## 18313 15-1132 151132 Computer, Math
## 18314 15-1132 151132 Computer, Math
## 18315 15-1121 151121 Computer, Math
## 18316 15-1132 151132 Computer, Math
## 18317 15-1199 151199 Computer, Math
## 18318 15-2031 152031 Computer, Math
## 18319 23-2011 232011 Legal
## 18320 17-2071 172071 Architecture, Engineer
## 18321 13-1111 131111 Business, Finance
## 18322 19-1042 191042 Life, Physcial, Social Science
## 18323 15-1132 151132 Computer, Math
## 18324 15-1132 151132 Computer, Math
## 18325 15-1132 151132 Computer, Math
## 18326 15-1199 151199 Computer, Math
## 18327 19-2031 192031 Life, Physcial, Social Science
## 18328 15-1121 151121 Computer, Math
## 18329 15-1141 151141 Computer, Math
## 18330 25-1022 251022 Education, Training
## 18331 19-3011 193011 Life, Physcial, Social Science
## 18332 15-1132 151132 Computer, Math
## 18333 15-1121 151121 Computer, Math
## 18334 15-1132 151132 Computer, Math
## 18335 15-1121 151121 Computer, Math
## 18336 15-1132 151132 Computer, Math
## 18337 17-2051 172051 Architecture, Engineer
## 18338 15-1132 151132 Computer, Math
## 18339 15-1132 151132 Computer, Math
## 18340 15-1132 151132 Computer, Math
## 18341 15-1132 151132 Computer, Math
## 18342 15-1132 151132 Computer, Math
## 18343 15-1121 151121 Computer, Math
## 18344 15-1132 151132 Computer, Math
## 18345 15-1132 151132 Computer, Math
## 18346 15-1133 151133 Computer, Math
## 18347 15-1133 151133 Computer, Math
## 18348 17-2071 172071 Architecture, Engineer
## 18349 15-2031 152031 Computer, Math
## 18350 11-3021 113021 Management
## 18351 13-1111 131111 Business, Finance
## 18352 13-2011 132011 Business, Finance
## 18353 15-1199 151199 Computer, Math
## 18354 15-1132 151132 Computer, Math
## 18355 15-1132 151132 Computer, Math
## 18356 15-1132 151132 Computer, Math
## 18357 15-1132 151132 Computer, Math
## 18358 15-1199 151199 Computer, Math
## 18359 13-1161 131161 Business, Finance
## 18360 15-1132 151132 Computer, Math
## 18361 15-1132 151132 Computer, Math
## 18362 17-2072 172072 Architecture, Engineer
## 18363 15-1199 151199 Computer, Math
## 18364 15-1132 151132 Computer, Math
## 18365 15-1132 151132 Computer, Math
## 18366 15-1131 151131 Computer, Math
## 18367 29-1123 291123 Healthcare Practitioner
## 18368 15-1132 151132 Computer, Math
## 18369 13-1161 131161 Business, Finance
## 18370 15-1199 151199 Computer, Math
## 18371 15-1134 151134 Computer, Math
## 18372 15-1199 151199 Computer, Math
## 18373 15-1132 151132 Computer, Math
## 18374 15-1132 151132 Computer, Math
## 18375 29-1021 291021 Healthcare Practitioner
## 18376 15-1131 151131 Computer, Math
## 18377 15-1132 151132 Computer, Math
## 18378 11-3021 113021 Management
## 18379 15-1132 151132 Computer, Math
## 18380 17-2141 172141 Architecture, Engineer
## 18381 15-1132 151132 Computer, Math
## 18382 25-2054 252054 Education, Training
## 18383 15-1132 151132 Computer, Math
## 18384 15-1132 151132 Computer, Math
## 18385 19-2012 192012 Life, Physcial, Social Science
## 18386 15-1121 151121 Computer, Math
## 18387 15-1132 151132 Computer, Math
## 18388 15-1199 151199 Computer, Math
## 18389 19-3051 193051 Life, Physcial, Social Science
## 18390 15-2041 152041 Computer, Math
## 18391 15-1132 151132 Computer, Math
## 18392 15-1132 151132 Computer, Math
## 18393 15-1199 151199 Computer, Math
## 18394 29-1122 291122 Healthcare Practitioner
## 18395 15-1132 151132 Computer, Math
## 18396 13-2051 132051 Business, Finance
## 18397 15-1111 151111 Computer, Math
## 18398 15-1132 151132 Computer, Math
## 18399 19-1012 191012 Life, Physcial, Social Science
## 18400 19-1042 191042 Life, Physcial, Social Science
## 18401 15-1131 151131 Computer, Math
## 18402 13-2051 132051 Business, Finance
## 18403 15-1132 151132 Computer, Math
## 18404 15-1132 151132 Computer, Math
## 18405 15-1199 151199 Computer, Math
## 18406 13-2051 132051 Business, Finance
## 18407 15-1132 151132 Computer, Math
## 18408 15-1132 151132 Computer, Math
## 18409 15-1134 151134 Computer, Math
## 18410 15-1132 151132 Computer, Math
## 18411 15-2041 152041 Computer, Math
## 18412 15-1143 151143 Computer, Math
## 18413 19-4021 194021 Life, Physcial, Social Science
## 18414 15-1121 151121 Computer, Math
## 18415 29-1069 291069 Healthcare Practitioner
## 18416 15-1132 151132 Computer, Math
## 18417 15-1199 151199 Computer, Math
## 18418 15-1132 151132 Computer, Math
## 18419 15-1199 151199 Computer, Math
## 18420 15-1121 151121 Computer, Math
## 18421 15-1132 151132 Computer, Math
## 18422 15-1199 151199 Computer, Math
## 18423 15-1199 151199 Computer, Math
## 18424 15-1132 151132 Computer, Math
## 18425 15-1133 151133 Computer, Math
## 18426 15-1131 151131 Computer, Math
## 18427 15-1141 151141 Computer, Math
## 18428 15-1132 151132 Computer, Math
## 18429 15-1132 151132 Computer, Math
## 18430 15-1121 151121 Computer, Math
## 18431 15-1132 151132 Computer, Math
## 18432 15-1132 151132 Computer, Math
## 18433 15-1132 151132 Computer, Math
## 18434 17-2072 172072 Architecture, Engineer
## 18435 15-1199 151199 Computer, Math
## 18436 15-1132 151132 Computer, Math
## 18437 13-1111 131111 Business, Finance
## 18438 15-1133 151133 Computer, Math
## 18439 15-1141 151141 Computer, Math
## 18440 15-1131 151131 Computer, Math
## 18441 15-1132 151132 Computer, Math
## 18442 15-1132 151132 Computer, Math
## 18443 13-2051 132051 Business, Finance
## 18444 15-1132 151132 Computer, Math
## 18445 15-2031 152031 Computer, Math
## 18446 15-1121 151121 Computer, Math
## 18447 15-1132 151132 Computer, Math
## 18448 15-1132 151132 Computer, Math
## 18449 13-1111 131111 Business, Finance
## 18450 15-1121 151121 Computer, Math
## 18451 15-1132 151132 Computer, Math
## 18452 15-1132 151132 Computer, Math
## 18453 15-1199 151199 Computer, Math
## 18454 15-1199 151199 Computer, Math
## 18455 15-1121 151121 Computer, Math
## 18456 15-1132 151132 Computer, Math
## 18457 15-1199 151199 Computer, Math
## 18458 15-1132 151132 Computer, Math
## 18459 15-1132 151132 Computer, Math
## 18460 15-1121 151121 Computer, Math
## 18461 15-1143 151143 Computer, Math
## 18462 13-1051 131051 Business, Finance
## 18463 15-1121 151121 Computer, Math
## 18464 15-1121 151121 Computer, Math
## 18465 15-1132 151132 Computer, Math
## 18466 15-1132 151132 Computer, Math
## 18467 15-1132 151132 Computer, Math
## 18468 15-1132 151132 Computer, Math
## 18469 17-2141 172141 Architecture, Engineer
## 18470 15-1132 151132 Computer, Math
## 18471 11-3051 113051 Management
## 18472 15-1132 151132 Computer, Math
## 18473 13-1111 131111 Business, Finance
## 18474 15-1199 151199 Computer, Math
## 18475 15-1121 151121 Computer, Math
## 18476 25-3099 253099 Education, Training
## 18477 15-1132 151132 Computer, Math
## 18478 15-1132 151132 Computer, Math
## 18479 15-1142 151142 Computer, Math
## 18480 15-1132 151132 Computer, Math
## 18481 29-1069 291069 Healthcare Practitioner
## 18482 13-2011 132011 Business, Finance
## 18483 15-1199 151199 Computer, Math
## 18484 15-1132 151132 Computer, Math
## 18485 15-1199 151199 Computer, Math
## 18486 15-1199 151199 Computer, Math
## 18487 29-1021 291021 Healthcare Practitioner
## 18488 17-2071 172071 Architecture, Engineer
## 18489 15-1111 151111 Computer, Math
## 18490 15-1199 151199 Computer, Math
## 18491 15-1132 151132 Computer, Math
## 18492 15-1132 151132 Computer, Math
## 18493 15-1034 151034 Computer, Math
## 18494 17-2199 172199 Architecture, Engineer
## 18495 15-1132 151132 Computer, Math
## 18496 15-1132 151132 Computer, Math
## 18497 15-1132 151132 Computer, Math
## 18498 29-2011 292011 Healthcare Practitioner
## 18499 15-2031 152031 Computer, Math
## 18500 13-1111 131111 Business, Finance
## 18501 15-1132 151132 Computer, Math
## 18502 15-1132 151132 Computer, Math
## 18503 15-1132 151132 Computer, Math
## 18504 15-1121 151121 Computer, Math
## 18505 15-1132 151132 Computer, Math
## 18506 15-1133 151133 Computer, Math
## 18507 15-1122 151122 Computer, Math
## 18508 15-1199 151199 Computer, Math
## 18509 17-2141 172141 Architecture, Engineer
## 18510 15-1121 151121 Computer, Math
## 18511 17-1012 171012 Architecture, Engineer
## 18512 15-1132 151132 Computer, Math
## 18513 15-1121 151121 Computer, Math
## 18514 25-2022 252022 Education, Training
## 18515 15-1121 151121 Computer, Math
## 18516 15-1121 151121 Computer, Math
## 18517 15-1131 151131 Computer, Math
## 18518 15-1121 151121 Computer, Math
## 18519 13-2099 132099 Business, Finance
## 18520 13-2011 132011 Business, Finance
## 18521 15-1133 151133 Computer, Math
## 18522 15-1132 151132 Computer, Math
## 18523 15-1132 151132 Computer, Math
## 18524 15-1121 151121 Computer, Math
## 18525 15-1199 151199 Computer, Math
## 18526 15-1141 151141 Computer, Math
## 18527 15-1121 151121 Computer, Math
## 18528 15-1132 151132 Computer, Math
## 18529 11-9141 119141 Management
## 18530 15-1133 151133 Computer, Math
## 18531 15-1199 151199 Computer, Math
## 18532 17-2131 172131 Architecture, Engineer
## 18533 11-3031 113031 Management
## 18534 15-1132 151132 Computer, Math
## 18535 17-2199 172199 Architecture, Engineer
## 18536 15-1132 151132 Computer, Math
## 18537 15-1132 151132 Computer, Math
## 18538 15-1121 151121 Computer, Math
## 18539 15-1132 151132 Computer, Math
## 18540 15-1199 151199 Computer, Math
## 18541 15-1132 151132 Computer, Math
## 18542 15-2031 152031 Computer, Math
## 18543 15-1111 151111 Computer, Math
## 18544 15-1121 151121 Computer, Math
## 18545 15-1121 151121 Computer, Math
## 18546 15-1132 151132 Computer, Math
## 18547 19-1042 191042 Life, Physcial, Social Science
## 18548 15-1132 151132 Computer, Math
## 18549 29-1069 291069 Healthcare Practitioner
## 18550 15-1199 151199 Computer, Math
## 18551 15-1199 151199 Computer, Math
## 18552 13-1111 131111 Business, Finance
## 18553 15-1132 151132 Computer, Math
## 18554 13-1081 131081 Business, Finance
## 18555 15-2031 152031 Computer, Math
## 18556 15-1199 151199 Computer, Math
## 18557 15-1121 151121 Computer, Math
## 18558 15-1199 151199 Computer, Math
## 18559 15-1131 151131 Computer, Math
## 18560 15-1132 151132 Computer, Math
## 18561 17-2141 172141 Architecture, Engineer
## 18562 13-2051 132051 Business, Finance
## 18563 15-1132 151132 Computer, Math
## 18564 15-1132 151132 Computer, Math
## 18565 15-1199 151199 Computer, Math
## 18566 11-3021 113021 Management
## 18567 15-1132 151132 Computer, Math
## 18568 17-2112 172112 Architecture, Engineer
## 18569 15-1132 151132 Computer, Math
## 18570 41-9031 419031 Sales
## 18571 17-2141 172141 Architecture, Engineer
## 18572 17-2112 172112 Architecture, Engineer
## 18573 15-1132 151132 Computer, Math
## 18574 15-1133 151133 Computer, Math
## 18575 13-1161 131161 Business, Finance
## 18576 15-1142 151142 Computer, Math
## 18577 13-2051 132051 Business, Finance
## 18578 15-1132 151132 Computer, Math
## 18579 15-1132 151132 Computer, Math
## 18580 15-1132 151132 Computer, Math
## 18581 15-1132 151132 Computer, Math
## 18582 15-1121 151121 Computer, Math
## 18583 15-1132 151132 Computer, Math
## 18584 15-1132 151132 Computer, Math
## 18585 15-1132 151132 Computer, Math
## 18586 15-1131 151131 Computer, Math
## 18587 15-1121 151121 Computer, Math
## 18588 17-2199 172199 Architecture, Engineer
## 18589 15-1199 151199 Computer, Math
## 18590 15-1132 151132 Computer, Math
## 18591 15-1142 151142 Computer, Math
## 18592 15-1199 151199 Computer, Math
## 18593 15-1141 151141 Computer, Math
## 18594 15-1131 151131 Computer, Math
## 18595 15-1122 151122 Computer, Math
## 18596 15-1132 151132 Computer, Math
## 18597 15-1132 151132 Computer, Math
## 18598 15-1199 151199 Computer, Math
## 18599 15-1133 151133 Computer, Math
## 18600 15-1134 151134 Computer, Math
## 18601 15-1132 151132 Computer, Math
## 18602 15-1132 151132 Computer, Math
## 18603 15-1132 151132 Computer, Math
## 18604 17-2072 172072 Architecture, Engineer
## 18605 15-2041 152041 Computer, Math
## 18606 13-2011 132011 Business, Finance
## 18607 15-1132 151132 Computer, Math
## 18608 15-2041 152041 Computer, Math
## 18609 15-1142 151142 Computer, Math
## 18610 15-1132 151132 Computer, Math
## 18611 15-1132 151132 Computer, Math
## 18612 15-1199 151199 Computer, Math
## 18613 15-1121 151121 Computer, Math
## 18614 13-2011 132011 Business, Finance
## 18615 15-1132 151132 Computer, Math
## 18616 15-1121 151121 Computer, Math
## 18617 15-1132 151132 Computer, Math
## 18618 15-1132 151132 Computer, Math
## 18619 15-1121 151121 Computer, Math
## 18620 15-1132 151132 Computer, Math
## 18621 15-1199 151199 Computer, Math
## 18622 15-1133 151133 Computer, Math
## 18623 15-1132 151132 Computer, Math
## 18624 15-1133 151133 Computer, Math
## 18625 15-1131 151131 Computer, Math
## 18626 15-1132 151132 Computer, Math
## 18627 15-1132 151132 Computer, Math
## 18628 17-2112 172112 Architecture, Engineer
## 18629 15-1131 151131 Computer, Math
## 18630 15-1199 151199 Computer, Math
## 18631 15-1121 151121 Computer, Math
## 18632 15-1131 151131 Computer, Math
## 18633 15-1121 151121 Computer, Math
## 18634 29-1069 291069 Healthcare Practitioner
## 18635 15-1133 151133 Computer, Math
## 18636 15-1132 151132 Computer, Math
## 18637 15-1199 151199 Computer, Math
## 18638 15-1132 151132 Computer, Math
## 18639 11-9111 119111 Management
## 18640 15-1121 151121 Computer, Math
## 18641 15-1199 151199 Computer, Math
## 18642 15-1132 151132 Computer, Math
## 18643 11-3021 113021 Management
## 18644 15-1132 151132 Computer, Math
## 18645 15-1133 151133 Computer, Math
## 18646 15-1132 151132 Computer, Math
## 18647 15-1121 151121 Computer, Math
## 18648 15-1132 151132 Computer, Math
## 18649 15-1133 151133 Computer, Math
## 18650 15-1132 151132 Computer, Math
## 18651 15-1199 151199 Computer, Math
## 18652 15-1121 151121 Computer, Math
## 18653 15-2031 152031 Computer, Math
## 18654 15-1134 151134 Computer, Math
## 18655 15-1132 151132 Computer, Math
## 18656 15-1121 151121 Computer, Math
## 18657 15-1132 151132 Computer, Math
## 18658 17-2141 172141 Architecture, Engineer
## 18659 13-2051 132051 Business, Finance
## 18660 15-1199 151199 Computer, Math
## 18661 29-1021 291021 Healthcare Practitioner
## 18662 13-2011 132011 Business, Finance
## 18663 15-1132 151132 Computer, Math
## 18664 15-1121 151121 Computer, Math
## 18665 15-2041 152041 Computer, Math
## 18666 15-1121 151121 Computer, Math
## 18667 15-1132 151132 Computer, Math
## 18668 15-1121 151121 Computer, Math
## 18669 15-1132 151132 Computer, Math
## 18670 15-1121 151121 Computer, Math
## 18671 15-2011 152011 Computer, Math
## 18672 15-1199 151199 Computer, Math
## 18673 15-1132 151132 Computer, Math
## 18674 15-1132 151132 Computer, Math
## 18675 15-1132 151132 Computer, Math
## 18676 15-1133 151133 Computer, Math
## 18677 15-1132 151132 Computer, Math
## 18678 29-1051 291051 Healthcare Practitioner
## 18679 15-1199 151199 Computer, Math
## 18680 15-1132 151132 Computer, Math
## 18681 15-1132 151132 Computer, Math
## 18682 15-1132 151132 Computer, Math
## 18683 29-1021 291021 Healthcare Practitioner
## 18684 41-9031 419031 Sales
## 18685 15-1132 151132 Computer, Math
## 18686 13-1111 131111 Business, Finance
## 18687 15-1199 151199 Computer, Math
## 18688 15-1142 151142 Computer, Math
## 18689 15-1121 151121 Computer, Math
## 18690 15-1132 151132 Computer, Math
## 18691 15-1199 151199 Computer, Math
## 18692 15-1132 151132 Computer, Math
## 18693 15-1199 151199 Computer, Math
## 18694 23-1011 231011 Legal
## 18695 15-1133 151133 Computer, Math
## 18696 13-2099 132099 Business, Finance
## 18697 15-1132 151132 Computer, Math
## 18698 15-1132 151132 Computer, Math
## 18699 15-1131 151131 Computer, Math
## 18700 15-1132 151132 Computer, Math
## 18701 15-1132 151132 Computer, Math
## 18702 27-1024 271024 Media, Design
## 18703 15-1131 151131 Computer, Math
## 18704 15-2041 152041 Computer, Math
## 18705 15-1132 151132 Computer, Math
## 18706 15-1132 151132 Computer, Math
## 18707 13-2011 132011 Business, Finance
## 18708 19-2031 192031 Life, Physcial, Social Science
## 18709 15-1132 151132 Computer, Math
## 18710 15-1132 151132 Computer, Math
## 18711 15-1199 151199 Computer, Math
## 18712 15-1199 151199 Computer, Math
## 18713 29-1011 291011 Healthcare Practitioner
## 18714 15-1199 151199 Computer, Math
## 18715 15-1132 151132 Computer, Math
## 18716 15-1132 151132 Computer, Math
## 18717 15-1132 151132 Computer, Math
## 18718 15-1121 151121 Computer, Math
## 18719 17-1011 171011 Architecture, Engineer
## 18720 15-1199 151199 Computer, Math
## 18721 15-1199 151199 Computer, Math
## 18722 15-1199 151199 Computer, Math
## 18723 17-2199 172199 Architecture, Engineer
## 18724 15-1199 151199 Computer, Math
## 18725 15-1199 151199 Computer, Math
## 18726 11-9021 119021 Management
## 18727 15-1132 151132 Computer, Math
## 18728 11-3031 113031 Management
## 18729 15-1199 151199 Computer, Math
## 18730 13-1111 131111 Business, Finance
## 18731 15-1122 151122 Computer, Math
## 18732 15-1131 151131 Computer, Math
## 18733 15-1142 151142 Computer, Math
## 18734 15-1199 151199 Computer, Math
## 18735 15-1132 151132 Computer, Math
## 18736 15-1121 151121 Computer, Math
## 18737 15-2041 152041 Computer, Math
## 18738 15-1199 151199 Computer, Math
## 18739 13-2051 132051 Business, Finance
## 18740 15-1199 151199 Computer, Math
## 18741 15-1199 151199 Computer, Math
## 18742 15-2031 152031 Computer, Math
## 18743 17-1021 171021 Architecture, Engineer
## 18744 29-1069 291069 Healthcare Practitioner
## 18745 15-1131 151131 Computer, Math
## 18746 15-2031 152031 Computer, Math
## 18747 15-1132 151132 Computer, Math
## 18748 15-1121 151121 Computer, Math
## 18749 15-1199 151199 Computer, Math
## 18750 15-1199 151199 Computer, Math
## 18751 25-1067 251067 Education, Training
## 18752 15-1199 151199 Computer, Math
## 18753 15-1142 151142 Computer, Math
## 18754 15-1121 151121 Computer, Math
## 18755 15-1132 151132 Computer, Math
## 18756 15-1132 151132 Computer, Math
## 18757 19-3039 193039 Life, Physcial, Social Science
## 18758 29-1123 291123 Healthcare Practitioner
## 18759 15-1132 151132 Computer, Math
## 18760 15-1132 151132 Computer, Math
## 18761 11-3021 113021 Management
## 18762 15-1132 151132 Computer, Math
## 18763 15-1132 151132 Computer, Math
## 18764 15-1132 151132 Computer, Math
## 18765 15-1132 151132 Computer, Math
## 18766 15-1111 151111 Computer, Math
## 18767 15-1134 151134 Computer, Math
## 18768 15-2041 152041 Computer, Math
## 18769 15-1121 151121 Computer, Math
## 18770 13-1161 131161 Business, Finance
## 18771 17-2071 172071 Architecture, Engineer
## 18772 19-1029 191029 Life, Physcial, Social Science
## 18773 19-1021 191021 Life, Physcial, Social Science
## 18774 17-2031 172031 Architecture, Engineer
## 18775 15-1133 151133 Computer, Math
## 18776 15-1199 151199 Computer, Math
## 18777 15-1132 151132 Computer, Math
## 18778 15-1132 151132 Computer, Math
## 18779 13-1111 131111 Business, Finance
## 18780 15-1132 151132 Computer, Math
## 18781 15-1132 151132 Computer, Math
## 18782 15-1199 151199 Computer, Math
## 18783 15-1133 151133 Computer, Math
## 18784 15-2041 152041 Computer, Math
## 18785 15-1132 151132 Computer, Math
## 18786 15-1132 151132 Computer, Math
## 18787 15-1133 151133 Computer, Math
## 18788 15-1132 151132 Computer, Math
## 18789 17-2141 172141 Architecture, Engineer
## 18790 13-1111 131111 Business, Finance
## 18791 15-1131 151131 Computer, Math
## 18792 15-1121 151121 Computer, Math
## 18793 19-1042 191042 Life, Physcial, Social Science
## 18794 15-1133 151133 Computer, Math
## 18795 15-1132 151132 Computer, Math
## 18796 15-1131 151131 Computer, Math
## 18797 15-1133 151133 Computer, Math
## 18798 15-1132 151132 Computer, Math
## 18799 15-1132 151132 Computer, Math
## 18800 17-2141 172141 Architecture, Engineer
## 18801 17-2072 172072 Architecture, Engineer
## 18802 15-1121 151121 Computer, Math
## 18803 13-1111 131111 Business, Finance
## 18804 15-1131 151131 Computer, Math
## 18805 15-1133 151133 Computer, Math
## 18806 15-1121 151121 Computer, Math
## 18807 15-1122 151122 Computer, Math
## 18808 15-1132 151132 Computer, Math
## 18809 11-3071 113071 Management
## 18810 15-1151 151151 Computer, Math
## 18811 11-2021 112021 Management
## 18812 13-2051 132051 Business, Finance
## 18813 15-1132 151132 Computer, Math
## 18814 15-1122 151122 Computer, Math
## 18815 25-2022 252022 Education, Training
## 18816 15-1132 151132 Computer, Math
## 18817 15-1132 151132 Computer, Math
## 18818 15-1132 151132 Computer, Math
## 18819 15-1131 151131 Computer, Math
## 18820 15-2031 152031 Computer, Math
## 18821 15-1131 151131 Computer, Math
## 18822 15-1134 151134 Computer, Math
## 18823 15-1131 151131 Computer, Math
## 18824 15-1132 151132 Computer, Math
## 18825 15-1141 151141 Computer, Math
## 18826 15-1199 151199 Computer, Math
## 18827 19-1021 191021 Life, Physcial, Social Science
## 18828 15-1199 151199 Computer, Math
## 18829 15-1132 151132 Computer, Math
## 18830 15-1199 151199 Computer, Math
## 18831 17-2072 172072 Architecture, Engineer
## 18832 15-1132 151132 Computer, Math
## 18833 15-2031 152031 Computer, Math
## 18834 15-1132 151132 Computer, Math
## 18835 15-1121 151121 Computer, Math
## 18836 15-1133 151133 Computer, Math
## 18837 15-1132 151132 Computer, Math
## 18838 15-1142 151142 Computer, Math
## 18839 15-1199 151199 Computer, Math
## 18840 13-1161 131161 Business, Finance
## 18841 15-1132 151132 Computer, Math
## 18842 15-1121 151121 Computer, Math
## 18843 15-1132 151132 Computer, Math
## 18844 15-1132 151132 Computer, Math
## 18845 15-1133 151133 Computer, Math
## 18846 15-1199 151199 Computer, Math
## 18847 15-1132 151132 Computer, Math
## 18848 15-1199 151199 Computer, Math
## 18849 15-1121 151121 Computer, Math
## 18850 15-1121 151121 Computer, Math
## 18851 15-1131 151131 Computer, Math
## 18852 15-1199 151199 Computer, Math
## 18853 17-2112 172112 Architecture, Engineer
## 18854 15-1132 151132 Computer, Math
## 18855 15-1199 151199 Computer, Math
## 18856 15-1199 151199 Computer, Math
## 18857 15-1121 151121 Computer, Math
## 18858 15-1132 151132 Computer, Math
## 18859 15-1132 151132 Computer, Math
## 18860 13-1081 131081 Business, Finance
## 18861 19-1029 191029 Life, Physcial, Social Science
## 18862 15-1133 151133 Computer, Math
## 18863 15-1132 151132 Computer, Math
## 18864 13-2051 132051 Business, Finance
## 18865 13-2011 132011 Business, Finance
## 18866 15-1132 151132 Computer, Math
## 18867 15-1132 151132 Computer, Math
## 18868 17-2131 172131 Architecture, Engineer
## 18869 15-2031 152031 Computer, Math
## 18870 17-2141 172141 Architecture, Engineer
## 18871 15-1132 151132 Computer, Math
## 18872 15-1132 151132 Computer, Math
## 18873 17-2141 172141 Architecture, Engineer
## 18874 15-1199 151199 Computer, Math
## 18875 11-9111 119111 Management
## 18876 13-1161 131161 Business, Finance
## 18877 15-1132 151132 Computer, Math
## 18878 15-1133 151133 Computer, Math
## 18879 15-1142 151142 Computer, Math
## 18880 15-1199 151199 Computer, Math
## 18881 15-1199 151199 Computer, Math
## 18882 27-3041 273041 Media, Design
## 18883 15-1121 151121 Computer, Math
## 18884 15-1133 151133 Computer, Math
## 18885 15-1132 151132 Computer, Math
## 18886 15-1121 151121 Computer, Math
## 18887 15-1134 151134 Computer, Math
## 18888 15-1121 151121 Computer, Math
## 18889 15-1133 151133 Computer, Math
## 18890 15-1141 151141 Computer, Math
## 18891 15-1131 151131 Computer, Math
## 18892 15-1132 151132 Computer, Math
## 18893 15-1132 151132 Computer, Math
## 18894 15-1133 151133 Computer, Math
## 18895 15-1121 151121 Computer, Math
## 18896 15-1132 151132 Computer, Math
## 18897 25-1042 251042 Education, Training
## 18898 15-1132 151132 Computer, Math
## 18899 15-1132 151132 Computer, Math
## 18900 15-1121 151121 Computer, Math
## 18901 17-2112 172112 Architecture, Engineer
## 18902 15-1199 151199 Computer, Math
## 18903 15-1132 151132 Computer, Math
## 18904 15-1132 151132 Computer, Math
## 18905 41-9031 419031 Sales
## 18906 15-1142 151142 Computer, Math
## 18907 15-1132 151132 Computer, Math
## 18908 15-1132 151132 Computer, Math
## 18909 15-1132 151132 Computer, Math
## 18910 15-2031 152031 Computer, Math
## 18911 15-1132 151132 Computer, Math
## 18912 15-1132 151132 Computer, Math
## 18913 15-1143 151143 Computer, Math
## 18914 17-2031 172031 Architecture, Engineer
## 18915 15-1132 151132 Computer, Math
## 18916 29-1069 291069 Healthcare Practitioner
## 18917 15-1199 151199 Computer, Math
## 18918 15-2031 152031 Computer, Math
## 18919 15-1199 151199 Computer, Math
## 18920 27-1014 271014 Media, Design
## 18921 13-1161 131161 Business, Finance
## 18922 15-1131 151131 Computer, Math
## 18923 15-1143 151143 Computer, Math
## 18924 15-1121 151121 Computer, Math
## 18925 15-1132 151132 Computer, Math
## 18926 17-2141 172141 Architecture, Engineer
## 18927 15-1199 151199 Computer, Math
## 18928 15-1132 151132 Computer, Math
## 18929 19-1021 191021 Life, Physcial, Social Science
## 18930 11-3021 113021 Management
## 18931 15-1121 151121 Computer, Math
## 18932 15-1121 151121 Computer, Math
## 18933 15-1121 151121 Computer, Math
## 18934 15-1132 151132 Computer, Math
## 18935 15-2031 152031 Computer, Math
## 18936 15-1132 151132 Computer, Math
## 18937 15-1132 151132 Computer, Math
## 18938 17-2141 172141 Architecture, Engineer
## 18939 15-1131 151131 Computer, Math
## 18940 17-2072 172072 Architecture, Engineer
## 18941 15-1132 151132 Computer, Math
## 18942 15-1132 151132 Computer, Math
## 18943 15-1199 151199 Computer, Math
## 18944 17-2131 172131 Architecture, Engineer
## 18945 15-1132 151132 Computer, Math
## 18946 15-1199 151199 Computer, Math
## 18947 17-2199 172199 Architecture, Engineer
## 18948 13-2051 132051 Business, Finance
## 18949 15-1121 151121 Computer, Math
## 18950 15-1132 151132 Computer, Math
## 18951 17-2051 172051 Architecture, Engineer
## 18952 15-1121 151121 Computer, Math
## 18953 15-1132 151132 Computer, Math
## 18954 13-2011.00 132011 Business, Finance
## 18955 15-1132 151132 Computer, Math
## 18956 41-4011 414011 Sales
## 18957 15-1199 151199 Computer, Math
## 18958 15-1131 151131 Computer, Math
## 18959 15-1141 151141 Computer, Math
## 18960 15-1132 151132 Computer, Math
## 18961 29-1062 291062 Healthcare Practitioner
## 18962 15-1131 151131 Computer, Math
## 18963 15-1199 151199 Computer, Math
## 18964 15-1133 151133 Computer, Math
## 18965 13-2051 132051 Business, Finance
## 18966 15-1132 151132 Computer, Math
## 18967 13-2011 132011 Business, Finance
## 18968 15-2031 152031 Computer, Math
## 18969 15-1199 151199 Computer, Math
## 18970 15-1121 151121 Computer, Math
## 18971 15-1142 151142 Computer, Math
## 18972 15-1133 151133 Computer, Math
## 18973 43-9111 439111 Others
## 18974 15-1121 151121 Computer, Math
## 18975 15-1133 151133 Computer, Math
## 18976 15-1121 151121 Computer, Math
## 18977 15-1199 151199 Computer, Math
## 18978 15-1121 151121 Computer, Math
## 18979 15-1133 151133 Computer, Math
## 18980 17-2141 172141 Architecture, Engineer
## 18981 15-1132 151132 Computer, Math
## 18982 15-1121 151121 Computer, Math
## 18983 15-1132 151132 Computer, Math
## 18984 13-2011 132011 Business, Finance
## 18985 15-1132 151132 Computer, Math
## 18986 17-2141 172141 Architecture, Engineer
## 18987 15-1132 151132 Computer, Math
## 18988 13-2011 132011 Business, Finance
## 18989 11-2021 112021 Management
## 18990 15-2021 152021 Computer, Math
## 18991 29-1041 291041 Healthcare Practitioner
## 18992 17-2072 172072 Architecture, Engineer
## 18993 15-1199 151199 Computer, Math
## 18994 15-2031 152031 Computer, Math
## 18995 15-1132 151132 Computer, Math
## 18996 19-1042 191042 Life, Physcial, Social Science
## 18997 13-2011 132011 Business, Finance
## 18998 11-2022 112022 Management
## 18999 15-1132 151132 Computer, Math
## 19000 15-1132 151132 Computer, Math
## 19001 17-2072 172072 Architecture, Engineer
## 19002 15-2041 152041 Computer, Math
## 19003 15-1131 151131 Computer, Math
## 19004 15-1132 151132 Computer, Math
## 19005 17-2071 172071 Architecture, Engineer
## 19006 15-1199.01 151199 Computer, Math
## 19007 13-1111 131111 Business, Finance
## 19008 15-1121 151121 Computer, Math
## 19009 21-2011 212011 Social Service
## 19010 15-1121 151121 Computer, Math
## 19011 15-1121 151121 Computer, Math
## 19012 15-1133 151133 Computer, Math
## 19013 15-1132 151132 Computer, Math
## 19014 15-1121 151121 Computer, Math
## 19015 29-1021 291021 Healthcare Practitioner
## 19016 15-1141 151141 Computer, Math
## 19017 25-2053 252053 Education, Training
## 19018 15-1199 151199 Computer, Math
## 19019 19-1042 191042 Life, Physcial, Social Science
## 19020 15-1121 151121 Computer, Math
## 19021 15-1132 151132 Computer, Math
## 19022 15-1132 151132 Computer, Math
## 19023 15-1121 151121 Computer, Math
## 19024 15-1134 151134 Computer, Math
## 19025 15-1132 151132 Computer, Math
## 19026 19-2099 192099 Life, Physcial, Social Science
## 19027 15-1199 151199 Computer, Math
## 19028 15-1199 151199 Computer, Math
## 19029 15-1132 151132 Computer, Math
## 19030 15-1132 151132 Computer, Math
## 19031 15-1132 151132 Computer, Math
## 19032 15-1121 151121 Computer, Math
## 19033 13-2051 132051 Business, Finance
## 19034 15-1132 151132 Computer, Math
## 19035 15-1132 151132 Computer, Math
## 19036 11-1021 111021 Management
## 19037 15-1121 151121 Computer, Math
## 19038 15-1132 151132 Computer, Math
## 19039 15-1132 151132 Computer, Math
## 19040 15-1131 151131 Computer, Math
## 19041 17-2199 172199 Architecture, Engineer
## 19042 15-1132 151132 Computer, Math
## 19043 15-1121 151121 Computer, Math
## 19044 15-1121 151121 Computer, Math
## 19045 15-2041 152041 Computer, Math
## 19046 15-1121 151121 Computer, Math
## 19047 15-2041 152041 Computer, Math
## 19048 27-2022 272022 Media, Design
## 19049 15-1132 151132 Computer, Math
## 19050 15-1199 151199 Computer, Math
## 19051 15-1132 151132 Computer, Math
## 19052 15-1111 151111 Computer, Math
## 19053 11-9199 119199 Management
## 19054 11-3021 113021 Management
## 19055 11-3071 113071 Management
## 19056 15-1132 151132 Computer, Math
## 19057 11-9021 119021 Management
## 19058 15-1132 151132 Computer, Math
## 19059 11-3021 113021 Management
## 19060 13-2011 132011 Business, Finance
## 19061 15-1143 151143 Computer, Math
## 19062 13-1111 131111 Business, Finance
## 19063 15-1132 151132 Computer, Math
## 19064 15-1132 151132 Computer, Math
## 19065 15-1132 151132 Computer, Math
## 19066 15-1131 151131 Computer, Math
## 19067 15-1132 151132 Computer, Math
## 19068 15-1132 151132 Computer, Math
## 19069 13-1111 131111 Business, Finance
## 19070 15-1132 151132 Computer, Math
## 19071 15-1121 151121 Computer, Math
## 19072 15-1121 151121 Computer, Math
## 19073 15-1133 151133 Computer, Math
## 19074 15-1132 151132 Computer, Math
## 19075 15-1133 151133 Computer, Math
## 19076 15-1132 151132 Computer, Math
## 19077 19-2031 192031 Life, Physcial, Social Science
## 19078 15-1121 151121 Computer, Math
## 19079 15-1132 151132 Computer, Math
## 19080 15-1133 151133 Computer, Math
## 19081 19-3011 193011 Life, Physcial, Social Science
## 19082 15-1131 151131 Computer, Math
## 19083 25-1032 251032 Education, Training
## 19084 15-1121 151121 Computer, Math
## 19085 15-1131 151131 Computer, Math
## 19086 15-1142 151142 Computer, Math
## 19087 15-1132 151132 Computer, Math
## 19088 15-1132 151132 Computer, Math
## 19089 11-3031 113031 Management
## 19090 15-1199 151199 Computer, Math
## 19091 15-1132 151132 Computer, Math
## 19092 15-1133 151133 Computer, Math
## 19093 15-1199 151199 Computer, Math
## 19094 15-1132 151132 Computer, Math
## 19095 29-1021 291021 Healthcare Practitioner
## 19096 13-1111 131111 Business, Finance
## 19097 41-9031 419031 Sales
## 19098 15-1132 151132 Computer, Math
## 19099 15-1132 151132 Computer, Math
## 19100 15-1132 151132 Computer, Math
## 19101 13-1111 131111 Business, Finance
## 19102 13-1111 131111 Business, Finance
## 19103 15-1131 151131 Computer, Math
## 19104 15-1141 151141 Computer, Math
## 19105 15-1121 151121 Computer, Math
## 19106 15-1132 151132 Computer, Math
## 19107 13-2099 132099 Business, Finance
## 19108 15-1132 151132 Computer, Math
## 19109 15-1132 151132 Computer, Math
## 19110 11-3021 113021 Management
## 19111 15-1121 151121 Computer, Math
## 19112 15-1199 151199 Computer, Math
## 19113 15-1199 151199 Computer, Math
## 19114 15-2011 152011 Computer, Math
## 19115 15-1199 151199 Computer, Math
## 19116 19-2032 192032 Life, Physcial, Social Science
## 19117 15-1121 151121 Computer, Math
## 19118 15-1199 151199 Computer, Math
## 19119 15-1132 151132 Computer, Math
## 19120 15-1132 151132 Computer, Math
## 19121 15-1132 151132 Computer, Math
## 19122 15-1132 151132 Computer, Math
## 19123 15-1132 151132 Computer, Math
## 19124 13-1111 131111 Business, Finance
## 19125 15-1132 151132 Computer, Math
## 19126 11-3021 113021 Management
## 19127 15-1132 151132 Computer, Math
## 19128 15-1132 151132 Computer, Math
## 19129 15-1199 151199 Computer, Math
## 19130 15-1131 151131 Computer, Math
## 19131 15-1132 151132 Computer, Math
## 19132 15-2041 152041 Computer, Math
## 19133 15-1141 151141 Computer, Math
## 19134 17-2072 172072 Architecture, Engineer
## 19135 15-1133 151133 Computer, Math
## 19136 13-2051 132051 Business, Finance
## 19137 15-1121 151121 Computer, Math
## 19138 29-1127 291127 Healthcare Practitioner
## 19139 27-1025 271025 Media, Design
## 19140 15-1133 151133 Computer, Math
## 19141 15-1142 151142 Computer, Math
## 19142 15-1199 151199 Computer, Math
## 19143 15-1132 151132 Computer, Math
## 19144 25-9031 259031 Education, Training
## 19145 15-1121 151121 Computer, Math
## 19146 15-1132 151132 Computer, Math
## 19147 15-1132 151132 Computer, Math
## 19148 15-1132 151132 Computer, Math
## 19149 15-2031 152031 Computer, Math
## 19150 15-1132 151132 Computer, Math
## 19151 15-1132 151132 Computer, Math
## 19152 15-1133 151133 Computer, Math
## 19153 15-1132 151132 Computer, Math
## 19154 15-1132 151132 Computer, Math
## 19155 15-1132 151132 Computer, Math
## 19156 15-1132 151132 Computer, Math
## 19157 15-1132 151132 Computer, Math
## 19158 15-1134 151134 Computer, Math
## 19159 15-1132 151132 Computer, Math
## 19160 15-1132 151132 Computer, Math
## 19161 15-1132 151132 Computer, Math
## 19162 13-1111 131111 Business, Finance
## 19163 15-1121 151121 Computer, Math
## 19164 15-1132 151132 Computer, Math
## 19165 15-2031 152031 Computer, Math
## 19166 15-1121 151121 Computer, Math
## 19167 15-1132 151132 Computer, Math
## 19168 15-1143 151143 Computer, Math
## 19169 15-1132 151132 Computer, Math
## 19170 17-2051 172051 Architecture, Engineer
## 19171 41-9031 419031 Sales
## 19172 15-1141 151141 Computer, Math
## 19173 17-2071 172071 Architecture, Engineer
## 19174 15-1141 151141 Computer, Math
## 19175 15-1132 151132 Computer, Math
## 19176 15-1121 151121 Computer, Math
## 19177 15-1132 151132 Computer, Math
## 19178 13-1161 131161 Business, Finance
## 19179 15-1143 151143 Computer, Math
## 19180 15-1132 151132 Computer, Math
## 19181 13-1051 131051 Business, Finance
## 19182 15-1034 151034 Computer, Math
## 19183 15-1132 151132 Computer, Math
## 19184 15-1132 151132 Computer, Math
## 19185 13-1111 131111 Business, Finance
## 19186 15-1132 151132 Computer, Math
## 19187 19-1029 191029 Life, Physcial, Social Science
## 19188 15-1132 151132 Computer, Math
## 19189 15-1132 151132 Computer, Math
## 19190 27-1024 271024 Media, Design
## 19191 15-1142 151142 Computer, Math
## 19192 15-1152 151152 Computer, Math
## 19193 15-1132 151132 Computer, Math
## 19194 15-1132 151132 Computer, Math
## 19195 15-1132 151132 Computer, Math
## 19196 13-1161 131161 Business, Finance
## 19197 15-1132 151132 Computer, Math
## 19198 15-1132 151132 Computer, Math
## 19199 15-1132 151132 Computer, Math
## 19200 15-1132 151132 Computer, Math
## 19201 17-2051 172051 Architecture, Engineer
## 19202 15-1121 151121 Computer, Math
## 19203 19-1029 191029 Life, Physcial, Social Science
## 19204 15-1133 151133 Computer, Math
## 19205 13-2051 132051 Business, Finance
## 19206 15-1132 151132 Computer, Math
## 19207 15-1133 151133 Computer, Math
## 19208 11-3031 113031 Management
## 19209 17-2199 172199 Architecture, Engineer
## 19210 13-1111 131111 Business, Finance
## 19211 15-1132 151132 Computer, Math
## 19212 15-1111 151111 Computer, Math
## 19213 15-2031 152031 Computer, Math
## 19214 15-1132 151132 Computer, Math
## 19215 17-2061 172061 Architecture, Engineer
## 19216 15-1132 151132 Computer, Math
## 19217 15-1132 151132 Computer, Math
## 19218 15-1199 151199 Computer, Math
## 19219 15-1121 151121 Computer, Math
## 19220 15-1199 151199 Computer, Math
## 19221 15-2031 152031 Computer, Math
## 19222 19-2031 192031 Life, Physcial, Social Science
## 19223 17-2031 172031 Architecture, Engineer
## 19224 15-1131 151131 Computer, Math
## 19225 13-1041 131041 Business, Finance
## 19226 25-1071 251071 Education, Training
## 19227 17-2112 172112 Architecture, Engineer
## 19228 15-1121 151121 Computer, Math
## 19229 13-1041 131041 Business, Finance
## 19230 17-2061 172061 Architecture, Engineer
## 19231 15-1141 151141 Computer, Math
## 19232 15-1132 151132 Computer, Math
## 19233 15-1199 151199 Computer, Math
## 19234 15-1132 151132 Computer, Math
## 19235 15-1199 151199 Computer, Math
## 19236 15-1132 151132 Computer, Math
## 19237 15-1121 151121 Computer, Math
## 19238 15-1132 151132 Computer, Math
## 19239 15-1132 151132 Computer, Math
## 19240 15-1132 151132 Computer, Math
## 19241 11-2021 112021 Management
## 19242 13-2031 132031 Business, Finance
## 19243 17-2199 172199 Architecture, Engineer
## 19244 15-1132 151132 Computer, Math
## 19245 15-1134 151134 Computer, Math
## 19246 17-2131 172131 Architecture, Engineer
## 19247 13-1071 131071 Business, Finance
## 19248 15-1121 151121 Computer, Math
## 19249 13-2011 132011 Business, Finance
## 19250 15-1131 151131 Computer, Math
## 19251 15-1121 151121 Computer, Math
## 19252 17-2072 172072 Architecture, Engineer
## 19253 15-1133 151133 Computer, Math
## 19254 15-1121 151121 Computer, Math
## 19255 15-1199 151199 Computer, Math
## 19256 15-1132 151132 Computer, Math
## 19257 25-1011 251011 Education, Training
## 19258 15-2041 152041 Computer, Math
## 19259 15-2031 152031 Computer, Math
## 19260 15-1132 151132 Computer, Math
## 19261 15-1131 151131 Computer, Math
## 19262 15-1122 151122 Computer, Math
## 19263 15-1132 151132 Computer, Math
## 19264 15-1199 151199 Computer, Math
## 19265 15-1132 151132 Computer, Math
## 19266 13-2011 132011 Business, Finance
## 19267 25-1021 251021 Education, Training
## 19268 15-2031 152031 Computer, Math
## 19269 15-1121 151121 Computer, Math
## 19270 15-1199 151199 Computer, Math
## 19271 17-2051 172051 Architecture, Engineer
## 19272 17-2141 172141 Architecture, Engineer
## 19273 15-1121 151121 Computer, Math
## 19274 15-1132 151132 Computer, Math
## 19275 15-1131 151131 Computer, Math
## 19276 15-1121 151121 Computer, Math
## 19277 15-1121 151121 Computer, Math
## 19278 15-1132 151132 Computer, Math
## 19279 13-1111 131111 Business, Finance
## 19280 15-1132 151132 Computer, Math
## 19281 15-1132 151132 Computer, Math
## 19282 15-1133 151133 Computer, Math
## 19283 15-1132 151132 Computer, Math
## 19284 13-2051 132051 Business, Finance
## 19285 15-1132 151132 Computer, Math
## 19286 25-2021 252021 Education, Training
## 19287 15-1132 151132 Computer, Math
## 19288 15-1121 151121 Computer, Math
## 19289 25-1053 251053 Education, Training
## 19290 17-2141 172141 Architecture, Engineer
## 19291 15-1132 151132 Computer, Math
## 19292 15-1133 151133 Computer, Math
## 19293 15-1121 151121 Computer, Math
## 19294 13-1111 131111 Business, Finance
## 19295 15-1132 151132 Computer, Math
## 19296 15-1121 151121 Computer, Math
## 19297 15-1132 151132 Computer, Math
## 19298 15-1132 151132 Computer, Math
## 19299 19-1042 191042 Life, Physcial, Social Science
## 19300 17-2071 172071 Architecture, Engineer
## 19301 15-1131 151131 Computer, Math
## 19302 15-1133 151133 Computer, Math
## 19303 15-1132 151132 Computer, Math
## 19304 17-1011 171011 Architecture, Engineer
## 19305 15-2031 152031 Computer, Math
## 19306 15-1132 151132 Computer, Math
## 19307 15-1132 151132 Computer, Math
## 19308 15-1121 151121 Computer, Math
## 19309 15-1132 151132 Computer, Math
## 19310 25-2031 252031 Education, Training
## 19311 25-1011 251011 Education, Training
## 19312 15-1132 151132 Computer, Math
## 19313 15-1121 151121 Computer, Math
## 19314 27-3031 273031 Media, Design
## 19315 15-1133 151133 Computer, Math
## 19316 15-1143 151143 Computer, Math
## 19317 15-1131 151131 Computer, Math
## 19318 15-1121 151121 Computer, Math
## 19319 15-1121 151121 Computer, Math
## 19320 17-1011 171011 Architecture, Engineer
## 19321 15-1132 151132 Computer, Math
## 19322 15-1132 151132 Computer, Math
## 19323 15-1131 151131 Computer, Math
## 19324 15-2031 152031 Computer, Math
## 19325 15-1132 151132 Computer, Math
## 19326 13-1111 131111 Business, Finance
## 19327 15-1121 151121 Computer, Math
## 19328 15-1199 151199 Computer, Math
## 19329 15-1122 151122 Computer, Math
## 19330 15-1132 151132 Computer, Math
## 19331 19-3031 193031 Life, Physcial, Social Science
## 19332 15-1132 151132 Computer, Math
## 19333 17-2141 172141 Architecture, Engineer
## 19334 13-1111 131111 Business, Finance
## 19335 19-1042 191042 Life, Physcial, Social Science
## 19336 15-1133 151133 Computer, Math
## 19337 13-2011 132011 Business, Finance
## 19338 15-1132 151132 Computer, Math
## 19339 15-1132 151132 Computer, Math
## 19340 15-1199 151199 Computer, Math
## 19341 15-1131 151131 Computer, Math
## 19342 15-1132 151132 Computer, Math
## 19343 19-1042 191042 Life, Physcial, Social Science
## 19344 15-1121 151121 Computer, Math
## 19345 15-1133 151133 Computer, Math
## 19346 25-1063 251063 Education, Training
## 19347 15-1121 151121 Computer, Math
## 19348 15-1131 151131 Computer, Math
## 19349 15-1132 151132 Computer, Math
## 19350 15-1199 151199 Computer, Math
## 19351 15-1199 151199 Computer, Math
## 19352 15-1121 151121 Computer, Math
## 19353 15-1132 151132 Computer, Math
## 19354 15-1132 151132 Computer, Math
## 19355 17-3011 173011 Architecture, Engineer
## 19356 15-1132 151132 Computer, Math
## 19357 17-2081 172081 Architecture, Engineer
## 19358 15-1199 151199 Computer, Math
## 19359 15-1133 151133 Computer, Math
## 19360 15-1131 151131 Computer, Math
## 19361 15-1132 151132 Computer, Math
## 19362 15-1121 151121 Computer, Math
## 19363 17-2061 172061 Architecture, Engineer
## 19364 15-1132 151132 Computer, Math
## 19365 15-1199 151199 Computer, Math
## 19366 15-1132 151132 Computer, Math
## 19367 15-1199 151199 Computer, Math
## 19368 15-1143 151143 Computer, Math
## 19369 15-1121 151121 Computer, Math
## 19370 15-1132 151132 Computer, Math
## 19371 15-1121 151121 Computer, Math
## 19372 15-1121 151121 Computer, Math
## 19373 15-1132 151132 Computer, Math
## 19374 19-2031 192031 Life, Physcial, Social Science
## 19375 29-1069 291069 Healthcare Practitioner
## 19376 15-1121 151121 Computer, Math
## 19377 15-1133 151133 Computer, Math
## 19378 17-3011 173011 Architecture, Engineer
## 19379 15-1134 151134 Computer, Math
## 19380 15-1131 151131 Computer, Math
## 19381 15-1132 151132 Computer, Math
## 19382 15-1199 151199 Computer, Math
## 19383 29-1069 291069 Healthcare Practitioner
## 19384 11-3031 113031 Management
## 19385 15-1132 151132 Computer, Math
## 19386 15-1199 151199 Computer, Math
## 19387 15-1131 151131 Computer, Math
## 19388 15-1142 151142 Computer, Math
## 19389 15-1121 151121 Computer, Math
## 19390 29-1127 291127 Healthcare Practitioner
## 19391 17-2141 172141 Architecture, Engineer
## 19392 15-1132 151132 Computer, Math
## 19393 19-2031 192031 Life, Physcial, Social Science
## 19394 17-2051 172051 Architecture, Engineer
## 19395 13-2011 132011 Business, Finance
## 19396 15-1199 151199 Computer, Math
## 19397 17-2081 172081 Architecture, Engineer
## 19398 27-1024 271024 Media, Design
## 19399 13-1111 131111 Business, Finance
## 19400 13-2051 132051 Business, Finance
## 19401 11-3021 113021 Management
## 19402 15-1132 151132 Computer, Math
## 19403 15-1121 151121 Computer, Math
## 19404 15-1121 151121 Computer, Math
## 19405 15-1132 151132 Computer, Math
## 19406 15-1121 151121 Computer, Math
## 19407 15-1199 151199 Computer, Math
## 19408 15-1132 151132 Computer, Math
## 19409 15-1132 151132 Computer, Math
## 19410 15-2041 152041 Computer, Math
## 19411 19-4021 194021 Life, Physcial, Social Science
## 19412 15-1132 151132 Computer, Math
## 19413 25-1071 251071 Education, Training
## 19414 15-1121 151121 Computer, Math
## 19415 15-1142 151142 Computer, Math
## 19416 13-1111 131111 Business, Finance
## 19417 15-1199 151199 Computer, Math
## 19418 15-1199 151199 Computer, Math
## 19419 17-2072 172072 Architecture, Engineer
## 19420 15-1131 151131 Computer, Math
## 19421 15-1132 151132 Computer, Math
## 19422 15-1121 151121 Computer, Math
## 19423 15-1132 151132 Computer, Math
## 19424 15-1121 151121 Computer, Math
## 19425 15-1121 151121 Computer, Math
## 19426 15-1132 151132 Computer, Math
## 19427 15-1121 151121 Computer, Math
## 19428 15-1132 151132 Computer, Math
## 19429 15-1132 151132 Computer, Math
## 19430 15-1142 151142 Computer, Math
## 19431 19-1021 191021 Life, Physcial, Social Science
## 19432 27-1024 271024 Media, Design
## 19433 15-1121 151121 Computer, Math
## 19434 15-1121 151121 Computer, Math
## 19435 15-1132 151132 Computer, Math
## 19436 25-1022 251022 Education, Training
## 19437 15-1132 151132 Computer, Math
## 19438 15-2031 152031 Computer, Math
## 19439 15-1132 151132 Computer, Math
## 19440 15-1121 151121 Computer, Math
## 19441 15-1134 151134 Computer, Math
## 19442 15-1132 151132 Computer, Math
## 19443 15-1199 151199 Computer, Math
## 19444 15-1132 151132 Computer, Math
## 19445 17-2199 172199 Architecture, Engineer
## 19446 19-1012 191012 Life, Physcial, Social Science
## 19447 15-1141 151141 Computer, Math
## 19448 15-1132 151132 Computer, Math
## 19449 17-2141 172141 Architecture, Engineer
## 19450 15-1121 151121 Computer, Math
## 19451 13-2011 132011 Business, Finance
## 19452 11-3021 113021 Management
## 19453 15-1199 151199 Computer, Math
## 19454 13-1161 131161 Business, Finance
## 19455 15-1121 151121 Computer, Math
## 19456 15-1121 151121 Computer, Math
## 19457 29-1021 291021 Healthcare Practitioner
## 19458 29-1063 291063 Healthcare Practitioner
## 19459 17-2072 172072 Architecture, Engineer
## 19460 15-1199 151199 Computer, Math
## 19461 25-1011 251011 Education, Training
## 19462 15-1131 151131 Computer, Math
## 19463 15-1132 151132 Computer, Math
## 19464 15-1133 151133 Computer, Math
## 19465 17-3011 173011 Architecture, Engineer
## 19466 15-1121 151121 Computer, Math
## 19467 15-1132 151132 Computer, Math
## 19468 15-1121 151121 Computer, Math
## 19469 19-1029 191029 Life, Physcial, Social Science
## 19470 29-2011 292011 Healthcare Practitioner
## 19471 15-1121 151121 Computer, Math
## 19472 15-1199 151199 Computer, Math
## 19473 15-1132 151132 Computer, Math
## 19474 15-1121 151121 Computer, Math
## 19475 15-1133 151133 Computer, Math
## 19476 17-2141 172141 Architecture, Engineer
## 19477 15-1133 151133 Computer, Math
## 19478 15-1199 151199 Computer, Math
## 19479 15-1132 151132 Computer, Math
## 19480 15-1132 151132 Computer, Math
## 19481 15-1133 151133 Computer, Math
## 19482 15-1199 151199 Computer, Math
## 19483 17-2141 172141 Architecture, Engineer
## 19484 15-1199 151199 Computer, Math
## 19485 15-1132 151132 Computer, Math
## 19486 15-1132 151132 Computer, Math
## 19487 15-1132 151132 Computer, Math
## 19488 15-2041 152041 Computer, Math
## 19489 17-2051 172051 Architecture, Engineer
## 19490 13-1111 131111 Business, Finance
## 19491 19-2031 192031 Life, Physcial, Social Science
## 19492 15-1132 151132 Computer, Math
## 19493 15-1132 151132 Computer, Math
## 19494 15-1132 151132 Computer, Math
## 19495 11-3021 113021 Management
## 19496 25-2011 252011 Education, Training
## 19497 15-1199 151199 Computer, Math
## 19498 15-1199 151199 Computer, Math
## 19499 15-1143 151143 Computer, Math
## 19500 15-1132 151132 Computer, Math
## 19501 11-3071 113071 Management
## 19502 13-1051 131051 Business, Finance
## 19503 19-2031 192031 Life, Physcial, Social Science
## 19504 11-9151 119151 Management
## 19505 15-1132 151132 Computer, Math
## 19506 15-1121 151121 Computer, Math
## 19507 15-1132 151132 Computer, Math
## 19508 15-1132 151132 Computer, Math
## 19509 29-1123 291123 Healthcare Practitioner
## 19510 15-1132 151132 Computer, Math
## 19511 15-1132 151132 Computer, Math
## 19512 15-1141 151141 Computer, Math
## 19513 15-2031 152031 Computer, Math
## 19514 15-1132 151132 Computer, Math
## 19515 15-1131 151131 Computer, Math
## 19516 15-1121 151121 Computer, Math
## 19517 15-2041 152041 Computer, Math
## 19518 15-1132 151132 Computer, Math
## 19519 15-2031 152031 Computer, Math
## 19520 15-1121 151121 Computer, Math
## 19521 15-1121 151121 Computer, Math
## 19522 15-1132 151132 Computer, Math
## 19523 13-1161 131161 Business, Finance
## 19524 15-1121 151121 Computer, Math
## 19525 13-2051 132051 Business, Finance
## 19526 15-1199 151199 Computer, Math
## 19527 13-1111 131111 Business, Finance
## 19528 15-1121 151121 Computer, Math
## 19529 15-1121 151121 Computer, Math
## 19530 15-1199 151199 Computer, Math
## 19531 15-1143 151143 Computer, Math
## 19532 15-1132 151132 Computer, Math
## 19533 15-1132 151132 Computer, Math
## 19534 41-9031 419031 Sales
## 19535 15-1141 151141 Computer, Math
## 19536 21-1022 211022 Social Service
## 19537 17-2199 172199 Architecture, Engineer
## 19538 15-1121 151121 Computer, Math
## 19539 15-1199 151199 Computer, Math
## 19540 15-1132 151132 Computer, Math
## 19541 13-2051 132051 Business, Finance
## 19542 15-1199 151199 Computer, Math
## 19543 15-1132 151132 Computer, Math
## 19544 15-1199 151199 Computer, Math
## 19545 15-1132 151132 Computer, Math
## 19546 19-1013 191013 Life, Physcial, Social Science
## 19547 11-9081 119081 Management
## 19548 11-9151 119151 Management
## 19549 19-1099 191099 Life, Physcial, Social Science
## 19550 15-1132 151132 Computer, Math
## 19551 15-1132 151132 Computer, Math
## 19552 15-1132 151132 Computer, Math
## 19553 17-2141 172141 Architecture, Engineer
## 19554 29-2011 292011 Healthcare Practitioner
## 19555 15-2021 152021 Computer, Math
## 19556 15-1199 151199 Computer, Math
## 19557 19-1029 191029 Life, Physcial, Social Science
## 19558 29-1123 291123 Healthcare Practitioner
## 19559 15-1131 151131 Computer, Math
## 19560 15-1131 151131 Computer, Math
## 19561 17-2072 172072 Architecture, Engineer
## 19562 15-1133 151133 Computer, Math
## 19563 25-9031 259031 Education, Training
## 19564 15-1131 151131 Computer, Math
## 19565 15-1132 151132 Computer, Math
## 19566 15-1131 151131 Computer, Math
## 19567 15-1132 151132 Computer, Math
## 19568 15-1121 151121 Computer, Math
## 19569 15-1132 151132 Computer, Math
## 19570 15-1199 151199 Computer, Math
## 19571 15-1132 151132 Computer, Math
## 19572 29-1021 291021 Healthcare Practitioner
## 19573 19-2099 192099 Life, Physcial, Social Science
## 19574 15-1199 151199 Computer, Math
## 19575 13-1161 131161 Business, Finance
## 19576 15-1132 151132 Computer, Math
## 19577 15-1132 151132 Computer, Math
## 19578 13-2051 132051 Business, Finance
## 19579 27-1024 271024 Media, Design
## 19580 11-3021 113021 Management
## 19581 15-1121 151121 Computer, Math
## 19582 11-9111 119111 Management
## 19583 15-1132 151132 Computer, Math
## 19584 15-2031 152031 Computer, Math
## 19585 15-1121 151121 Computer, Math
## 19586 15-2041 152041 Computer, Math
## 19587 15-2031 152031 Computer, Math
## 19588 15-1132 151132 Computer, Math
## 19589 15-1121 151121 Computer, Math
## 19590 15-1199 151199 Computer, Math
## 19591 11-3021 113021 Management
## 19592 19-1021 191021 Life, Physcial, Social Science
## 19593 15-1199 151199 Computer, Math
## 19594 17-2131 172131 Architecture, Engineer
## 19595 41-9031 419031 Sales
## 19596 15-1132 151132 Computer, Math
## 19597 17-2141 172141 Architecture, Engineer
## 19598 15-1131 151131 Computer, Math
## 19599 17-2112 172112 Architecture, Engineer
## 19600 15-1199 151199 Computer, Math
## 19601 29-9099 299099 Healthcare Practitioner
## 19602 15-1132 151132 Computer, Math
## 19603 15-1131 151131 Computer, Math
## 19604 15-1132 151132 Computer, Math
## 19605 15-1121 151121 Computer, Math
## 19606 15-1199 151199 Computer, Math
## 19607 15-1121 151121 Computer, Math
## 19608 15-1132 151132 Computer, Math
## 19609 13-2051 132051 Business, Finance
## 19610 25-2031 252031 Education, Training
## 19611 15-1132 151132 Computer, Math
## 19612 15-2041 152041 Computer, Math
## 19613 15-1121 151121 Computer, Math
## 19614 15-1132 151132 Computer, Math
## 19615 15-1132 151132 Computer, Math
## 19616 15-1141 151141 Computer, Math
## 19617 15-1199 151199 Computer, Math
## 19618 15-1132 151132 Computer, Math
## 19619 15-2031 152031 Computer, Math
## 19620 13-1081 131081 Business, Finance
## 19621 15-1122 151122 Computer, Math
## 19622 15-1132 151132 Computer, Math
## 19623 15-1121 151121 Computer, Math
## 19624 15-1133 151133 Computer, Math
## 19625 19-1021 191021 Life, Physcial, Social Science
## 19626 17-2199 172199 Architecture, Engineer
## 19627 15-1133 151133 Computer, Math
## 19628 13-1111 131111 Business, Finance
## 19629 15-2031 152031 Computer, Math
## 19630 15-1121 151121 Computer, Math
## 19631 15-1132 151132 Computer, Math
## 19632 15-1132 151132 Computer, Math
## 19633 17-2061 172061 Architecture, Engineer
## 19634 15-1133 151133 Computer, Math
## 19635 15-1121 151121 Computer, Math
## 19636 15-1121 151121 Computer, Math
## 19637 15-1131 151131 Computer, Math
## 19638 29-1069 291069 Healthcare Practitioner
## 19639 13-1161 131161 Business, Finance
## 19640 15-1133 151133 Computer, Math
## 19641 13-2011 132011 Business, Finance
## 19642 25-1071 251071 Education, Training
## 19643 15-1121 151121 Computer, Math
## 19644 15-1199 151199 Computer, Math
## 19645 15-1121 151121 Computer, Math
## 19646 15-1199 151199 Computer, Math
## 19647 15-1132 151132 Computer, Math
## 19648 15-1132 151132 Computer, Math
## 19649 25-1051 251051 Education, Training
## 19650 15-1132 151132 Computer, Math
## 19651 15-1121 151121 Computer, Math
## 19652 15-1121 151121 Computer, Math
## 19653 13-1111 131111 Business, Finance
## 19654 19-2031 192031 Life, Physcial, Social Science
## 19655 29-1131 291131 Healthcare Practitioner
## 19656 15-1132 151132 Computer, Math
## 19657 17-2141 172141 Architecture, Engineer
## 19658 13-2051 132051 Business, Finance
## 19659 13-2051 132051 Business, Finance
## 19660 17-2071 172071 Architecture, Engineer
## 19661 15-1199 151199 Computer, Math
## 19662 29-2011 292011 Healthcare Practitioner
## 19663 17-2112 172112 Architecture, Engineer
## 19664 15-1132 151132 Computer, Math
## 19665 13-2011 132011 Business, Finance
## 19666 15-1121 151121 Computer, Math
## 19667 15-1133 151133 Computer, Math
## 19668 15-1133 151133 Computer, Math
## 19669 17-2131 172131 Architecture, Engineer
## 19670 17-2112 172112 Architecture, Engineer
## 19671 15-2011 152011 Computer, Math
## 19672 15-1132 151132 Computer, Math
## 19673 43-4161 434161 Others
## 19674 15-1132 151132 Computer, Math
## 19675 15-1132 151132 Computer, Math
## 19676 15-1131 151131 Computer, Math
## 19677 13-2099 132099 Business, Finance
## 19678 15-1133 151133 Computer, Math
## 19679 15-1121 151121 Computer, Math
## 19680 15-1121 151121 Computer, Math
## 19681 15-1132 151132 Computer, Math
## 19682 11-9111 119111 Management
## 19683 15-1121 151121 Computer, Math
## 19684 15-1199 151199 Computer, Math
## 19685 15-1132 151132 Computer, Math
## 19686 15-1132 151132 Computer, Math
## 19687 15-2041 152041 Computer, Math
## 19688 15-1132 151132 Computer, Math
## 19689 15-1132 151132 Computer, Math
## 19690 15-1121 151121 Computer, Math
## 19691 15-1132 151132 Computer, Math
## 19692 15-1199 151199 Computer, Math
## 19693 15-1121 151121 Computer, Math
## 19694 15-1121 151121 Computer, Math
## 19695 15-1141 151141 Computer, Math
## 19696 15-1132 151132 Computer, Math
## 19697 15-1199 151199 Computer, Math
## 19698 15-1121 151121 Computer, Math
## 19699 15-1132 151132 Computer, Math
## 19700 41-9031 419031 Sales
## 19701 19-3011 193011 Life, Physcial, Social Science
## 19702 15-2031 152031 Computer, Math
## 19703 13-2099 132099 Business, Finance
## 19704 17-2112 172112 Architecture, Engineer
## 19705 15-1121 151121 Computer, Math
## 19706 15-1121 151121 Computer, Math
## 19707 15-1199 151199 Computer, Math
## 19708 15-1132 151132 Computer, Math
## 19709 15-1199 151199 Computer, Math
## 19710 19-1042 191042 Life, Physcial, Social Science
## 19711 15-1141 151141 Computer, Math
## 19712 19-1042 191042 Life, Physcial, Social Science
## 19713 25-1032 251032 Education, Training
## 19714 17-2112 172112 Architecture, Engineer
## 19715 15-1132 151132 Computer, Math
## 19716 15-1131 151131 Computer, Math
## 19717 15-1132 151132 Computer, Math
## 19718 17-2141 172141 Architecture, Engineer
## 19719 29-1069 291069 Healthcare Practitioner
## 19720 15-1199 151199 Computer, Math
## 19721 15-1142 151142 Computer, Math
## 19722 17-2112 172112 Architecture, Engineer
## 19723 15-1199 151199 Computer, Math
## 19724 13-2051 132051 Business, Finance
## 19725 15-1133 151133 Computer, Math
## 19726 15-1132 151132 Computer, Math
## 19727 17-2112 172112 Architecture, Engineer
## 19728 15-1121 151121 Computer, Math
## 19729 17-2081 172081 Architecture, Engineer
## 19730 25-1071 251071 Education, Training
## 19731 15-1199 151199 Computer, Math
## 19732 15-1199 151199 Computer, Math
## 19733 15-1133 151133 Computer, Math
## 19734 17-2141 172141 Architecture, Engineer
## 19735 15-1152 151152 Computer, Math
## 19736 15-1121 151121 Computer, Math
## 19737 15-1132 151132 Computer, Math
## 19738 15-1121 151121 Computer, Math
## 19739 15-1132 151132 Computer, Math
## 19740 17-2041 172041 Architecture, Engineer
## 19741 15-1132 151132 Computer, Math
## 19742 19-2031 192031 Life, Physcial, Social Science
## 19743 15-1121 151121 Computer, Math
## 19744 15-1141 151141 Computer, Math
## 19745 11-2022 112022 Management
## 19746 15-1121 151121 Computer, Math
## 19747 15-2011 152011 Computer, Math
## 19748 15-1132 151132 Computer, Math
## 19749 15-1121 151121 Computer, Math
## 19750 17-2051 172051 Architecture, Engineer
## 19751 15-1132 151132 Computer, Math
## 19752 15-1132 151132 Computer, Math
## 19753 15-1134 151134 Computer, Math
## 19754 15-1132 151132 Computer, Math
## 19755 15-1132 151132 Computer, Math
## 19756 15-1132 151132 Computer, Math
## 19757 27-3091 273091 Media, Design
## 19758 15-1132 151132 Computer, Math
## 19759 15-1132 151132 Computer, Math
## 19760 11-3031 113031 Management
## 19761 15-1132 151132 Computer, Math
## 19762 15-1199 151199 Computer, Math
## 19763 15-1121 151121 Computer, Math
## 19764 19-1021 191021 Life, Physcial, Social Science
## 19765 17-2072 172072 Architecture, Engineer
## 19766 29-2011 292011 Healthcare Practitioner
## 19767 15-1132 151132 Computer, Math
## 19768 15-1132 151132 Computer, Math
## 19769 15-1199 151199 Computer, Math
## 19770 15-1132 151132 Computer, Math
## 19771 15-1132 151132 Computer, Math
## 19772 15-1132 151132 Computer, Math
## 19773 17-2061 172061 Architecture, Engineer
## 19774 17-2041 172041 Architecture, Engineer
## 19775 15-1132 151132 Computer, Math
## 19776 25-1199 251199 Education, Training
## 19777 15-1133 151133 Computer, Math
## 19778 15-1134 151134 Computer, Math
## 19779 15-1142 151142 Computer, Math
## 19780 15-1132 151132 Computer, Math
## 19781 15-1132 151132 Computer, Math
## 19782 17-2071 172071 Architecture, Engineer
## 19783 41-9031 419031 Sales
## 19784 17-2141 172141 Architecture, Engineer
## 19785 15-1121 151121 Computer, Math
## 19786 15-1142 151142 Computer, Math
## 19787 13-1041 131041 Business, Finance
## 19788 13-1161 131161 Business, Finance
## 19789 15-1121 151121 Computer, Math
## 19790 15-1111 151111 Computer, Math
## 19791 15-1132 151132 Computer, Math
## 19792 15-1134 151134 Computer, Math
## 19793 15-1121 151121 Computer, Math
## 19794 29-1063 291063 Healthcare Practitioner
## 19795 19-3011 193011 Life, Physcial, Social Science
## 19796 13-2011 132011 Business, Finance
## 19797 15-1131 151131 Computer, Math
## 19798 21-1029 211029 Social Service
## 19799 15-1132 151132 Computer, Math
## 19800 13-2099 132099 Business, Finance
## 19801 15-1132 151132 Computer, Math
## 19802 15-1121 151121 Computer, Math
## 19803 15-1142 151142 Computer, Math
## 19804 15-1121 151121 Computer, Math
## 19805 27-1024 271024 Media, Design
## 19806 15-1133 151133 Computer, Math
## 19807 17-2112 172112 Architecture, Engineer
## 19808 15-1133 151133 Computer, Math
## 19809 15-1132 151132 Computer, Math
## 19810 15-1199 151199 Computer, Math
## 19811 15-1132 151132 Computer, Math
## 19812 15-1131 151131 Computer, Math
## 19813 13-1111 131111 Business, Finance
## 19814 15-1132 151132 Computer, Math
## 19815 13-1111 131111 Business, Finance
## 19816 15-1121 151121 Computer, Math
## 19817 17-2072 172072 Architecture, Engineer
## 19818 15-1141 151141 Computer, Math
## 19819 17-2041 172041 Architecture, Engineer
## 19820 15-1122 151122 Computer, Math
## 19821 15-1134 151134 Computer, Math
## 19822 15-1142 151142 Computer, Math
## 19823 15-1199 151199 Computer, Math
## 19824 15-1132 151132 Computer, Math
## 19825 25-1121 251121 Education, Training
## 19826 15-1132 151132 Computer, Math
## 19827 15-1132 151132 Computer, Math
## 19828 15-1131 151131 Computer, Math
## 19829 15-1141 151141 Computer, Math
## 19830 15-1131 151131 Computer, Math
## 19831 15-1132 151132 Computer, Math
## 19832 15-1141 151141 Computer, Math
## 19833 15-1121 151121 Computer, Math
## 19834 15-1121 151121 Computer, Math
## 19835 17-2041 172041 Architecture, Engineer
## 19836 15-1132 151132 Computer, Math
## 19837 15-1199 151199 Computer, Math
## 19838 15-1132 151132 Computer, Math
## 19839 15-1121 151121 Computer, Math
## 19840 15-2031 152031 Computer, Math
## 19841 13-1041 131041 Business, Finance
## 19842 15-1121 151121 Computer, Math
## 19843 15-1132 151132 Computer, Math
## 19844 15-1132 151132 Computer, Math
## 19845 15-1134 151134 Computer, Math
## 19846 27-3041 273041 Media, Design
## 19847 15-1142 151142 Computer, Math
## 19848 29-1069 291069 Healthcare Practitioner
## 19849 15-1199 151199 Computer, Math
## 19850 15-1199 151199 Computer, Math
## 19851 27-3042 273042 Media, Design
## 19852 17-2112 172112 Architecture, Engineer
## 19853 11-3021 113021 Management
## 19854 15-1121 151121 Computer, Math
## 19855 15-1131 151131 Computer, Math
## 19856 19-2031 192031 Life, Physcial, Social Science
## 19857 15-1132 151132 Computer, Math
## 19858 15-1132 151132 Computer, Math
## 19859 11-3021 113021 Management
## 19860 15-1121 151121 Computer, Math
## 19861 17-1012 171012 Architecture, Engineer
## 19862 15-1199 151199 Computer, Math
## 19863 15-1132 151132 Computer, Math
## 19864 15-1132 151132 Computer, Math
## 19865 25-1011 251011 Education, Training
## 19866 13-1081 131081 Business, Finance
## 19867 15-1132 151132 Computer, Math
## 19868 15-1199 151199 Computer, Math
## 19869 11-3021 113021 Management
## 19870 15-1132 151132 Computer, Math
## 19871 15-1132 151132 Computer, Math
## 19872 29-2011 292011 Healthcare Practitioner
## 19873 13-1041 131041 Business, Finance
## 19874 13-1111 131111 Business, Finance
## 19875 15-1132 151132 Computer, Math
## 19876 13-2011 132011 Business, Finance
## 19877 15-1121 151121 Computer, Math
## 19878 27-1021 271021 Media, Design
## 19879 15-1133 151133 Computer, Math
## 19880 15-1132 151132 Computer, Math
## 19881 15-1133 151133 Computer, Math
## 19882 11-3021 113021 Management
## 19883 15-1199 151199 Computer, Math
## 19884 15-1121 151121 Computer, Math
## 19885 15-1132 151132 Computer, Math
## 19886 17-2071 172071 Architecture, Engineer
## 19887 13-1111 131111 Business, Finance
## 19888 15-1199 151199 Computer, Math
## 19889 17-2071 172071 Architecture, Engineer
## 19890 19-1042 191042 Life, Physcial, Social Science
## 19891 15-1122 151122 Computer, Math
## 19892 11-9041 119041 Management
## 19893 15-1121 151121 Computer, Math
## 19894 15-1132 151132 Computer, Math
## 19895 29-1063 291063 Healthcare Practitioner
## 19896 15-1132 151132 Computer, Math
## 19897 15-1132 151132 Computer, Math
## 19898 15-1121 151121 Computer, Math
## 19899 29-1069 291069 Healthcare Practitioner
## 19900 29-2011 292011 Healthcare Practitioner
## 19901 15-1131 151131 Computer, Math
## 19902 17-2051 172051 Architecture, Engineer
## 19903 15-1132 151132 Computer, Math
## 19904 29-1069 291069 Healthcare Practitioner
## 19905 15-1132 151132 Computer, Math
## 19906 15-2041 152041 Computer, Math
## 19907 15-1133 151133 Computer, Math
## 19908 15-1132 151132 Computer, Math
## 19909 15-1132 151132 Computer, Math
## 19910 25-9099 259099 Education, Training
## 19911 15-1132 151132 Computer, Math
## 19912 25-1113 251113 Education, Training
## 19913 15-1199 151199 Computer, Math
## 19914 13-1161 131161 Business, Finance
## 19915 15-1133 151133 Computer, Math
## 19916 15-1199 151199 Computer, Math
## 19917 11-9199 119199 Management
## 19918 15-1199 151199 Computer, Math
## 19919 15-1199 151199 Computer, Math
## 19920 17-2072 172072 Architecture, Engineer
## 19921 15-1142 151142 Computer, Math
## 19922 15-1132 151132 Computer, Math
## 19923 19-4021 194021 Life, Physcial, Social Science
## 19924 15-1133 151133 Computer, Math
## 19925 15-1132 151132 Computer, Math
## 19926 17-2141 172141 Architecture, Engineer
## 19927 15-1132 151132 Computer, Math
## 19928 15-1132 151132 Computer, Math
## 19929 17-2071 172071 Architecture, Engineer
## 19930 15-1132 151132 Computer, Math
## 19931 11-3021 113021 Management
## 19932 15-1132 151132 Computer, Math
## 19933 17-2072 172072 Architecture, Engineer
## 19934 15-1121 151121 Computer, Math
## 19935 11-1021 111021 Management
## 19936 15-1132 151132 Computer, Math
## 19937 17-2072 172072 Architecture, Engineer
## 19938 17-2061 172061 Architecture, Engineer
## 19939 17-2141 172141 Architecture, Engineer
## 19940 15-1132 151132 Computer, Math
## 19941 13-1111 131111 Business, Finance
## 19942 15-1132 151132 Computer, Math
## 19943 17-2141 172141 Architecture, Engineer
## 19944 17-2072 172072 Architecture, Engineer
## 19945 15-1132 151132 Computer, Math
## 19946 13-1111 131111 Business, Finance
## 19947 15-1133 151133 Computer, Math
## 19948 15-1132 151132 Computer, Math
## 19949 13-1081 131081 Business, Finance
## 19950 17-2141 172141 Architecture, Engineer
## 19951 15-1133 151133 Computer, Math
## 19952 15-1132 151132 Computer, Math
## 19953 15-1121 151121 Computer, Math
## 19954 15-1131 151131 Computer, Math
## 19955 15-1132 151132 Computer, Math
## 19956 15-1199 151199 Computer, Math
## 19957 15-1132 151132 Computer, Math
## 19958 15-1132 151132 Computer, Math
## 19959 29-1069 291069 Healthcare Practitioner
## 19960 15-1199 151199 Computer, Math
## 19961 19-2012 192012 Life, Physcial, Social Science
## 19962 15-1132 151132 Computer, Math
## 19963 15-1133 151133 Computer, Math
## 19964 15-1132 151132 Computer, Math
## 19965 15-1132 151132 Computer, Math
## 19966 15-1132 151132 Computer, Math
## 19967 15-1132 151132 Computer, Math
## 19968 15-1141 151141 Computer, Math
## 19969 15-1132 151132 Computer, Math
## 19970 15-1132 151132 Computer, Math
## 19971 15-1199 151199 Computer, Math
## 19972 15-1199 151199 Computer, Math
## 19973 15-1199 151199 Computer, Math
## 19974 15-1132 151132 Computer, Math
## 19975 15-2031 152031 Computer, Math
## 19976 15-2031 152031 Computer, Math
## 19977 15-2031 152031 Computer, Math
## 19978 15-1199 151199 Computer, Math
## 19979 15-1132 151132 Computer, Math
## 19980 15-1132 151132 Computer, Math
## 19981 15-1121 151121 Computer, Math
## 19982 13-2051 132051 Business, Finance
## 19983 13-1161 131161 Business, Finance
## 19984 15-1132 151132 Computer, Math
## 19985 15-1133 151133 Computer, Math
## 19986 15-1132 151132 Computer, Math
## 19987 15-1132 151132 Computer, Math
## 19988 17-2041 172041 Architecture, Engineer
## 19989 15-1199 151199 Computer, Math
## 19990 17-2071 172071 Architecture, Engineer
## 19991 29-1063 291063 Healthcare Practitioner
## 19992 25-1071 251071 Education, Training
## 19993 15-1131 151131 Computer, Math
## 19994 13-1111 131111 Business, Finance
## 19995 15-1132 151132 Computer, Math
## 19996 13-1111 131111 Business, Finance
## 19997 15-1133 151133 Computer, Math
## 19998 15-1132 151132 Computer, Math
## 19999 15-1132 151132 Computer, Math
## 20000 15-1132 151132 Computer, Math
## 20001 29-9099 299099 Healthcare Practitioner
## 20002 17-2071 172071 Architecture, Engineer
## 20003 15-1132 151132 Computer, Math
## 20004 11-2011 112011 Management
## 20005 15-1199 151199 Computer, Math
## 20006 15-2031 152031 Computer, Math
## 20007 15-1141 151141 Computer, Math
## 20008 15-1199 151199 Computer, Math
## 20009 29-1123 291123 Healthcare Practitioner
## 20010 15-1133 151133 Computer, Math
## 20011 11-3021 113021 Management
## 20012 23-1011 231011 Legal
## 20013 15-1132 151132 Computer, Math
## 20014 15-1132 151132 Computer, Math
## 20015 25-1065 251065 Education, Training
## 20016 15-1121 151121 Computer, Math
## 20017 15-1132 151132 Computer, Math
## 20018 15-1132 151132 Computer, Math
## 20019 15-1134 151134 Computer, Math
## 20020 13-1161 131161 Business, Finance
## 20021 11-3021 113021 Management
## 20022 15-1131 151131 Computer, Math
## 20023 19-1029 191029 Life, Physcial, Social Science
## 20024 15-1121 151121 Computer, Math
## 20025 15-2031 152031 Computer, Math
## 20026 27-3031 273031 Media, Design
## 20027 19-1012 191012 Life, Physcial, Social Science
## 20028 15-1121 151121 Computer, Math
## 20029 13-2011 132011 Business, Finance
## 20030 15-1132 151132 Computer, Math
## 20031 15-1121 151121 Computer, Math
## 20032 17-2141 172141 Architecture, Engineer
## 20033 15-1132 151132 Computer, Math
## 20034 17-2141 172141 Architecture, Engineer
## 20035 13-2051 132051 Business, Finance
## 20036 11-3021 113021 Management
## 20037 15-1132 151132 Computer, Math
## 20038 17-2081 172081 Architecture, Engineer
## 20039 15-1121 151121 Computer, Math
## 20040 15-1132 151132 Computer, Math
## 20041 15-1199 151199 Computer, Math
## 20042 15-1199 151199 Computer, Math
## 20043 17-2141 172141 Architecture, Engineer
## 20044 29-2011 292011 Healthcare Practitioner
## 20045 15-1132 151132 Computer, Math
## 20046 15-1199 151199 Computer, Math
## 20047 15-1131 151131 Computer, Math
## 20048 15-1132 151132 Computer, Math
## 20049 15-1199 151199 Computer, Math
## 20050 15-1132 151132 Computer, Math
## 20051 15-1131 151131 Computer, Math
## 20052 17-2141 172141 Architecture, Engineer
## 20053 13-1111 131111 Business, Finance
## 20054 15-1132 151132 Computer, Math
## 20055 15-1131 151131 Computer, Math
## 20056 15-1121 151121 Computer, Math
## 20057 15-2031 152031 Computer, Math
## 20058 15-1121 151121 Computer, Math
## 20059 15-1132 151132 Computer, Math
## 20060 15-2031 152031 Computer, Math
## 20061 13-1041 131041 Business, Finance
## 20062 15-1132 151132 Computer, Math
## 20063 15-1131 151131 Computer, Math
## 20064 15-1131 151131 Computer, Math
## 20065 15-1111 151111 Computer, Math
## 20066 11-3071 113071 Management
## 20067 15-1199 151199 Computer, Math
## 20068 15-1132 151132 Computer, Math
## 20069 15-1199 151199 Computer, Math
## 20070 17-2144 172144 Architecture, Engineer
## 20071 15-1132 151132 Computer, Math
## 20072 27-3031 273031 Media, Design
## 20073 13-1161 131161 Business, Finance
## 20074 15-1121 151121 Computer, Math
## 20075 29-1069 291069 Healthcare Practitioner
## 20076 15-1121 151121 Computer, Math
## 20077 15-1132 151132 Computer, Math
## 20078 15-1134 151134 Computer, Math
## 20079 25-2031 252031 Education, Training
## 20080 19-1042 191042 Life, Physcial, Social Science
## 20081 15-1132 151132 Computer, Math
## 20082 15-1199 151199 Computer, Math
## 20083 19-1012 191012 Life, Physcial, Social Science
## 20084 15-1133 151133 Computer, Math
## 20085 15-2031 152031 Computer, Math
## 20086 15-1132 151132 Computer, Math
## 20087 15-1131 151131 Computer, Math
## 20088 15-1131 151131 Computer, Math
## 20089 15-1121 151121 Computer, Math
## 20090 15-1132 151132 Computer, Math
## 20091 15-1199 151199 Computer, Math
## 20092 15-1121 151121 Computer, Math
## 20093 29-1081 291081 Healthcare Practitioner
## 20094 15-1133 151133 Computer, Math
## 20095 15-1142 151142 Computer, Math
## 20096 15-1132 151132 Computer, Math
## 20097 17-2031 172031 Architecture, Engineer
## 20098 15-1199 151199 Computer, Math
## 20099 15-1132 151132 Computer, Math
## 20100 15-1132 151132 Computer, Math
## 20101 15-1132 151132 Computer, Math
## 20102 23-1011 231011 Legal
## 20103 15-1034 151034 Computer, Math
## 20104 15-1132 151132 Computer, Math
## 20105 15-1132 151132 Computer, Math
## 20106 29-1069 291069 Healthcare Practitioner
## 20107 15-1133 151133 Computer, Math
## 20108 13-2051 132051 Business, Finance
## 20109 19-1011 191011 Life, Physcial, Social Science
## 20110 15-1131 151131 Computer, Math
## 20111 23-1011 231011 Legal
## 20112 13-1111 131111 Business, Finance
## 20113 15-1132 151132 Computer, Math
## 20114 11-3021 113021 Management
## 20115 25-1011 251011 Education, Training
## 20116 27-3022 273022 Media, Design
## 20117 15-1121 151121 Computer, Math
## 20118 15-1131 151131 Computer, Math
## 20119 15-1132 151132 Computer, Math
## 20120 15-1199 151199 Computer, Math
## 20121 17-2041 172041 Architecture, Engineer
## 20122 15-1141 151141 Computer, Math
## 20123 15-1121 151121 Computer, Math
## 20124 15-1133 151133 Computer, Math
## 20125 15-1121 151121 Computer, Math
## 20126 17-2141 172141 Architecture, Engineer
## 20127 15-1121 151121 Computer, Math
## 20128 15-2041 152041 Computer, Math
## 20129 15-1132 151132 Computer, Math
## 20130 15-1122 151122 Computer, Math
## 20131 15-1131 151131 Computer, Math
## 20132 15-1131 151131 Computer, Math
## 20133 15-1132 151132 Computer, Math
## 20134 15-1132 151132 Computer, Math
## 20135 15-1134 151134 Computer, Math
## 20136 15-1121 151121 Computer, Math
## 20137 15-1132 151132 Computer, Math
## 20138 11-3051 113051 Management
## 20139 13-2011 132011 Business, Finance
## 20140 15-1132 151132 Computer, Math
## 20141 17-2071 172071 Architecture, Engineer
## 20142 15-1132 151132 Computer, Math
## 20143 15-1141 151141 Computer, Math
## 20144 15-1131 151131 Computer, Math
## 20145 15-1199 151199 Computer, Math
## 20146 17-2141 172141 Architecture, Engineer
## 20147 15-1132 151132 Computer, Math
## 20148 15-1121 151121 Computer, Math
## 20149 15-1132 151132 Computer, Math
## 20150 15-1132 151132 Computer, Math
## 20151 15-1133 151133 Computer, Math
## 20152 15-1133 151133 Computer, Math
## 20153 15-1121 151121 Computer, Math
## 20154 15-2031 152031 Computer, Math
## 20155 15-1132 151132 Computer, Math
## 20156 15-2041 152041 Computer, Math
## 20157 15-1132 151132 Computer, Math
## 20158 15-1131 151131 Computer, Math
## 20159 15-1132 151132 Computer, Math
## 20160 13-1071 131071 Business, Finance
## 20161 15-1132 151132 Computer, Math
## 20162 15-1121 151121 Computer, Math
## 20163 15-1121 151121 Computer, Math
## 20164 15-1132 151132 Computer, Math
## 20165 15-1133 151133 Computer, Math
## 20166 17-2021 172021 Architecture, Engineer
## 20167 21-1012 211012 Social Service
## 20168 13-1161 131161 Business, Finance
## 20169 13-2011 132011 Business, Finance
## 20170 15-1199 151199 Computer, Math
## 20171 15-1199 151199 Computer, Math
## 20172 15-1121 151121 Computer, Math
## 20173 15-1132 151132 Computer, Math
## 20174 15-1111 151111 Computer, Math
## 20175 15-1142 151142 Computer, Math
## 20176 13-2011 132011 Business, Finance
## 20177 11-9111 119111 Management
## 20178 15-1199 151199 Computer, Math
## 20179 15-1132 151132 Computer, Math
## 20180 15-1132 151132 Computer, Math
## 20181 15-1132 151132 Computer, Math
## 20182 15-1111 151111 Computer, Math
## 20183 15-1133 151133 Computer, Math
## 20184 15-1132 151132 Computer, Math
## 20185 15-1142 151142 Computer, Math
## 20186 17-2071 172071 Architecture, Engineer
## 20187 17-2112 172112 Architecture, Engineer
## 20188 15-1131 151131 Computer, Math
## 20189 25-1061 251061 Education, Training
## 20190 15-1132 151132 Computer, Math
## 20191 27-3021 273021 Media, Design
## 20192 15-1133 151133 Computer, Math
## 20193 15-1143 151143 Computer, Math
## 20194 15-1132 151132 Computer, Math
## 20195 15-1132 151132 Computer, Math
## 20196 15-1199 151199 Computer, Math
## 20197 17-2072 172072 Architecture, Engineer
## 20198 15-2041 152041 Computer, Math
## 20199 15-1121 151121 Computer, Math
## 20200 15-1132 151132 Computer, Math
## 20201 15-1132 151132 Computer, Math
## 20202 15-1131 151131 Computer, Math
## 20203 13-2011 132011 Business, Finance
## 20204 15-1131 151131 Computer, Math
## 20205 15-1122 151122 Computer, Math
## 20206 27-3022 273022 Media, Design
## 20207 15-1132 151132 Computer, Math
## 20208 15-1132 151132 Computer, Math
## 20209 29-1051 291051 Healthcare Practitioner
## 20210 23-1011 231011 Legal
## 20211 15-1132 151132 Computer, Math
## 20212 15-1132 151132 Computer, Math
## 20213 15-1131 151131 Computer, Math
## 20214 19-2031 192031 Life, Physcial, Social Science
## 20215 15-1143 151143 Computer, Math
## 20216 15-1121 151121 Computer, Math
## 20217 15-1134 151134 Computer, Math
## 20218 11-3021 113021 Management
## 20219 15-1132 151132 Computer, Math
## 20220 15-1132 151132 Computer, Math
## 20221 15-1121 151121 Computer, Math
## 20222 15-1132 151132 Computer, Math
## 20223 13-1199 131199 Business, Finance
## 20224 13-1081 131081 Business, Finance
## 20225 13-1199 131199 Business, Finance
## 20226 27-3022 273022 Media, Design
## 20227 15-1132 151132 Computer, Math
## 20228 15-1132 151132 Computer, Math
## 20229 15-1141 151141 Computer, Math
## 20230 15-1131 151131 Computer, Math
## 20231 27-1014 271014 Media, Design
## 20232 15-1132 151132 Computer, Math
## 20233 15-1132 151132 Computer, Math
## 20234 15-1132 151132 Computer, Math
## 20235 17-2171 172171 Architecture, Engineer
## 20236 15-1121 151121 Computer, Math
## 20237 15-1141 151141 Computer, Math
## 20238 15-1142 151142 Computer, Math
## 20239 15-1132 151132 Computer, Math
## 20240 15-1199 151199 Computer, Math
## 20241 15-1199 151199 Computer, Math
## 20242 27-1011 271011 Media, Design
## 20243 17-2051 172051 Architecture, Engineer
## 20244 15-2041 152041 Computer, Math
## 20245 15-1132 151132 Computer, Math
## 20246 13-1081 131081 Business, Finance
## 20247 25-1071 251071 Education, Training
## 20248 15-1131 151131 Computer, Math
## 20249 15-1199 151199 Computer, Math
## 20250 15-1133 151133 Computer, Math
## 20251 17-2141 172141 Architecture, Engineer
## 20252 13-2051 132051 Business, Finance
## 20253 15-1121 151121 Computer, Math
## 20254 15-1121 151121 Computer, Math
## 20255 15-1132 151132 Computer, Math
## 20256 15-1132 151132 Computer, Math
## 20257 15-1132 151132 Computer, Math
## 20258 15-1132 151132 Computer, Math
## 20259 15-1132 151132 Computer, Math
## 20260 15-1132 151132 Computer, Math
## 20261 15-1111 151111 Computer, Math
## 20262 15-1132 151132 Computer, Math
## 20263 13-1111 131111 Business, Finance
## 20264 17-2141 172141 Architecture, Engineer
## 20265 15-1199 151199 Computer, Math
## 20266 15-1121 151121 Computer, Math
## 20267 15-1121 151121 Computer, Math
## 20268 15-1131 151131 Computer, Math
## 20269 15-1199 151199 Computer, Math
## 20270 15-2031 152031 Computer, Math
## 20271 15-1132 151132 Computer, Math
## 20272 15-1121 151121 Computer, Math
## 20273 29-9099 299099 Healthcare Practitioner
## 20274 15-1122 151122 Computer, Math
## 20275 15-1121 151121 Computer, Math
## 20276 13-1111 131111 Business, Finance
## 20277 17-2081 172081 Architecture, Engineer
## 20278 15-1132 151132 Computer, Math
## 20279 15-1131 151131 Computer, Math
## 20280 15-1121 151121 Computer, Math
## 20281 15-1132 151132 Computer, Math
## 20282 17-2141 172141 Architecture, Engineer
## 20283 15-1199 151199 Computer, Math
## 20284 15-1132 151132 Computer, Math
## 20285 15-1199 151199 Computer, Math
## 20286 15-1132 151132 Computer, Math
## 20287 15-1036 151036 Computer, Math
## 20288 15-1132 151132 Computer, Math
## 20289 15-1132 151132 Computer, Math
## 20290 15-1132 151132 Computer, Math
## 20291 15-1121 151121 Computer, Math
## 20292 15-1132 151132 Computer, Math
## 20293 15-1121 151121 Computer, Math
## 20294 15-1133 151133 Computer, Math
## 20295 15-1131 151131 Computer, Math
## 20296 15-1133 151133 Computer, Math
## 20297 15-1132 151132 Computer, Math
## 20298 15-1121 151121 Computer, Math
## 20299 15-1199 151199 Computer, Math
## 20300 15-1132 151132 Computer, Math
## 20301 15-1132 151132 Computer, Math
## 20302 19-1029 191029 Life, Physcial, Social Science
## 20303 15-1132 151132 Computer, Math
## 20304 13-1161 131161 Business, Finance
## 20305 15-1199 151199 Computer, Math
## 20306 17-2051 172051 Architecture, Engineer
## 20307 15-1132 151132 Computer, Math
## 20308 13-2051 132051 Business, Finance
## 20309 29-1063 291063 Healthcare Practitioner
## 20310 15-2031 152031 Computer, Math
## 20311 15-1132 151132 Computer, Math
## 20312 13-2099 132099 Business, Finance
## 20313 15-1132 151132 Computer, Math
## 20314 15-1132 151132 Computer, Math
## 20315 15-1132 151132 Computer, Math
## 20316 15-1199 151199 Computer, Math
## 20317 15-1199 151199 Computer, Math
## 20318 15-1199 151199 Computer, Math
## 20319 13-1111 131111 Business, Finance
## 20320 15-1133 151133 Computer, Math
## 20321 15-1133 151133 Computer, Math
## 20322 15-1121 151121 Computer, Math
## 20323 15-1199 151199 Computer, Math
## 20324 17-2051 172051 Architecture, Engineer
## 20325 15-1132 151132 Computer, Math
## 20326 15-1131 151131 Computer, Math
## 20327 15-1199 151199 Computer, Math
## 20328 11-9081 119081 Management
## 20329 15-1199 151199 Computer, Math
## 20330 15-1199 151199 Computer, Math
## 20331 15-1132 151132 Computer, Math
## 20332 29-1069 291069 Healthcare Practitioner
## 20333 15-2031 152031 Computer, Math
## 20334 15-1199 151199 Computer, Math
## 20335 15-1199 151199 Computer, Math
## 20336 15-1122 151122 Computer, Math
## 20337 15-1121 151121 Computer, Math
## 20338 15-1132 151132 Computer, Math
## 20339 19-3011 193011 Life, Physcial, Social Science
## 20340 15-1121 151121 Computer, Math
## 20341 15-1131 151131 Computer, Math
## 20342 15-1132 151132 Computer, Math
## 20343 25-2054 252054 Education, Training
## 20344 15-1132 151132 Computer, Math
## 20345 15-1132 151132 Computer, Math
## 20346 13-1111 131111 Business, Finance
## 20347 13-2011 132011 Business, Finance
## 20348 15-1121 151121 Computer, Math
## 20349 19-1042 191042 Life, Physcial, Social Science
## 20350 15-1121 151121 Computer, Math
## 20351 19-1029 191029 Life, Physcial, Social Science
## 20352 15-1132 151132 Computer, Math
## 20353 15-1132 151132 Computer, Math
## 20354 15-1132 151132 Computer, Math
## 20355 21-2021 212021 Social Service
## 20356 29-1063 291063 Healthcare Practitioner
## 20357 15-1132 151132 Computer, Math
## 20358 15-1132 151132 Computer, Math
## 20359 15-1141 151141 Computer, Math
## 20360 13-2011 132011 Business, Finance
## 20361 15-1132 151132 Computer, Math
## 20362 25-1071 251071 Education, Training
## 20363 15-1132 151132 Computer, Math
## 20364 15-1121 151121 Computer, Math
## 20365 15-1199 151199 Computer, Math
## 20366 15-1133 151133 Computer, Math
## 20367 15-1132 151132 Computer, Math
## 20368 17-2081 172081 Architecture, Engineer
## 20369 15-1134 151134 Computer, Math
## 20370 25-1011 251011 Education, Training
## 20371 15-1133 151133 Computer, Math
## 20372 15-1121 151121 Computer, Math
## 20373 13-1111 131111 Business, Finance
## 20374 15-2031 152031 Computer, Math
## 20375 15-1133 151133 Computer, Math
## 20376 15-1131 151131 Computer, Math
## 20377 15-1132 151132 Computer, Math
## 20378 15-1133 151133 Computer, Math
## 20379 15-1199 151199 Computer, Math
## 20380 15-1132 151132 Computer, Math
## 20381 13-2011 132011 Business, Finance
## 20382 15-1132 151132 Computer, Math
## 20383 15-1132 151132 Computer, Math
## 20384 15-1132 151132 Computer, Math
## 20385 17-2141 172141 Architecture, Engineer
## 20386 15-1132 151132 Computer, Math
## 20387 15-1133 151133 Computer, Math
## 20388 21-1012 211012 Social Service
## 20389 15-1199 151199 Computer, Math
## 20390 15-1142 151142 Computer, Math
## 20391 15-1133 151133 Computer, Math
## 20392 15-1132 151132 Computer, Math
## 20393 15-1132 151132 Computer, Math
## 20394 15-1121 151121 Computer, Math
## 20395 13-2011 132011 Business, Finance
## 20396 25-1032 251032 Education, Training
## 20397 11-9021 119021 Management
## 20398 15-1142 151142 Computer, Math
## 20399 29-1041 291041 Healthcare Practitioner
## 20400 15-1132 151132 Computer, Math
## 20401 15-1199 151199 Computer, Math
## 20402 15-1199 151199 Computer, Math
## 20403 15-1133 151133 Computer, Math
## 20404 19-1029 191029 Life, Physcial, Social Science
## 20405 15-1141 151141 Computer, Math
## 20406 15-1132 151132 Computer, Math
## 20407 15-1121 151121 Computer, Math
## 20408 17-2071 172071 Architecture, Engineer
## 20409 15-1121 151121 Computer, Math
## 20410 11-3021 113021 Management
## 20411 15-1121 151121 Computer, Math
## 20412 15-1141 151141 Computer, Math
## 20413 15-1142 151142 Computer, Math
## 20414 15-1132 151132 Computer, Math
## 20415 15-1132 151132 Computer, Math
## 20416 13-1111 131111 Business, Finance
## 20417 15-1121 151121 Computer, Math
## 20418 15-1143 151143 Computer, Math
## 20419 15-1132 151132 Computer, Math
## 20420 25-3099 253099 Education, Training
## 20421 15-1131 151131 Computer, Math
## 20422 15-1133 151133 Computer, Math
## 20423 15-1133 151133 Computer, Math
## 20424 15-1132 151132 Computer, Math
## 20425 13-1111 131111 Business, Finance
## 20426 15-1132 151132 Computer, Math
## 20427 17-2199 172199 Architecture, Engineer
## 20428 15-1132 151132 Computer, Math
## 20429 13-1161 131161 Business, Finance
## 20430 15-1132 151132 Computer, Math
## 20431 15-1199 151199 Computer, Math
## 20432 15-1132 151132 Computer, Math
## 20433 13-2099 132099 Business, Finance
## 20434 15-1121 151121 Computer, Math
## 20435 17-2071 172071 Architecture, Engineer
## 20436 15-1131 151131 Computer, Math
## 20437 15-1121 151121 Computer, Math
## 20438 15-1121 151121 Computer, Math
## 20439 17-2112 172112 Architecture, Engineer
## 20440 15-1133 151133 Computer, Math
## 20441 15-1199 151199 Computer, Math
## 20442 15-1132 151132 Computer, Math
## 20443 25-1022 251022 Education, Training
## 20444 15-1121 151121 Computer, Math
## 20445 25-3099 253099 Education, Training
## 20446 15-1132 151132 Computer, Math
## 20447 15-2041 152041 Computer, Math
## 20448 15-1132 151132 Computer, Math
## 20449 15-1131 151131 Computer, Math
## 20450 15-1133 151133 Computer, Math
## 20451 15-1121 151121 Computer, Math
## 20452 13-2051 132051 Business, Finance
## 20453 15-1199 151199 Computer, Math
## 20454 15-1132 151132 Computer, Math
## 20455 15-1131 151131 Computer, Math
## 20456 15-1199 151199 Computer, Math
## 20457 15-1121 151121 Computer, Math
## 20458 15-1132 151132 Computer, Math
## 20459 15-1132 151132 Computer, Math
## 20460 15-1131 151131 Computer, Math
## 20461 15-1132 151132 Computer, Math
## 20462 15-1199 151199 Computer, Math
## 20463 15-1111 151111 Computer, Math
## 20464 15-1132 151132 Computer, Math
## 20465 15-1121 151121 Computer, Math
## 20466 15-1132 151132 Computer, Math
## 20467 13-2011 132011 Business, Finance
## 20468 15-1133 151133 Computer, Math
## 20469 15-1132 151132 Computer, Math
## 20470 15-2041 152041 Computer, Math
## 20471 15-1132 151132 Computer, Math
## 20472 15-1132 151132 Computer, Math
## 20473 15-1121 151121 Computer, Math
## 20474 15-1199 151199 Computer, Math
## 20475 15-1142 151142 Computer, Math
## 20476 15-1121 151121 Computer, Math
## 20477 27-1025 271025 Media, Design
## 20478 15-1121 151121 Computer, Math
## 20479 19-3011 193011 Life, Physcial, Social Science
## 20480 15-2011 152011 Computer, Math
## 20481 21-1022 211022 Social Service
## 20482 19-1029 191029 Life, Physcial, Social Science
## 20483 15-1132 151132 Computer, Math
## 20484 13-1111 131111 Business, Finance
## 20485 15-1199 151199 Computer, Math
## 20486 29-1123 291123 Healthcare Practitioner
## 20487 15-1131 151131 Computer, Math
## 20488 19-2032 192032 Life, Physcial, Social Science
## 20489 15-1132 151132 Computer, Math
## 20490 15-1132 151132 Computer, Math
## 20491 15-1132 151132 Computer, Math
## 20492 15-1133 151133 Computer, Math
## 20493 29-1069 291069 Healthcare Practitioner
## 20494 13-1111 131111 Business, Finance
## 20495 15-2031 152031 Computer, Math
## 20496 25-1071 251071 Education, Training
## 20497 15-1132 151132 Computer, Math
## 20498 13-2051 132051 Business, Finance
## 20499 15-2031 152031 Computer, Math
## 20500 15-1132 151132 Computer, Math
## 20501 41-9031 419031 Sales
## 20502 15-1143 151143 Computer, Math
## 20503 15-1132 151132 Computer, Math
## 20504 15-1132 151132 Computer, Math
## 20505 15-1121 151121 Computer, Math
## 20506 15-1199 151199 Computer, Math
## 20507 15-1143 151143 Computer, Math
## 20508 15-1132 151132 Computer, Math
## 20509 15-2041 152041 Computer, Math
## 20510 15-1142 151142 Computer, Math
## 20511 15-1132 151132 Computer, Math
## 20512 15-1132 151132 Computer, Math
## 20513 15-1131 151131 Computer, Math
## 20514 15-1121 151121 Computer, Math
## 20515 15-1199 151199 Computer, Math
## 20516 15-1132 151132 Computer, Math
## 20517 13-1111 131111 Business, Finance
## 20518 15-1199 151199 Computer, Math
## 20519 15-1121 151121 Computer, Math
## 20520 15-1134 151134 Computer, Math
## 20521 17-2061 172061 Architecture, Engineer
## 20522 15-1199 151199 Computer, Math
## 20523 19-1021 191021 Life, Physcial, Social Science
## 20524 15-1133 151133 Computer, Math
## 20525 15-1121 151121 Computer, Math
## 20526 15-1199 151199 Computer, Math
## 20527 15-1132 151132 Computer, Math
## 20528 17-2199 172199 Architecture, Engineer
## 20529 15-1199 151199 Computer, Math
## 20530 27-1014 271014 Media, Design
## 20531 13-2051 132051 Business, Finance
## 20532 15-1132 151132 Computer, Math
## 20533 15-1132 151132 Computer, Math
## 20534 15-1132 151132 Computer, Math
## 20535 17-2141 172141 Architecture, Engineer
## 20536 15-1121 151121 Computer, Math
## 20537 11-3071 113071 Management
## 20538 15-1121 151121 Computer, Math
## 20539 15-1132 151132 Computer, Math
## 20540 15-1132 151132 Computer, Math
## 20541 15-1133 151133 Computer, Math
## 20542 15-1131 151131 Computer, Math
## 20543 15-1199 151199 Computer, Math
## 20544 15-1143 151143 Computer, Math
## 20545 15-1199 151199 Computer, Math
## 20546 15-1132 151132 Computer, Math
## 20547 15-1141 151141 Computer, Math
## 20548 25-1032 251032 Education, Training
## 20549 15-1132 151132 Computer, Math
## 20550 15-1133 151133 Computer, Math
## 20551 15-1132 151132 Computer, Math
## 20552 15-2031 152031 Computer, Math
## 20553 15-2041 152041 Computer, Math
## 20554 29-1067 291067 Healthcare Practitioner
## 20555 15-1132 151132 Computer, Math
## 20556 15-1131 151131 Computer, Math
## 20557 19-2031 192031 Life, Physcial, Social Science
## 20558 15-1132 151132 Computer, Math
## 20559 15-1132 151132 Computer, Math
## 20560 15-1199 151199 Computer, Math
## 20561 15-1121 151121 Computer, Math
## 20562 15-1132 151132 Computer, Math
## 20563 23-1011 231011 Legal
## 20564 11-3071 113071 Management
## 20565 15-1133 151133 Computer, Math
## 20566 15-1132 151132 Computer, Math
## 20567 13-1041 131041 Business, Finance
## 20568 15-1121 151121 Computer, Math
## 20569 15-1133 151133 Computer, Math
## 20570 15-1199 151199 Computer, Math
## 20571 15-1142 151142 Computer, Math
## 20572 15-1121 151121 Computer, Math
## 20573 15-1143 151143 Computer, Math
## 20574 15-1121 151121 Computer, Math
## 20575 15-1199 151199 Computer, Math
## 20576 15-1132 151132 Computer, Math
## 20577 15-1132 151132 Computer, Math
## 20578 15-1132 151132 Computer, Math
## 20579 15-1199 151199 Computer, Math
## 20580 15-1121 151121 Computer, Math
## 20581 15-1121 151121 Computer, Math
## 20582 15-1132 151132 Computer, Math
## 20583 13-1161 131161 Business, Finance
## 20584 15-1122 151122 Computer, Math
## 20585 15-1199 151199 Computer, Math
## 20586 15-1199 151199 Computer, Math
## 20587 15-1132 151132 Computer, Math
## 20588 15-1132 151132 Computer, Math
## 20589 23-1011 231011 Legal
## 20590 15-1132 151132 Computer, Math
## 20591 15-1132 151132 Computer, Math
## 20592 15-1133 151133 Computer, Math
## 20593 15-1132 151132 Computer, Math
## 20594 15-1132 151132 Computer, Math
## 20595 15-1199 151199 Computer, Math
## 20596 11-3131 113131 Management
## 20597 15-1132 151132 Computer, Math
## 20598 17-2071 172071 Architecture, Engineer
## 20599 13-1051 131051 Business, Finance
## 20600 11-2021 112021 Management
## 20601 15-1131 151131 Computer, Math
## 20602 13-1111 131111 Business, Finance
## 20603 15-1121 151121 Computer, Math
## 20604 19-1021 191021 Life, Physcial, Social Science
## 20605 15-1131 151131 Computer, Math
## 20606 25-1121 251121 Education, Training
## 20607 11-3031 113031 Management
## 20608 15-1199 151199 Computer, Math
## 20609 15-1132 151132 Computer, Math
## 20610 11-3021 113021 Management
## 20611 15-2031 152031 Computer, Math
## 20612 15-1132 151132 Computer, Math
## 20613 41-9031 419031 Sales
## 20614 15-1132 151132 Computer, Math
## 20615 13-1111 131111 Business, Finance
## 20616 15-1132 151132 Computer, Math
## 20617 15-1133 151133 Computer, Math
## 20618 15-1121 151121 Computer, Math
## 20619 15-1133 151133 Computer, Math
## 20620 15-1132 151132 Computer, Math
## 20621 13-2099 132099 Business, Finance
## 20622 15-1121 151121 Computer, Math
## 20623 15-1121 151121 Computer, Math
## 20624 11-2021 112021 Management
## 20625 29-1127 291127 Healthcare Practitioner
## 20626 17-2031 172031 Architecture, Engineer
## 20627 13-1111 131111 Business, Finance
## 20628 11-2022 112022 Management
## 20629 15-1121 151121 Computer, Math
## 20630 15-1121 151121 Computer, Math
## 20631 15-1199 151199 Computer, Math
## 20632 15-1132 151132 Computer, Math
## 20633 15-1199 151199 Computer, Math
## 20634 15-1132 151132 Computer, Math
## 20635 15-2041 152041 Computer, Math
## 20636 15-1132 151132 Computer, Math
## 20637 15-1132 151132 Computer, Math
## 20638 15-1199 151199 Computer, Math
## 20639 17-2141 172141 Architecture, Engineer
## 20640 15-1121 151121 Computer, Math
## 20641 15-1122 151122 Computer, Math
## 20642 15-1121 151121 Computer, Math
## 20643 13-2051 132051 Business, Finance
## 20644 15-1132 151132 Computer, Math
## 20645 15-1132 151132 Computer, Math
## 20646 15-1132 151132 Computer, Math
## 20647 15-1132 151132 Computer, Math
## 20648 17-2112 172112 Architecture, Engineer
## 20649 15-1133 151133 Computer, Math
## 20650 15-1121 151121 Computer, Math
## 20651 15-1121 151121 Computer, Math
## 20652 15-1141 151141 Computer, Math
## 20653 15-2041 152041 Computer, Math
## 20654 15-1199 151199 Computer, Math
## 20655 15-1141 151141 Computer, Math
## 20656 15-2041 152041 Computer, Math
## 20657 27-3031 273031 Media, Design
## 20658 13-1111 131111 Business, Finance
## 20659 19-4099 194099 Life, Physcial, Social Science
## 20660 15-1132 151132 Computer, Math
## 20661 27-1024 271024 Media, Design
## 20662 15-1133 151133 Computer, Math
## 20663 15-1132 151132 Computer, Math
## 20664 15-1132 151132 Computer, Math
## 20665 13-1111 131111 Business, Finance
## 20666 15-1132 151132 Computer, Math
## 20667 17-2072 172072 Architecture, Engineer
## 20668 15-1199 151199 Computer, Math
## 20669 25-1081 251081 Education, Training
## 20670 17-2074 172074 Architecture, Engineer
## 20671 15-1132 151132 Computer, Math
## 20672 15-1132 151132 Computer, Math
## 20673 15-1132 151132 Computer, Math
## 20674 15-1132 151132 Computer, Math
## 20675 13-2051 132051 Business, Finance
## 20676 15-1132 151132 Computer, Math
## 20677 13-2051 132051 Business, Finance
## 20678 15-1131 151131 Computer, Math
## 20679 15-1132 151132 Computer, Math
## 20680 15-1132 151132 Computer, Math
## 20681 15-1199 151199 Computer, Math
## 20682 11-3021 113021 Management
## 20683 15-2041 152041 Computer, Math
## 20684 15-1132 151132 Computer, Math
## 20685 15-1132 151132 Computer, Math
## 20686 15-1121 151121 Computer, Math
## 20687 15-1199 151199 Computer, Math
## 20688 15-1133 151133 Computer, Math
## 20689 15-1132 151132 Computer, Math
## 20690 15-1199 151199 Computer, Math
## 20691 15-1132 151132 Computer, Math
## 20692 15-1132 151132 Computer, Math
## 20693 15-2041 152041 Computer, Math
## 20694 19-2021 192021 Life, Physcial, Social Science
## 20695 11-2021 112021 Management
## 20696 17-2051 172051 Architecture, Engineer
## 20697 15-1199 151199 Computer, Math
## 20698 19-2012 192012 Life, Physcial, Social Science
## 20699 15-1132 151132 Computer, Math
## 20700 15-1132 151132 Computer, Math
## 20701 15-1199 151199 Computer, Math
## 20702 15-1121 151121 Computer, Math
## 20703 25-1071 251071 Education, Training
## 20704 15-1121 151121 Computer, Math
## 20705 15-1132 151132 Computer, Math
## 20706 13-1111 131111 Business, Finance
## 20707 17-2112 172112 Architecture, Engineer
## 20708 13-2011 132011 Business, Finance
## 20709 25-1111 251111 Education, Training
## 20710 15-1199 151199 Computer, Math
## 20711 15-2031 152031 Computer, Math
## 20712 13-2011 132011 Business, Finance
## 20713 15-1199 151199 Computer, Math
## 20714 15-1199 151199 Computer, Math
## 20715 27-1025 271025 Media, Design
## 20716 15-1141 151141 Computer, Math
## 20717 15-1142 151142 Computer, Math
## 20718 15-1133 151133 Computer, Math
## 20719 15-1133 151133 Computer, Math
## 20720 15-1199 151199 Computer, Math
## 20721 17-2141 172141 Architecture, Engineer
## 20722 15-1121 151121 Computer, Math
## 20723 15-1199 151199 Computer, Math
## 20724 15-1143 151143 Computer, Math
## 20725 15-2041 152041 Computer, Math
## 20726 25-1071 251071 Education, Training
## 20727 15-1131 151131 Computer, Math
## 20728 15-1199 151199 Computer, Math
## 20729 15-1121 151121 Computer, Math
## 20730 15-1132 151132 Computer, Math
## 20731 15-1132 151132 Computer, Math
## 20732 13-1111 131111 Business, Finance
## 20733 15-1121 151121 Computer, Math
## 20734 15-1134 151134 Computer, Math
## 20735 17-2141 172141 Architecture, Engineer
## 20736 15-1121 151121 Computer, Math
## 20737 15-1199 151199 Computer, Math
## 20738 15-1121 151121 Computer, Math
## 20739 19-1013 191013 Life, Physcial, Social Science
## 20740 13-1111 131111 Business, Finance
## 20741 13-2099 132099 Business, Finance
## 20742 15-1132 151132 Computer, Math
## 20743 15-1132 151132 Computer, Math
## 20744 15-1132 151132 Computer, Math
## 20745 29-1069 291069 Healthcare Practitioner
## 20746 15-1132 151132 Computer, Math
## 20747 15-1121 151121 Computer, Math
## 20748 15-1132 151132 Computer, Math
## 20749 15-1132 151132 Computer, Math
## 20750 15-1199 151199 Computer, Math
## 20751 15-1132 151132 Computer, Math
## 20752 15-1121 151121 Computer, Math
## 20753 15-2041 152041 Computer, Math
## 20754 15-1034 151034 Computer, Math
## 20755 15-1141 151141 Computer, Math
## 20756 29-1123 291123 Healthcare Practitioner
## 20757 19-2031 192031 Life, Physcial, Social Science
## 20758 15-1121 151121 Computer, Math
## 20759 15-1142 151142 Computer, Math
## 20760 15-1131 151131 Computer, Math
## 20761 15-1199.01 151199 Computer, Math
## 20762 15-2031 152031 Computer, Math
## 20763 15-1132 151132 Computer, Math
## 20764 15-1133 151133 Computer, Math
## 20765 15-1199 151199 Computer, Math
## 20766 15-1121 151121 Computer, Math
## 20767 15-1121 151121 Computer, Math
## 20768 15-1132 151132 Computer, Math
## 20769 15-1132 151132 Computer, Math
## 20770 15-1132 151132 Computer, Math
## 20771 15-1121 151121 Computer, Math
## 20772 15-1132 151132 Computer, Math
## 20773 41-9031 419031 Sales
## 20774 15-1132 151132 Computer, Math
## 20775 15-1132 151132 Computer, Math
## 20776 15-1132 151132 Computer, Math
## 20777 15-1132 151132 Computer, Math
## 20778 15-1131 151131 Computer, Math
## 20779 15-1132 151132 Computer, Math
## 20780 11-3021 113021 Management
## 20781 15-1121 151121 Computer, Math
## 20782 15-1121 151121 Computer, Math
## 20783 15-1142 151142 Computer, Math
## 20784 15-1121 151121 Computer, Math
## 20785 15-1121 151121 Computer, Math
## 20786 15-1199 151199 Computer, Math
## 20787 15-1132 151132 Computer, Math
## 20788 15-1199 151199 Computer, Math
## 20789 15-2031 152031 Computer, Math
## 20790 15-1199 151199 Computer, Math
## 20791 15-1132 151132 Computer, Math
## 20792 15-1121 151121 Computer, Math
## 20793 15-1132 151132 Computer, Math
## 20794 17-2112 172112 Architecture, Engineer
## 20795 15-1132 151132 Computer, Math
## 20796 15-1131 151131 Computer, Math
## 20797 15-1199 151199 Computer, Math
## 20798 15-1131 151131 Computer, Math
## 20799 15-2031 152031 Computer, Math
## 20800 15-2031 152031 Computer, Math
## 20801 17-2041 172041 Architecture, Engineer
## 20802 13-2099 132099 Business, Finance
## 20803 15-1132 151132 Computer, Math
## 20804 29-1127 291127 Healthcare Practitioner
## 20805 13-1081 131081 Business, Finance
## 20806 15-1132 151132 Computer, Math
## 20807 15-1132 151132 Computer, Math
## 20808 11-9111 119111 Management
## 20809 13-1161 131161 Business, Finance
## 20810 15-1199 151199 Computer, Math
## 20811 17-2031 172031 Architecture, Engineer
## 20812 15-1132 151132 Computer, Math
## 20813 15-1132 151132 Computer, Math
## 20814 15-1132 151132 Computer, Math
## 20815 15-1141 151141 Computer, Math
## 20816 15-1132 151132 Computer, Math
## 20817 15-1132 151132 Computer, Math
## 20818 15-1121 151121 Computer, Math
## 20819 17-2141 172141 Architecture, Engineer
## 20820 15-1132 151132 Computer, Math
## 20821 15-1121 151121 Computer, Math
## 20822 15-1199 151199 Computer, Math
## 20823 15-1199 151199 Computer, Math
## 20824 15-1199 151199 Computer, Math
## 20825 13-2051 132051 Business, Finance
## 20826 15-1122 151122 Computer, Math
## 20827 15-1199 151199 Computer, Math
## 20828 15-1133 151133 Computer, Math
## 20829 15-1132 151132 Computer, Math
## 20830 15-1034 151034 Computer, Math
## 20831 29-2011 292011 Healthcare Practitioner
## 20832 15-1199 151199 Computer, Math
## 20833 15-1111 151111 Computer, Math
## 20834 17-2072 172072 Architecture, Engineer
## 20835 15-1132 151132 Computer, Math
## 20836 13-2051 132051 Business, Finance
## 20837 15-1199 151199 Computer, Math
## 20838 17-3023 173023 Architecture, Engineer
## 20839 13-2051 132051 Business, Finance
## 20840 15-1132 151132 Computer, Math
## 20841 15-2031 152031 Computer, Math
## 20842 17-2072 172072 Architecture, Engineer
## 20843 15-1121 151121 Computer, Math
## 20844 15-1132 151132 Computer, Math
## 20845 15-1121 151121 Computer, Math
## 20846 13-2052 132052 Business, Finance
## 20847 15-1132 151132 Computer, Math
## 20848 11-2021 112021 Management
## 20849 15-1132 151132 Computer, Math
## 20850 15-1132 151132 Computer, Math
## 20851 15-1132 151132 Computer, Math
## 20852 15-1132 151132 Computer, Math
## 20853 17-2072 172072 Architecture, Engineer
## 20854 29-1123 291123 Healthcare Practitioner
## 20855 15-1141 151141 Computer, Math
## 20856 11-3031 113031 Management
## 20857 15-1131 151131 Computer, Math
## 20858 15-2021 152021 Computer, Math
## 20859 15-1132 151132 Computer, Math
## 20860 15-1131 151131 Computer, Math
## 20861 17-2031 172031 Architecture, Engineer
## 20862 15-1121 151121 Computer, Math
## 20863 15-1121 151121 Computer, Math
## 20864 13-1199 131199 Business, Finance
## 20865 15-1132 151132 Computer, Math
## 20866 15-1199 151199 Computer, Math
## 20867 15-1132 151132 Computer, Math
## 20868 15-2031 152031 Computer, Math
## 20869 15-1133 151133 Computer, Math
## 20870 13-1051 131051 Business, Finance
## 20871 15-1132 151132 Computer, Math
## 20872 15-1141 151141 Computer, Math
## 20873 19-2041 192041 Life, Physcial, Social Science
## 20874 15-2041 152041 Computer, Math
## 20875 15-1121 151121 Computer, Math
## 20876 15-1199 151199 Computer, Math
## 20877 17-2051 172051 Architecture, Engineer
## 20878 25-1124 251124 Education, Training
## 20879 15-1132 151132 Computer, Math
## 20880 13-2051 132051 Business, Finance
## 20881 15-1121 151121 Computer, Math
## 20882 17-2141 172141 Architecture, Engineer
## 20883 15-1199 151199 Computer, Math
## 20884 29-1123 291123 Healthcare Practitioner
## 20885 15-2031 152031 Computer, Math
## 20886 13-2011 132011 Business, Finance
## 20887 15-1132 151132 Computer, Math
## 20888 29-1199 291199 Healthcare Practitioner
## 20889 15-1111 151111 Computer, Math
## 20890 15-1121 151121 Computer, Math
## 20891 15-1199 151199 Computer, Math
## 20892 17-2112 172112 Architecture, Engineer
## 20893 15-1132 151132 Computer, Math
## 20894 15-1132 151132 Computer, Math
## 20895 15-1132 151132 Computer, Math
## 20896 13-1081 131081 Business, Finance
## 20897 15-1132 151132 Computer, Math
## 20898 15-1121 151121 Computer, Math
## 20899 13-1161 131161 Business, Finance
## 20900 15-1121 151121 Computer, Math
## 20901 19-4061 194061 Life, Physcial, Social Science
## 20902 15-1121 151121 Computer, Math
## 20903 15-1121 151121 Computer, Math
## 20904 27-3031 273031 Media, Design
## 20905 17-2171 172171 Architecture, Engineer
## 20906 17-2112 172112 Architecture, Engineer
## 20907 15-1132 151132 Computer, Math
## 20908 15-1132 151132 Computer, Math
## 20909 17-2141 172141 Architecture, Engineer
## 20910 15-1141 151141 Computer, Math
## 20911 15-1132 151132 Computer, Math
## 20912 15-1199 151199 Computer, Math
## 20913 15-1132 151132 Computer, Math
## 20914 15-1131 151131 Computer, Math
## 20915 15-1134 151134 Computer, Math
## 20916 13-1111 131111 Business, Finance
## 20917 15-1134 151134 Computer, Math
## 20918 15-1132 151132 Computer, Math
## 20919 15-1132 151132 Computer, Math
## 20920 15-1132 151132 Computer, Math
## 20921 15-1141 151141 Computer, Math
## 20922 13-1111 131111 Business, Finance
## 20923 15-1121 151121 Computer, Math
## 20924 15-1199 151199 Computer, Math
## 20925 11-9199 119199 Management
## 20926 15-1121 151121 Computer, Math
## 20927 15-1133 151133 Computer, Math
## 20928 15-1132 151132 Computer, Math
## 20929 15-1121 151121 Computer, Math
## 20930 15-1132 151132 Computer, Math
## 20931 15-1132 151132 Computer, Math
## 20932 15-1132 151132 Computer, Math
## 20933 15-1132 151132 Computer, Math
## 20934 15-1143 151143 Computer, Math
## 20935 15-1199 151199 Computer, Math
## 20936 15-1132 151132 Computer, Math
## 20937 15-1141 151141 Computer, Math
## 20938 15-1199 151199 Computer, Math
## 20939 15-1121 151121 Computer, Math
## 20940 15-1133 151133 Computer, Math
## 20941 15-1121 151121 Computer, Math
## 20942 15-1142 151142 Computer, Math
## 20943 15-1132 151132 Computer, Math
## 20944 15-1132 151132 Computer, Math
## 20945 25-1032 251032 Education, Training
## 20946 15-1121 151121 Computer, Math
## 20947 15-1132 151132 Computer, Math
## 20948 15-1132 151132 Computer, Math
## 20949 15-1132 151132 Computer, Math
## 20950 17-2131 172131 Architecture, Engineer
## 20951 15-1121 151121 Computer, Math
## 20952 15-1199 151199 Computer, Math
## 20953 15-1132 151132 Computer, Math
## 20954 19-1029 191029 Life, Physcial, Social Science
## 20955 15-2031 152031 Computer, Math
## 20956 15-1142 151142 Computer, Math
## 20957 15-1132 151132 Computer, Math
## 20958 15-1132 151132 Computer, Math
## 20959 17-2111 172111 Architecture, Engineer
## 20960 15-1111 151111 Computer, Math
## 20961 15-1122 151122 Computer, Math
## 20962 17-1011 171011 Architecture, Engineer
## 20963 15-1132 151132 Computer, Math
## 20964 15-1132 151132 Computer, Math
## 20965 15-1121 151121 Computer, Math
## 20966 25-3021 253021 Education, Training
## 20967 17-2199 172199 Architecture, Engineer
## 20968 15-1142 151142 Computer, Math
## 20969 15-1121 151121 Computer, Math
## 20970 15-1199 151199 Computer, Math
## 20971 15-1131 151131 Computer, Math
## 20972 15-1132 151132 Computer, Math
## 20973 15-1199 151199 Computer, Math
## 20974 15-1132 151132 Computer, Math
## 20975 15-1142 151142 Computer, Math
## 20976 17-2071 172071 Architecture, Engineer
## 20977 15-1132 151132 Computer, Math
## 20978 15-1133 151133 Computer, Math
## 20979 15-1121 151121 Computer, Math
## 20980 15-1121 151121 Computer, Math
## 20981 17-2112 172112 Architecture, Engineer
## 20982 15-1121 151121 Computer, Math
## 20983 15-1132 151132 Computer, Math
## 20984 15-1199 151199 Computer, Math
## 20985 15-1121 151121 Computer, Math
## 20986 15-1131 151131 Computer, Math
## 20987 17-2199 172199 Architecture, Engineer
## 20988 15-1132 151132 Computer, Math
## 20989 13-1041 131041 Business, Finance
## 20990 13-1111 131111 Business, Finance
## 20991 15-1141 151141 Computer, Math
## 20992 15-1132 151132 Computer, Math
## 20993 15-1121 151121 Computer, Math
## 20994 15-1121 151121 Computer, Math
## 20995 19-1029 191029 Life, Physcial, Social Science
## 20996 15-1121 151121 Computer, Math
## 20997 15-1132 151132 Computer, Math
## 20998 15-1132 151132 Computer, Math
## 20999 15-1132 151132 Computer, Math
## 21000 15-1132 151132 Computer, Math
## 21001 15-1132 151132 Computer, Math
## 21002 11-9111 119111 Management
## 21003 19-3011 193011 Life, Physcial, Social Science
## 21004 15-1132 151132 Computer, Math
## 21005 15-1132 151132 Computer, Math
## 21006 15-1132 151132 Computer, Math
## 21007 15-1133 151133 Computer, Math
## 21008 15-1132 151132 Computer, Math
## 21009 15-1121 151121 Computer, Math
## 21010 15-1141 151141 Computer, Math
## 21011 15-1121 151121 Computer, Math
## 21012 13-2051 132051 Business, Finance
## 21013 15-1132 151132 Computer, Math
## 21014 15-1121 151121 Computer, Math
## 21015 15-1133 151133 Computer, Math
## 21016 15-1132 151132 Computer, Math
## 21017 19-4041 194041 Life, Physcial, Social Science
## 21018 15-1121 151121 Computer, Math
## 21019 15-1133 151133 Computer, Math
## 21020 15-1132 151132 Computer, Math
## 21021 15-1132 151132 Computer, Math
## 21022 15-1199 151199 Computer, Math
## 21023 15-1132 151132 Computer, Math
## 21024 11-3021 113021 Management
## 21025 19-4061 194061 Life, Physcial, Social Science
## 21026 15-1199 151199 Computer, Math
## 21027 17-2141 172141 Architecture, Engineer
## 21028 15-1121 151121 Computer, Math
## 21029 15-1132 151132 Computer, Math
## 21030 13-1161 131161 Business, Finance
## 21031 25-1021 251021 Education, Training
## 21032 15-1132 151132 Computer, Math
## 21033 15-1121 151121 Computer, Math
## 21034 17-2072 172072 Architecture, Engineer
## 21035 15-1111 151111 Computer, Math
## 21036 15-1037 151037 Computer, Math
## 21037 15-2041 152041 Computer, Math
## 21038 13-1111 131111 Business, Finance
## 21039 15-1132 151132 Computer, Math
## 21040 15-1121 151121 Computer, Math
## 21041 15-1132 151132 Computer, Math
## 21042 15-1199 151199 Computer, Math
## 21043 17-2051 172051 Architecture, Engineer
## 21044 15-1132 151132 Computer, Math
## 21045 17-2031 172031 Architecture, Engineer
## 21046 15-1121 151121 Computer, Math
## 21047 15-1121 151121 Computer, Math
## 21048 15-1132 151132 Computer, Math
## 21049 13-2099 132099 Business, Finance
## 21050 15-1131 151131 Computer, Math
## 21051 13-1111 131111 Business, Finance
## 21052 15-1132 151132 Computer, Math
## 21053 15-1132 151132 Computer, Math
## 21054 15-1132 151132 Computer, Math
## 21055 11-3021 113021 Management
## 21056 19-1029 191029 Life, Physcial, Social Science
## 21057 15-1132 151132 Computer, Math
## 21058 15-1199 151199 Computer, Math
## 21059 15-1132 151132 Computer, Math
## 21060 15-1121 151121 Computer, Math
## 21061 15-1132 151132 Computer, Math
## 21062 29-1069 291069 Healthcare Practitioner
## 21063 15-1121 151121 Computer, Math
## 21064 15-1132 151132 Computer, Math
## 21065 15-1132 151132 Computer, Math
## 21066 13-1111 131111 Business, Finance
## 21067 15-1132 151132 Computer, Math
## 21068 15-1133 151133 Computer, Math
## 21069 15-1121 151121 Computer, Math
## 21070 15-1121 151121 Computer, Math
## 21071 15-1131 151131 Computer, Math
## 21072 15-1132 151132 Computer, Math
## 21073 15-1199 151199 Computer, Math
## 21074 19-2032 192032 Life, Physcial, Social Science
## 21075 15-1199 151199 Computer, Math
## 21076 15-1132 151132 Computer, Math
## 21077 13-2011 132011 Business, Finance
## 21078 15-1132 151132 Computer, Math
## 21079 19-1021 191021 Life, Physcial, Social Science
## 21080 15-1132 151132 Computer, Math
## 21081 15-1121 151121 Computer, Math
## 21082 25-1032 251032 Education, Training
## 21083 17-2071 172071 Architecture, Engineer
## 21084 15-1111 151111 Computer, Math
## 21085 15-1199 151199 Computer, Math
## 21086 15-1132 151132 Computer, Math
## 21087 15-1132 151132 Computer, Math
## 21088 15-2031 152031 Computer, Math
## 21089 19-4061 194061 Life, Physcial, Social Science
## 21090 15-1199 151199 Computer, Math
## 21091 15-2041 152041 Computer, Math
## 21092 15-1133 151133 Computer, Math
## 21093 15-2041 152041 Computer, Math
## 21094 11-3021 113021 Management
## 21095 15-1132 151132 Computer, Math
## 21096 15-1132 151132 Computer, Math
## 21097 15-1132 151132 Computer, Math
## 21098 15-1121 151121 Computer, Math
## 21099 17-2071 172071 Architecture, Engineer
## 21100 11-3021 113021 Management
## 21101 15-1132 151132 Computer, Math
## 21102 15-1132 151132 Computer, Math
## 21103 15-1132 151132 Computer, Math
## 21104 15-1133 151133 Computer, Math
## 21105 15-1132 151132 Computer, Math
## 21106 15-1199 151199 Computer, Math
## 21107 15-2021 152021 Computer, Math
## 21108 17-2051 172051 Architecture, Engineer
## 21109 15-1199 151199 Computer, Math
## 21110 15-1132 151132 Computer, Math
## 21111 15-1142 151142 Computer, Math
## 21112 13-2011 132011 Business, Finance
## 21113 17-2199 172199 Architecture, Engineer
## 21114 15-1132 151132 Computer, Math
## 21115 15-1131 151131 Computer, Math
## 21116 15-1141 151141 Computer, Math
## 21117 15-1132 151132 Computer, Math
## 21118 15-1121 151121 Computer, Math
## 21119 15-1121 151121 Computer, Math
## 21120 15-1121 151121 Computer, Math
## 21121 15-1132 151132 Computer, Math
## 21122 15-1199 151199 Computer, Math
## 21123 29-1123 291123 Healthcare Practitioner
## 21124 27-1024 271024 Media, Design
## 21125 15-1199 151199 Computer, Math
## 21126 15-1132 151132 Computer, Math
## 21127 19-1042 191042 Life, Physcial, Social Science
## 21128 17-2112 172112 Architecture, Engineer
## 21129 15-1199 151199 Computer, Math
## 21130 15-1199 151199 Computer, Math
## 21131 13-1081 131081 Business, Finance
## 21132 25-1124 251124 Education, Training
## 21133 11-3021 113021 Management
## 21134 15-1199 151199 Computer, Math
## 21135 15-1199 151199 Computer, Math
## 21136 15-2031 152031 Computer, Math
## 21137 15-1133 151133 Computer, Math
## 21138 15-1132 151132 Computer, Math
## 21139 15-1132 151132 Computer, Math
## 21140 13-2011 132011 Business, Finance
## 21141 15-1133 151133 Computer, Math
## 21142 15-1132 151132 Computer, Math
## 21143 15-1121 151121 Computer, Math
## 21144 13-1041 131041 Business, Finance
## 21145 17-2072 172072 Architecture, Engineer
## 21146 15-1132 151132 Computer, Math
## 21147 15-1121 151121 Computer, Math
## 21148 15-2041 152041 Computer, Math
## 21149 25-2021 252021 Education, Training
## 21150 15-1199 151199 Computer, Math
## 21151 15-1121 151121 Computer, Math
## 21152 15-1132 151132 Computer, Math
## 21153 15-1132 151132 Computer, Math
## 21154 15-1134 151134 Computer, Math
## 21155 25-1011 251011 Education, Training
## 21156 17-2061 172061 Architecture, Engineer
## 21157 15-1132 151132 Computer, Math
## 21158 13-1111 131111 Business, Finance
## 21159 15-1199 151199 Computer, Math
## 21160 15-1132 151132 Computer, Math
## 21161 25-1042 251042 Education, Training
## 21162 15-1199 151199 Computer, Math
## 21163 15-1141 151141 Computer, Math
## 21164 15-1131 151131 Computer, Math
## 21165 17-2071 172071 Architecture, Engineer
## 21166 15-1132 151132 Computer, Math
## 21167 15-1132 151132 Computer, Math
## 21168 15-1199 151199 Computer, Math
## 21169 15-1132 151132 Computer, Math
## 21170 13-1199 131199 Business, Finance
## 21171 17-2031 172031 Architecture, Engineer
## 21172 15-1131 151131 Computer, Math
## 21173 19-1029 191029 Life, Physcial, Social Science
## 21174 15-1143 151143 Computer, Math
## 21175 11-3071 113071 Management
## 21176 15-1132 151132 Computer, Math
## 21177 27-3042 273042 Media, Design
## 21178 15-1133 151133 Computer, Math
## 21179 15-1199 151199 Computer, Math
## 21180 15-1132 151132 Computer, Math
## 21181 15-1131 151131 Computer, Math
## 21182 17-2071 172071 Architecture, Engineer
## 21183 29-9099 299099 Healthcare Practitioner
## 21184 15-1132 151132 Computer, Math
## 21185 29-9099 299099 Healthcare Practitioner
## 21186 15-1132 151132 Computer, Math
## 21187 15-1132 151132 Computer, Math
## 21188 15-1132 151132 Computer, Math
## 21189 17-3011 173011 Architecture, Engineer
## 21190 15-1142 151142 Computer, Math
## 21191 15-1132 151132 Computer, Math
## 21192 23-1011 231011 Legal
## 21193 15-1132 151132 Computer, Math
## 21194 15-1133 151133 Computer, Math
## 21195 13-1111 131111 Business, Finance
## 21196 15-1132 151132 Computer, Math
## 21197 21-1023 211023 Social Service
## 21198 15-1132 151132 Computer, Math
## 21199 25-1043 251043 Education, Training
## 21200 13-2051 132051 Business, Finance
## 21201 15-1199 151199 Computer, Math
## 21202 15-1132 151132 Computer, Math
## 21203 15-1132 151132 Computer, Math
## 21204 19-1042 191042 Life, Physcial, Social Science
## 21205 17-2141 172141 Architecture, Engineer
## 21206 15-1133 151133 Computer, Math
## 21207 29-1069 291069 Healthcare Practitioner
## 21208 15-1131 151131 Computer, Math
## 21209 15-1199 151199 Computer, Math
## 21210 15-1132 151132 Computer, Math
## 21211 15-1132 151132 Computer, Math
## 21212 17-2051 172051 Architecture, Engineer
## 21213 29-1062 291062 Healthcare Practitioner
## 21214 15-1199 151199 Computer, Math
## 21215 15-1133 151133 Computer, Math
## 21216 15-1199 151199 Computer, Math
## 21217 19-4021 194021 Life, Physcial, Social Science
## 21218 15-1121 151121 Computer, Math
## 21219 15-1132 151132 Computer, Math
## 21220 15-1132 151132 Computer, Math
## 21221 17-2072 172072 Architecture, Engineer
## 21222 15-1199 151199 Computer, Math
## 21223 15-1121 151121 Computer, Math
## 21224 15-1132 151132 Computer, Math
## 21225 15-1037 151037 Computer, Math
## 21226 15-2031 152031 Computer, Math
## 21227 11-9111 119111 Management
## 21228 15-1141 151141 Computer, Math
## 21229 15-1199 151199 Computer, Math
## 21230 13-2051 132051 Business, Finance
## 21231 17-2112 172112 Architecture, Engineer
## 21232 15-1132 151132 Computer, Math
## 21233 15-1121 151121 Computer, Math
## 21234 15-1132 151132 Computer, Math
## 21235 15-1199 151199 Computer, Math
## 21236 15-1132 151132 Computer, Math
## 21237 19-1042 191042 Life, Physcial, Social Science
## 21238 27-3041 273041 Media, Design
## 21239 27-1024 271024 Media, Design
## 21240 15-1132 151132 Computer, Math
## 21241 15-1121 151121 Computer, Math
## 21242 15-1132 151132 Computer, Math
## 21243 15-1152 151152 Computer, Math
## 21244 15-1199 151199 Computer, Math
## 21245 13-1111 131111 Business, Finance
## 21246 15-1131 151131 Computer, Math
## 21247 13-1111 131111 Business, Finance
## 21248 15-1132 151132 Computer, Math
## 21249 15-1199 151199 Computer, Math
## 21250 27-1024 271024 Media, Design
## 21251 15-1199 151199 Computer, Math
## 21252 13-1111 131111 Business, Finance
## 21253 13-1111 131111 Business, Finance
## 21254 15-1133 151133 Computer, Math
## 21255 19-1029 191029 Life, Physcial, Social Science
## 21256 15-1199 151199 Computer, Math
## 21257 15-1132 151132 Computer, Math
## 21258 15-1121 151121 Computer, Math
## 21259 13-2011 132011 Business, Finance
## 21260 13-2011 132011 Business, Finance
## 21261 15-1131 151131 Computer, Math
## 21262 15-1121 151121 Computer, Math
## 21263 15-1141 151141 Computer, Math
## 21264 15-1122 151122 Computer, Math
## 21265 15-1132 151132 Computer, Math
## 21266 15-2031 152031 Computer, Math
## 21267 15-1121 151121 Computer, Math
## 21268 17-2051 172051 Architecture, Engineer
## 21269 15-1132 151132 Computer, Math
## 21270 17-3011 173011 Architecture, Engineer
## 21271 15-1122 151122 Computer, Math
## 21272 15-1111 151111 Computer, Math
## 21273 19-2031 192031 Life, Physcial, Social Science
## 21274 15-1132 151132 Computer, Math
## 21275 15-1199 151199 Computer, Math
## 21276 15-1132 151132 Computer, Math
## 21277 15-1132 151132 Computer, Math
## 21278 15-1132 151132 Computer, Math
## 21279 15-1141 151141 Computer, Math
## 21280 13-1111 131111 Business, Finance
## 21281 15-1132 151132 Computer, Math
## 21282 15-1199 151199 Computer, Math
## 21283 15-1133 151133 Computer, Math
## 21284 15-2041 152041 Computer, Math
## 21285 15-2031 152031 Computer, Math
## 21286 13-2011 132011 Business, Finance
## 21287 17-2062 172062 Architecture, Engineer
## 21288 15-1142 151142 Computer, Math
## 21289 13-2051 132051 Business, Finance
## 21290 15-1132 151132 Computer, Math
## 21291 29-1123 291123 Healthcare Practitioner
## 21292 15-1132 151132 Computer, Math
## 21293 15-1199 151199 Computer, Math
## 21294 15-1132 151132 Computer, Math
## 21295 15-1131 151131 Computer, Math
## 21296 15-1132 151132 Computer, Math
## 21297 17-2072 172072 Architecture, Engineer
## 21298 15-1132 151132 Computer, Math
## 21299 15-1132 151132 Computer, Math
## 21300 15-1132 151132 Computer, Math
## 21301 13-1111 131111 Business, Finance
## 21302 15-1132 151132 Computer, Math
## 21303 11-2022 112022 Management
## 21304 15-1132 151132 Computer, Math
## 21305 11-3021 113021 Management
## 21306 17-2061 172061 Architecture, Engineer
## 21307 15-1111 151111 Computer, Math
## 21308 15-1132 151132 Computer, Math
## 21309 15-1133 151133 Computer, Math
## 21310 15-1132 151132 Computer, Math
## 21311 13-1051 131051 Business, Finance
## 21312 15-1132 151132 Computer, Math
## 21313 15-1133 151133 Computer, Math
## 21314 15-2041 152041 Computer, Math
## 21315 29-1122 291122 Healthcare Practitioner
## 21316 15-1121 151121 Computer, Math
## 21317 15-1121 151121 Computer, Math
## 21318 13-1111 131111 Business, Finance
## 21319 15-2031 152031 Computer, Math
## 21320 15-1121 151121 Computer, Math
## 21321 15-1132 151132 Computer, Math
## 21322 15-1199 151199 Computer, Math
## 21323 15-1121 151121 Computer, Math
## 21324 15-1199 151199 Computer, Math
## 21325 15-1142 151142 Computer, Math
## 21326 29-1123 291123 Healthcare Practitioner
## 21327 15-1199 151199 Computer, Math
## 21328 15-1132 151132 Computer, Math
## 21329 15-2031 152031 Computer, Math
## 21330 29-2011 292011 Healthcare Practitioner
## 21331 15-1132 151132 Computer, Math
## 21332 29-9099 299099 Healthcare Practitioner
## 21333 15-1132 151132 Computer, Math
## 21334 17-2141 172141 Architecture, Engineer
## 21335 15-1132 151132 Computer, Math
## 21336 15-1199 151199 Computer, Math
## 21337 29-1069 291069 Healthcare Practitioner
## 21338 15-1131 151131 Computer, Math
## 21339 15-1132 151132 Computer, Math
## 21340 15-1199 151199 Computer, Math
## 21341 15-1121 151121 Computer, Math
## 21342 15-1132 151132 Computer, Math
## 21343 23-1011 231011 Legal
## 21344 15-1199 151199 Computer, Math
## 21345 19-2031 192031 Life, Physcial, Social Science
## 21346 15-1199 151199 Computer, Math
## 21347 25-1071 251071 Education, Training
## 21348 15-1121 151121 Computer, Math
## 21349 15-1132 151132 Computer, Math
## 21350 15-1199 151199 Computer, Math
## 21351 15-1199 151199 Computer, Math
## 21352 15-1141 151141 Computer, Math
## 21353 15-1132 151132 Computer, Math
## 21354 15-1121 151121 Computer, Math
## 21355 15-1121 151121 Computer, Math
## 21356 13-1161 131161 Business, Finance
## 21357 15-1132 151132 Computer, Math
## 21358 15-1132 151132 Computer, Math
## 21359 15-1131 151131 Computer, Math
## 21360 15-1133 151133 Computer, Math
## 21361 15-1133 151133 Computer, Math
## 21362 15-1132 151132 Computer, Math
## 21363 13-1051 131051 Business, Finance
## 21364 15-2031 152031 Computer, Math
## 21365 15-1132 151132 Computer, Math
## 21366 15-1132 151132 Computer, Math
## 21367 15-1132 151132 Computer, Math
## 21368 13-1111 131111 Business, Finance
## 21369 15-1121 151121 Computer, Math
## 21370 13-1111 131111 Business, Finance
## 21371 13-2011 132011 Business, Finance
## 21372 15-1132 151132 Computer, Math
## 21373 15-1132 151132 Computer, Math
## 21374 15-1131 151131 Computer, Math
## 21375 13-1111 131111 Business, Finance
## 21376 15-1132 151132 Computer, Math
## 21377 25-2022 252022 Education, Training
## 21378 17-2071 172071 Architecture, Engineer
## 21379 15-2041 152041 Computer, Math
## 21380 15-1121 151121 Computer, Math
## 21381 15-1131 151131 Computer, Math
## 21382 11-3021 113021 Management
## 21383 15-1131 151131 Computer, Math
## 21384 13-1081 131081 Business, Finance
## 21385 15-1121 151121 Computer, Math
## 21386 15-1199 151199 Computer, Math
## 21387 15-1133 151133 Computer, Math
## 21388 15-1134 151134 Computer, Math
## 21389 15-1132 151132 Computer, Math
## 21390 15-1132 151132 Computer, Math
## 21391 15-1132 151132 Computer, Math
## 21392 15-1199 151199 Computer, Math
## 21393 15-1131 151131 Computer, Math
## 21394 15-1121 151121 Computer, Math
## 21395 13-2099 132099 Business, Finance
## 21396 13-2011 132011 Business, Finance
## 21397 15-1121 151121 Computer, Math
## 21398 15-1142 151142 Computer, Math
## 21399 15-1121 151121 Computer, Math
## 21400 15-1199 151199 Computer, Math
## 21401 15-1132 151132 Computer, Math
## 21402 15-1121 151121 Computer, Math
## 21403 15-1141 151141 Computer, Math
## 21404 19-1013 191013 Life, Physcial, Social Science
## 21405 15-1132 151132 Computer, Math
## 21406 15-1132 151132 Computer, Math
## 21407 15-1131 151131 Computer, Math
## 21408 15-1132 151132 Computer, Math
## 21409 17-2071 172071 Architecture, Engineer
## 21410 15-1132 151132 Computer, Math
## 21411 15-1199 151199 Computer, Math
## 21412 15-2041 152041 Computer, Math
## 21413 15-1121 151121 Computer, Math
## 21414 19-1029 191029 Life, Physcial, Social Science
## 21415 15-1121 151121 Computer, Math
## 21416 15-1199 151199 Computer, Math
## 21417 11-3051 113051 Management
## 21418 13-2011 132011 Business, Finance
## 21419 15-1132 151132 Computer, Math
## 21420 15-1132 151132 Computer, Math
## 21421 15-1199 151199 Computer, Math
## 21422 15-1121 151121 Computer, Math
## 21423 15-1131 151131 Computer, Math
## 21424 15-1141 151141 Computer, Math
## 21425 15-1132 151132 Computer, Math
## 21426 15-1142 151142 Computer, Math
## 21427 15-1134 151134 Computer, Math
## 21428 15-1121 151121 Computer, Math
## 21429 15-1132 151132 Computer, Math
## 21430 15-1132 151132 Computer, Math
## 21431 15-1132 151132 Computer, Math
## 21432 17-2061 172061 Architecture, Engineer
## 21433 17-2051 172051 Architecture, Engineer
## 21434 15-1132 151132 Computer, Math
## 21435 15-1121 151121 Computer, Math
## 21436 15-2031 152031 Computer, Math
## 21437 15-1132 151132 Computer, Math
## 21438 15-1132 151132 Computer, Math
## 21439 13-2011 132011 Business, Finance
## 21440 15-1199 151199 Computer, Math
## 21441 15-1121 151121 Computer, Math
## 21442 15-1132 151132 Computer, Math
## 21443 15-1132 151132 Computer, Math
## 21444 15-1132 151132 Computer, Math
## 21445 15-1132 151132 Computer, Math
## 21446 15-1133 151133 Computer, Math
## 21447 15-1121 151121 Computer, Math
## 21448 15-1132 151132 Computer, Math
## 21449 15-1199 151199 Computer, Math
## 21450 15-1132 151132 Computer, Math
## 21451 15-1141 151141 Computer, Math
## 21452 15-1132 151132 Computer, Math
## 21453 15-1133 151133 Computer, Math
## 21454 15-1132 151132 Computer, Math
## 21455 15-1132 151132 Computer, Math
## 21456 15-2031 152031 Computer, Math
## 21457 17-2071 172071 Architecture, Engineer
## 21458 15-1132 151132 Computer, Math
## 21459 15-1131 151131 Computer, Math
## 21460 13-2051 132051 Business, Finance
## 21461 17-2071 172071 Architecture, Engineer
## 21462 15-1199 151199 Computer, Math
## 21463 15-1132 151132 Computer, Math
## 21464 15-1199 151199 Computer, Math
## 21465 15-1121 151121 Computer, Math
## 21466 15-1131 151131 Computer, Math
## 21467 15-1133 151133 Computer, Math
## 21468 15-1132 151132 Computer, Math
## 21469 15-1133 151133 Computer, Math
## 21470 11-9032 119032 Management
## 21471 15-1121 151121 Computer, Math
## 21472 15-1199 151199 Computer, Math
## 21473 15-1199 151199 Computer, Math
## 21474 15-1199 151199 Computer, Math
## 21475 15-1132 151132 Computer, Math
## 21476 15-1121 151121 Computer, Math
## 21477 15-1132 151132 Computer, Math
## 21478 15-1132 151132 Computer, Math
## 21479 15-1132 151132 Computer, Math
## 21480 15-1141 151141 Computer, Math
## 21481 17-2071 172071 Architecture, Engineer
## 21482 19-3011 193011 Life, Physcial, Social Science
## 21483 17-2071 172071 Architecture, Engineer
## 21484 15-1199 151199 Computer, Math
## 21485 15-2031 152031 Computer, Math
## 21486 15-1132 151132 Computer, Math
## 21487 15-1132 151132 Computer, Math
## 21488 15-1133 151133 Computer, Math
## 21489 15-1132 151132 Computer, Math
## 21490 15-1132 151132 Computer, Math
## 21491 15-2031 152031 Computer, Math
## 21492 15-1132 151132 Computer, Math
## 21493 15-2031 152031 Computer, Math
## 21494 15-1131 151131 Computer, Math
## 21495 13-1111 131111 Business, Finance
## 21496 15-1132 151132 Computer, Math
## 21497 15-1132 151132 Computer, Math
## 21498 15-1131 151131 Computer, Math
## 21499 15-1199 151199 Computer, Math
## 21500 15-1141 151141 Computer, Math
## 21501 15-1132 151132 Computer, Math
## 21502 25-1065 251065 Education, Training
## 21503 15-1132 151132 Computer, Math
## 21504 15-1132 151132 Computer, Math
## 21505 11-3021 113021 Management
## 21506 21-1011 211011 Social Service
## 21507 15-1121 151121 Computer, Math
## 21508 19-1029 191029 Life, Physcial, Social Science
## 21509 15-1199 151199 Computer, Math
## 21510 29-1123 291123 Healthcare Practitioner
## 21511 15-1132 151132 Computer, Math
## 21512 15-1132 151132 Computer, Math
## 21513 15-1121 151121 Computer, Math
## 21514 15-1132 151132 Computer, Math
## 21515 15-1199 151199 Computer, Math
## 21516 17-2071 172071 Architecture, Engineer
## 21517 15-1121 151121 Computer, Math
## 21518 15-1132 151132 Computer, Math
## 21519 29-1021 291021 Healthcare Practitioner
## 21520 15-1121 151121 Computer, Math
## 21521 15-1199 151199 Computer, Math
## 21522 13-1111 131111 Business, Finance
## 21523 17-2071 172071 Architecture, Engineer
## 21524 15-1131 151131 Computer, Math
## 21525 19-1042 191042 Life, Physcial, Social Science
## 21526 15-1199 151199 Computer, Math
## 21527 15-1132 151132 Computer, Math
## 21528 11-3051 113051 Management
## 21529 15-1132 151132 Computer, Math
## 21530 15-1132 151132 Computer, Math
## 21531 15-1131 151131 Computer, Math
## 21532 15-1132 151132 Computer, Math
## 21533 15-1121 151121 Computer, Math
## 21534 15-1199 151199 Computer, Math
## 21535 15-1133 151133 Computer, Math
## 21536 15-1199 151199 Computer, Math
## 21537 15-1121 151121 Computer, Math
## 21538 17-2072 172072 Architecture, Engineer
## 21539 17-2141 172141 Architecture, Engineer
## 21540 15-1121 151121 Computer, Math
## 21541 19-1022 191022 Life, Physcial, Social Science
## 21542 15-1132 151132 Computer, Math
## 21543 15-1121 151121 Computer, Math
## 21544 15-1199 151199 Computer, Math
## 21545 15-1132 151132 Computer, Math
## 21546 25-4013 254013 Education, Training
## 21547 15-1121 151121 Computer, Math
## 21548 15-1132 151132 Computer, Math
## 21549 15-1199 151199 Computer, Math
## 21550 17-2141 172141 Architecture, Engineer
## 21551 19-4041 194041 Life, Physcial, Social Science
## 21552 13-1199 131199 Business, Finance
## 21553 11-9111 119111 Management
## 21554 27-1029 271029 Media, Design
## 21555 15-2041 152041 Computer, Math
## 21556 15-1199 151199 Computer, Math
## 21557 41-9031 419031 Sales
## 21558 15-1131 151131 Computer, Math
## 21559 15-1199 151199 Computer, Math
## 21560 15-1121 151121 Computer, Math
## 21561 15-1132 151132 Computer, Math
## 21562 29-1051 291051 Healthcare Practitioner
## 21563 15-1132 151132 Computer, Math
## 21564 13-1111 131111 Business, Finance
## 21565 13-2099 132099 Business, Finance
## 21566 15-2031 152031 Computer, Math
## 21567 15-1121 151121 Computer, Math
## 21568 15-1142 151142 Computer, Math
## 21569 15-1132 151132 Computer, Math
## 21570 13-2011 132011 Business, Finance
## 21571 15-1132 151132 Computer, Math
## 21572 15-1132 151132 Computer, Math
## 21573 15-1132 151132 Computer, Math
## 21574 15-1132 151132 Computer, Math
## 21575 15-1133 151133 Computer, Math
## 21576 15-1121 151121 Computer, Math
## 21577 15-1132 151132 Computer, Math
## 21578 17-2141 172141 Architecture, Engineer
## 21579 15-1132 151132 Computer, Math
## 21580 15-1132 151132 Computer, Math
## 21581 11-3021 113021 Management
## 21582 17-2071 172071 Architecture, Engineer
## 21583 15-1121 151121 Computer, Math
## 21584 15-1132 151132 Computer, Math
## 21585 29-1123 291123 Healthcare Practitioner
## 21586 15-1132 151132 Computer, Math
## 21587 15-1121 151121 Computer, Math
## 21588 15-1132 151132 Computer, Math
## 21589 15-1121 151121 Computer, Math
## 21590 15-1121 151121 Computer, Math
## 21591 15-1141 151141 Computer, Math
## 21592 15-1131 151131 Computer, Math
## 21593 15-1133 151133 Computer, Math
## 21594 13-2041 132041 Business, Finance
## 21595 15-1132 151132 Computer, Math
## 21596 15-1132 151132 Computer, Math
## 21597 15-1132 151132 Computer, Math
## 21598 15-1132 151132 Computer, Math
## 21599 15-1132 151132 Computer, Math
## 21600 15-1134 151134 Computer, Math
## 21601 15-1132 151132 Computer, Math
## 21602 15-1132 151132 Computer, Math
## 21603 25-1021 251021 Education, Training
## 21604 15-1132 151132 Computer, Math
## 21605 15-1133 151133 Computer, Math
## 21606 15-1131 151131 Computer, Math
## 21607 17-2141 172141 Architecture, Engineer
## 21608 15-1132 151132 Computer, Math
## 21609 13-1111 131111 Business, Finance
## 21610 15-2031 152031 Computer, Math
## 21611 11-9199 119199 Management
## 21612 15-1132 151132 Computer, Math
## 21613 15-1121 151121 Computer, Math
## 21614 15-1199 151199 Computer, Math
## 21615 29-1128 291128 Healthcare Practitioner
## 21616 15-1132 151132 Computer, Math
## 21617 15-1121 151121 Computer, Math
## 21618 15-1142 151142 Computer, Math
## 21619 15-1131 151131 Computer, Math
## 21620 13-2011 132011 Business, Finance
## 21621 15-1131 151131 Computer, Math
## 21622 15-1132 151132 Computer, Math
## 21623 15-1133 151133 Computer, Math
## 21624 15-1132 151132 Computer, Math
## 21625 19-2031 192031 Life, Physcial, Social Science
## 21626 19-1029 191029 Life, Physcial, Social Science
## 21627 15-1132 151132 Computer, Math
## 21628 15-1132 151132 Computer, Math
## 21629 15-1132 151132 Computer, Math
## 21630 19-1042 191042 Life, Physcial, Social Science
## 21631 15-1131 151131 Computer, Math
## 21632 15-1132 151132 Computer, Math
## 21633 17-2131 172131 Architecture, Engineer
## 21634 15-1132 151132 Computer, Math
## 21635 15-1133 151133 Computer, Math
## 21636 13-1081 131081 Business, Finance
## 21637 15-1121 151121 Computer, Math
## 21638 15-1122 151122 Computer, Math
## 21639 15-2031 152031 Computer, Math
## 21640 15-1199 151199 Computer, Math
## 21641 15-1132 151132 Computer, Math
## 21642 15-1133 151133 Computer, Math
## 21643 25-1021 251021 Education, Training
## 21644 15-1132 151132 Computer, Math
## 21645 15-1131 151131 Computer, Math
## 21646 13-1111 131111 Business, Finance
## 21647 17-2072 172072 Architecture, Engineer
## 21648 29-1041 291041 Healthcare Practitioner
## 21649 15-1132 151132 Computer, Math
## 21650 15-1132 151132 Computer, Math
## 21651 15-1141 151141 Computer, Math
## 21652 15-1132 151132 Computer, Math
## 21653 15-1132 151132 Computer, Math
## 21654 15-1134 151134 Computer, Math
## 21655 15-1199 151199 Computer, Math
## 21656 15-1199 151199 Computer, Math
## 21657 15-1132 151132 Computer, Math
## 21658 15-2031 152031 Computer, Math
## 21659 15-1133 151133 Computer, Math
## 21660 15-1132 151132 Computer, Math
## 21661 15-1132 151132 Computer, Math
## 21662 15-1132 151132 Computer, Math
## 21663 13-2051 132051 Business, Finance
## 21664 15-1132 151132 Computer, Math
## 21665 15-1132 151132 Computer, Math
## 21666 15-1132 151132 Computer, Math
## 21667 15-1121 151121 Computer, Math
## 21668 15-1199 151199 Computer, Math
## 21669 15-1132 151132 Computer, Math
## 21670 15-1121 151121 Computer, Math
## 21671 15-1131 151131 Computer, Math
## 21672 13-2099 132099 Business, Finance
## 21673 17-2071 172071 Architecture, Engineer
## 21674 15-1131 151131 Computer, Math
## 21675 15-1142 151142 Computer, Math
## 21676 15-1199 151199 Computer, Math
## 21677 15-1134 151134 Computer, Math
## 21678 15-2031 152031 Computer, Math
## 21679 29-1131 291131 Healthcare Practitioner
## 21680 15-1132 151132 Computer, Math
## 21681 15-1132 151132 Computer, Math
## 21682 11-9199 119199 Management
## 21683 15-1121 151121 Computer, Math
## 21684 17-2141 172141 Architecture, Engineer
## 21685 15-1132 151132 Computer, Math
## 21686 13-2011 132011 Business, Finance
## 21687 15-1199 151199 Computer, Math
## 21688 15-1132 151132 Computer, Math
## 21689 15-1132 151132 Computer, Math
## 21690 13-2011 132011 Business, Finance
## 21691 15-2031 152031 Computer, Math
## 21692 15-1132 151132 Computer, Math
## 21693 15-1142 151142 Computer, Math
## 21694 11-3071 113071 Management
## 21695 13-1111 131111 Business, Finance
## 21696 15-2031 152031 Computer, Math
## 21697 19-1029 191029 Life, Physcial, Social Science
## 21698 15-1132 151132 Computer, Math
## 21699 15-1121 151121 Computer, Math
## 21700 19-2012 192012 Life, Physcial, Social Science
## 21701 15-1199 151199 Computer, Math
## 21702 11-2021 112021 Management
## 21703 15-1199 151199 Computer, Math
## 21704 15-1133 151133 Computer, Math
## 21705 15-1133 151133 Computer, Math
## 21706 15-1132 151132 Computer, Math
## 21707 15-1133 151133 Computer, Math
## 21708 17-2072 172072 Architecture, Engineer
## 21709 19-1029 191029 Life, Physcial, Social Science
## 21710 15-1199 151199 Computer, Math
## 21711 15-1141 151141 Computer, Math
## 21712 15-1199 151199 Computer, Math
## 21713 15-1132 151132 Computer, Math
## 21714 15-1121 151121 Computer, Math
## 21715 15-2031 152031 Computer, Math
## 21716 15-1199 151199 Computer, Math
## 21717 15-1132 151132 Computer, Math
## 21718 15-1121 151121 Computer, Math
## 21719 17-2071 172071 Architecture, Engineer
## 21720 19-1042 191042 Life, Physcial, Social Science
## 21721 15-1121 151121 Computer, Math
## 21722 13-1111 131111 Business, Finance
## 21723 11-3021 113021 Management
## 21724 15-1132 151132 Computer, Math
## 21725 15-1121 151121 Computer, Math
## 21726 15-1132 151132 Computer, Math
## 21727 15-1132 151132 Computer, Math
## 21728 15-1132 151132 Computer, Math
## 21729 15-1131 151131 Computer, Math
## 21730 41-9031 419031 Sales
## 21731 15-1132 151132 Computer, Math
## 21732 13-2011 132011 Business, Finance
## 21733 15-1132 151132 Computer, Math
## 21734 15-1199 151199 Computer, Math
## 21735 15-1199 151199 Computer, Math
## 21736 13-1041 131041 Business, Finance
## 21737 13-2011 132011 Business, Finance
## 21738 15-1199 151199 Computer, Math
## 21739 29-1069 291069 Healthcare Practitioner
## 21740 13-1161 131161 Business, Finance
## 21741 15-1121 151121 Computer, Math
## 21742 15-1132 151132 Computer, Math
## 21743 29-1069 291069 Healthcare Practitioner
## 21744 15-1132 151132 Computer, Math
## 21745 29-2091 292091 Healthcare Practitioner
## 21746 15-1132 151132 Computer, Math
## 21747 15-1199 151199 Computer, Math
## 21748 15-1132 151132 Computer, Math
## 21749 15-1131 151131 Computer, Math
## 21750 29-1021 291021 Healthcare Practitioner
## 21751 15-2031 152031 Computer, Math
## 21752 15-1132 151132 Computer, Math
## 21753 17-2141 172141 Architecture, Engineer
## 21754 15-1121 151121 Computer, Math
## 21755 15-1141 151141 Computer, Math
## 21756 15-1132 151132 Computer, Math
## 21757 15-1121 151121 Computer, Math
## 21758 15-1132 151132 Computer, Math
## 21759 17-2071 172071 Architecture, Engineer
## 21760 19-1029 191029 Life, Physcial, Social Science
## 21761 11-9041 119041 Management
## 21762 41-9031 419031 Sales
## 21763 15-2031 152031 Computer, Math
## 21764 15-1111 151111 Computer, Math
## 21765 15-1132 151132 Computer, Math
## 21766 15-1132 151132 Computer, Math
## 21767 15-1132 151132 Computer, Math
## 21768 15-1121 151121 Computer, Math
## 21769 25-2031 252031 Education, Training
## 21770 15-1132 151132 Computer, Math
## 21771 11-3021 113021 Management
## 21772 25-1011 251011 Education, Training
## 21773 15-1132 151132 Computer, Math
## 21774 15-1132 151132 Computer, Math
## 21775 15-1199 151199 Computer, Math
## 21776 15-1141 151141 Computer, Math
## 21777 15-1132 151132 Computer, Math
## 21778 15-1132 151132 Computer, Math
## 21779 15-1121 151121 Computer, Math
## 21780 15-2031 152031 Computer, Math
## 21781 15-1199 151199 Computer, Math
## 21782 17-2131 172131 Architecture, Engineer
## 21783 15-1122 151122 Computer, Math
## 21784 41-9031 419031 Sales
## 21785 13-1111 131111 Business, Finance
## 21786 15-1132 151132 Computer, Math
## 21787 13-2051 132051 Business, Finance
## 21788 15-1199 151199 Computer, Math
## 21789 15-1132 151132 Computer, Math
## 21790 13-1111 131111 Business, Finance
## 21791 15-1121 151121 Computer, Math
## 21792 15-1132 151132 Computer, Math
## 21793 15-1199 151199 Computer, Math
## 21794 15-1199 151199 Computer, Math
## 21795 15-1132 151132 Computer, Math
## 21796 15-1132 151132 Computer, Math
## 21797 15-1134 151134 Computer, Math
## 21798 15-1132 151132 Computer, Math
## 21799 15-1121 151121 Computer, Math
## 21800 15-1199 151199 Computer, Math
## 21801 15-1122 151122 Computer, Math
## 21802 15-1132 151132 Computer, Math
## 21803 15-2041 152041 Computer, Math
## 21804 15-1142 151142 Computer, Math
## 21805 15-1132 151132 Computer, Math
## 21806 15-1199 151199 Computer, Math
## 21807 15-1199 151199 Computer, Math
## 21808 15-2011 152011 Computer, Math
## 21809 15-1142 151142 Computer, Math
## 21810 15-1199 151199 Computer, Math
## 21811 13-1111 131111 Business, Finance
## 21812 19-1029 191029 Life, Physcial, Social Science
## 21813 13-1161 131161 Business, Finance
## 21814 15-1199 151199 Computer, Math
## 21815 15-1132 151132 Computer, Math
## 21816 15-1132 151132 Computer, Math
## 21817 15-1132 151132 Computer, Math
## 21818 15-2031 152031 Computer, Math
## 21819 25-1124 251124 Education, Training
## 21820 11-3021 113021 Management
## 21821 11-9111 119111 Management
## 21822 15-1199 151199 Computer, Math
## 21823 13-1161 131161 Business, Finance
## 21824 15-1111 151111 Computer, Math
## 21825 17-2141 172141 Architecture, Engineer
## 21826 15-1131 151131 Computer, Math
## 21827 13-1161 131161 Business, Finance
## 21828 13-2051 132051 Business, Finance
## 21829 15-1132 151132 Computer, Math
## 21830 13-1081 131081 Business, Finance
## 21831 15-1132 151132 Computer, Math
## 21832 17-2072 172072 Architecture, Engineer
## 21833 13-2011 132011 Business, Finance
## 21834 15-1132 151132 Computer, Math
## 21835 15-1132 151132 Computer, Math
## 21836 15-1131 151131 Computer, Math
## 21837 19-3011 193011 Life, Physcial, Social Science
## 21838 15-1131 151131 Computer, Math
## 21839 15-1132 151132 Computer, Math
## 21840 17-2072 172072 Architecture, Engineer
## 21841 15-1132 151132 Computer, Math
## 21842 15-1132 151132 Computer, Math
## 21843 15-1199 151199 Computer, Math
## 21844 15-1132 151132 Computer, Math
## 21845 15-1132 151132 Computer, Math
## 21846 15-1142 151142 Computer, Math
## 21847 15-1132 151132 Computer, Math
## 21848 15-1199 151199 Computer, Math
## 21849 15-1132 151132 Computer, Math
## 21850 15-1199 151199 Computer, Math
## 21851 29-1199 291199 Healthcare Practitioner
## 21852 15-1121 151121 Computer, Math
## 21853 15-1199 151199 Computer, Math
## 21854 15-1121 151121 Computer, Math
## 21855 13-2051 132051 Business, Finance
## 21856 15-1132 151132 Computer, Math
## 21857 15-1121 151121 Computer, Math
## 21858 15-1132 151132 Computer, Math
## 21859 15-1132 151132 Computer, Math
## 21860 29-1069 291069 Healthcare Practitioner
## 21861 15-1131 151131 Computer, Math
## 21862 15-1132 151132 Computer, Math
## 21863 15-2041 152041 Computer, Math
## 21864 15-1132 151132 Computer, Math
## 21865 15-1131 151131 Computer, Math
## 21866 25-1021 251021 Education, Training
## 21867 25-1021 251021 Education, Training
## 21868 15-1121 151121 Computer, Math
## 21869 15-1121 151121 Computer, Math
## 21870 15-1132 151132 Computer, Math
## 21871 11-3021 113021 Management
## 21872 11-1021 111021 Management
## 21873 15-1132 151132 Computer, Math
## 21874 11-3021 113021 Management
## 21875 15-1121 151121 Computer, Math
## 21876 15-1121 151121 Computer, Math
## 21877 15-1132 151132 Computer, Math
## 21878 15-1132 151132 Computer, Math
## 21879 13-1111 131111 Business, Finance
## 21880 15-1133 151133 Computer, Math
## 21881 15-1131 151131 Computer, Math
## 21882 15-1132 151132 Computer, Math
## 21883 13-2051 132051 Business, Finance
## 21884 15-1132 151132 Computer, Math
## 21885 13-2051 132051 Business, Finance
## 21886 15-1122 151122 Computer, Math
## 21887 15-1132 151132 Computer, Math
## 21888 15-1132 151132 Computer, Math
## 21889 11-9121 119121 Management
## 21890 15-1132 151132 Computer, Math
## 21891 15-1133 151133 Computer, Math
## 21892 15-1132 151132 Computer, Math
## 21893 15-1132 151132 Computer, Math
## 21894 15-1131 151131 Computer, Math
## 21895 15-1199 151199 Computer, Math
## 21896 15-1121 151121 Computer, Math
## 21897 15-1132 151132 Computer, Math
## 21898 15-1132 151132 Computer, Math
## 21899 15-1132 151132 Computer, Math
## 21900 15-1132 151132 Computer, Math
## 21901 15-1121 151121 Computer, Math
## 21902 15-1199 151199 Computer, Math
## 21903 11-3061 113061 Management
## 21904 15-1121 151121 Computer, Math
## 21905 17-2051 172051 Architecture, Engineer
## 21906 15-1133 151133 Computer, Math
## 21907 15-1199 151199 Computer, Math
## 21908 15-1132 151132 Computer, Math
## 21909 15-1132 151132 Computer, Math
## 21910 15-1121 151121 Computer, Math
## 21911 15-1142 151142 Computer, Math
## 21912 15-1132 151132 Computer, Math
## 21913 15-1132 151132 Computer, Math
## 21914 19-2031 192031 Life, Physcial, Social Science
## 21915 15-2031 152031 Computer, Math
## 21916 19-1042 191042 Life, Physcial, Social Science
## 21917 15-1131 151131 Computer, Math
## 21918 15-1132 151132 Computer, Math
## 21919 15-1132 151132 Computer, Math
## 21920 13-2051 132051 Business, Finance
## 21921 13-2099 132099 Business, Finance
## 21922 13-1199 131199 Business, Finance
## 21923 15-1199 151199 Computer, Math
## 21924 15-1121 151121 Computer, Math
## 21925 15-1034 151034 Computer, Math
## 21926 19-1013 191013 Life, Physcial, Social Science
## 21927 15-1121 151121 Computer, Math
## 21928 15-2031 152031 Computer, Math
## 21929 15-1199 151199 Computer, Math
## 21930 15-1121 151121 Computer, Math
## 21931 13-1111 131111 Business, Finance
## 21932 19-1029 191029 Life, Physcial, Social Science
## 21933 29-1063 291063 Healthcare Practitioner
## 21934 15-1131 151131 Computer, Math
## 21935 15-2021 152021 Computer, Math
## 21936 19-2012 192012 Life, Physcial, Social Science
## 21937 15-1121 151121 Computer, Math
## 21938 17-2141 172141 Architecture, Engineer
## 21939 15-1121 151121 Computer, Math
## 21940 15-1132 151132 Computer, Math
## 21941 29-9099 299099 Healthcare Practitioner
## 21942 15-1131 151131 Computer, Math
## 21943 15-1131 151131 Computer, Math
## 21944 15-1199 151199 Computer, Math
## 21945 17-2141 172141 Architecture, Engineer
## 21946 15-1132 151132 Computer, Math
## 21947 15-1121 151121 Computer, Math
## 21948 15-1121 151121 Computer, Math
## 21949 15-1141 151141 Computer, Math
## 21950 15-1132 151132 Computer, Math
## 21951 15-1132 151132 Computer, Math
## 21952 15-1121 151121 Computer, Math
## 21953 15-1133 151133 Computer, Math
## 21954 15-1134 151134 Computer, Math
## 21955 17-2141 172141 Architecture, Engineer
## 21956 15-1132 151132 Computer, Math
## 21957 15-1132 151132 Computer, Math
## 21958 11-3021 113021 Management
## 21959 15-1132 151132 Computer, Math
## 21960 15-1132 151132 Computer, Math
## 21961 15-1121 151121 Computer, Math
## 21962 15-1142 151142 Computer, Math
## 21963 15-1131 151131 Computer, Math
## 21964 15-1132 151132 Computer, Math
## 21965 15-1132 151132 Computer, Math
## 21966 11-3021 113021 Management
## 21967 29-1123 291123 Healthcare Practitioner
## 21968 15-1133 151133 Computer, Math
## 21969 15-1132 151132 Computer, Math
## 21970 15-1132 151132 Computer, Math
## 21971 15-1132 151132 Computer, Math
## 21972 15-1132 151132 Computer, Math
## 21973 17-2199 172199 Architecture, Engineer
## 21974 15-1132 151132 Computer, Math
## 21975 15-1132 151132 Computer, Math
## 21976 15-2031 152031 Computer, Math
## 21977 15-1132 151132 Computer, Math
## 21978 15-1121 151121 Computer, Math
## 21979 15-1132 151132 Computer, Math
## 21980 15-1132 151132 Computer, Math
## 21981 29-1065 291065 Healthcare Practitioner
## 21982 15-1132 151132 Computer, Math
## 21983 15-2031 152031 Computer, Math
## 21984 15-1132 151132 Computer, Math
## 21985 15-2031 152031 Computer, Math
## 21986 15-1199 151199 Computer, Math
## 21987 15-1131 151131 Computer, Math
## 21988 15-1131 151131 Computer, Math
## 21989 11-3021 113021 Management
## 21990 19-2031 192031 Life, Physcial, Social Science
## 21991 13-1151 131151 Business, Finance
## 21992 15-1132 151132 Computer, Math
## 21993 15-1132 151132 Computer, Math
## 21994 15-1132 151132 Computer, Math
## 21995 15-1132 151132 Computer, Math
## 21996 17-2061 172061 Architecture, Engineer
## 21997 15-1121 151121 Computer, Math
## 21998 15-1132 151132 Computer, Math
## 21999 15-1132 151132 Computer, Math
## 22000 17-2072 172072 Architecture, Engineer
## 22001 15-1132 151132 Computer, Math
## 22002 15-1132 151132 Computer, Math
## 22003 15-1132 151132 Computer, Math
## 22004 15-1199 151199 Computer, Math
## 22005 15-1132 151132 Computer, Math
## 22006 15-1132 151132 Computer, Math
## 22007 15-1199 151199 Computer, Math
## 22008 15-1132 151132 Computer, Math
## 22009 15-1141 151141 Computer, Math
## 22010 15-1132 151132 Computer, Math
## 22011 17-2141 172141 Architecture, Engineer
## 22012 15-1132 151132 Computer, Math
## 22013 15-1132 151132 Computer, Math
## 22014 15-1132 151132 Computer, Math
## 22015 15-1132 151132 Computer, Math
## 22016 15-1132 151132 Computer, Math
## 22017 15-1199 151199 Computer, Math
## 22018 19-1021 191021 Life, Physcial, Social Science
## 22019 13-1081 131081 Business, Finance
## 22020 15-1121 151121 Computer, Math
## 22021 15-1151 151151 Computer, Math
## 22022 15-1132 151132 Computer, Math
## 22023 17-2161 172161 Architecture, Engineer
## 22024 13-1161 131161 Business, Finance
## 22025 15-1131 151131 Computer, Math
## 22026 15-1199 151199 Computer, Math
## 22027 17-2141 172141 Architecture, Engineer
## 22028 15-1121 151121 Computer, Math
## 22029 15-1199 151199 Computer, Math
## 22030 27-1021 271021 Media, Design
## 22031 15-1131 151131 Computer, Math
## 22032 15-1199 151199 Computer, Math
## 22033 15-1121 151121 Computer, Math
## 22034 15-1121 151121 Computer, Math
## 22035 15-1121 151121 Computer, Math
## 22036 15-1143 151143 Computer, Math
## 22037 15-1121 151121 Computer, Math
## 22038 15-1199 151199 Computer, Math
## 22039 17-2051 172051 Architecture, Engineer
## 22040 15-1132 151132 Computer, Math
## 22041 13-1081 131081 Business, Finance
## 22042 13-2011 132011 Business, Finance
## 22043 13-2011 132011 Business, Finance
## 22044 17-2071 172071 Architecture, Engineer
## 22045 17-2141 172141 Architecture, Engineer
## 22046 25-1071 251071 Education, Training
## 22047 15-1199 151199 Computer, Math
## 22048 15-1132 151132 Computer, Math
## 22049 13-2051 132051 Business, Finance
## 22050 17-2071 172071 Architecture, Engineer
## 22051 25-1022 251022 Education, Training
## 22052 17-2112 172112 Architecture, Engineer
## 22053 15-1121 151121 Computer, Math
## 22054 15-1132 151132 Computer, Math
## 22055 15-1121 151121 Computer, Math
## 22056 17-2071 172071 Architecture, Engineer
## 22057 15-1132 151132 Computer, Math
## 22058 15-1111 151111 Computer, Math
## 22059 15-1132 151132 Computer, Math
## 22060 17-2071 172071 Architecture, Engineer
## 22061 15-1121 151121 Computer, Math
## 22062 15-1132 151132 Computer, Math
## 22063 15-1121 151121 Computer, Math
## 22064 15-1133 151133 Computer, Math
## 22065 15-1132 151132 Computer, Math
## 22066 15-1141 151141 Computer, Math
## 22067 15-1132 151132 Computer, Math
## 22068 15-1121 151121 Computer, Math
## 22069 15-1132 151132 Computer, Math
## 22070 15-1142 151142 Computer, Math
## 22071 15-1132 151132 Computer, Math
## 22072 15-1131 151131 Computer, Math
## 22073 15-1121 151121 Computer, Math
## 22074 13-2011 132011 Business, Finance
## 22075 17-2141 172141 Architecture, Engineer
## 22076 15-1199 151199 Computer, Math
## 22077 15-1199 151199 Computer, Math
## 22078 15-1132 151132 Computer, Math
## 22079 15-1131 151131 Computer, Math
## 22080 15-1199 151199 Computer, Math
## 22081 15-1121 151121 Computer, Math
## 22082 15-1133 151133 Computer, Math
## 22083 15-1199 151199 Computer, Math
## 22084 11-9121 119121 Management
## 22085 15-1132 151132 Computer, Math
## 22086 15-1121 151121 Computer, Math
## 22087 13-2099 132099 Business, Finance
## 22088 15-1133 151133 Computer, Math
## 22089 15-1132 151132 Computer, Math
## 22090 15-1132 151132 Computer, Math
## 22091 15-1199 151199 Computer, Math
## 22092 15-1132 151132 Computer, Math
## 22093 15-1199 151199 Computer, Math
## 22094 15-1131 151131 Computer, Math
## 22095 17-2072 172072 Architecture, Engineer
## 22096 15-1133 151133 Computer, Math
## 22097 15-2031 152031 Computer, Math
## 22098 15-1121 151121 Computer, Math
## 22099 15-2041 152041 Computer, Math
## 22100 17-2112 172112 Architecture, Engineer
## 22101 15-1199 151199 Computer, Math
## 22102 13-1111 131111 Business, Finance
## 22103 13-1111 131111 Business, Finance
## 22104 15-1132 151132 Computer, Math
## 22105 17-2141 172141 Architecture, Engineer
## 22106 15-1132 151132 Computer, Math
## 22107 13-1041 131041 Business, Finance
## 22108 15-1132 151132 Computer, Math
## 22109 15-1133 151133 Computer, Math
## 22110 15-1133 151133 Computer, Math
## 22111 11-9021 119021 Management
## 22112 15-1132 151132 Computer, Math
## 22113 15-1141 151141 Computer, Math
## 22114 15-1132 151132 Computer, Math
## 22115 19-4021 194021 Life, Physcial, Social Science
## 22116 17-2072 172072 Architecture, Engineer
## 22117 15-2031 152031 Computer, Math
## 22118 15-1121 151121 Computer, Math
## 22119 15-1132 151132 Computer, Math
## 22120 29-1123 291123 Healthcare Practitioner
## 22121 15-1132 151132 Computer, Math
## 22122 15-1132 151132 Computer, Math
## 22123 17-2112 172112 Architecture, Engineer
## 22124 15-1121 151121 Computer, Math
## 22125 15-1133 151133 Computer, Math
## 22126 15-1121 151121 Computer, Math
## 22127 15-1132 151132 Computer, Math
## 22128 15-2031 152031 Computer, Math
## 22129 15-1132 151132 Computer, Math
## 22130 15-2041 152041 Computer, Math
## 22131 29-1021 291021 Healthcare Practitioner
## 22132 23-2011 232011 Legal
## 22133 27-2022 272022 Media, Design
## 22134 15-1131 151131 Computer, Math
## 22135 15-1132 151132 Computer, Math
## 22136 15-1133 151133 Computer, Math
## 22137 15-1132 151132 Computer, Math
## 22138 15-1141 151141 Computer, Math
## 22139 15-1131 151131 Computer, Math
## 22140 15-1132 151132 Computer, Math
## 22141 17-2199 172199 Architecture, Engineer
## 22142 15-1199 151199 Computer, Math
## 22143 15-1132 151132 Computer, Math
## 22144 15-1132 151132 Computer, Math
## 22145 17-3011 173011 Architecture, Engineer
## 22146 15-1121 151121 Computer, Math
## 22147 17-2141 172141 Architecture, Engineer
## 22148 11-9111 119111 Management
## 22149 15-1121 151121 Computer, Math
## 22150 15-1132 151132 Computer, Math
## 22151 15-1132 151132 Computer, Math
## 22152 15-1131 151131 Computer, Math
## 22153 15-1199 151199 Computer, Math
## 22154 15-1199 151199 Computer, Math
## 22155 15-1141 151141 Computer, Math
## 22156 15-1132 151132 Computer, Math
## 22157 15-1132 151132 Computer, Math
## 22158 15-1142 151142 Computer, Math
## 22159 15-1121 151121 Computer, Math
## 22160 15-1133 151133 Computer, Math
## 22161 15-1132 151132 Computer, Math
## 22162 25-2031 252031 Education, Training
## 22163 15-1132 151132 Computer, Math
## 22164 15-1131 151131 Computer, Math
## 22165 15-2031 152031 Computer, Math
## 22166 15-1121 151121 Computer, Math
## 22167 15-1121 151121 Computer, Math
## 22168 15-1132 151132 Computer, Math
## 22169 15-1132 151132 Computer, Math
## 22170 15-1111 151111 Computer, Math
## 22171 15-2031 152031 Computer, Math
## 22172 13-1161 131161 Business, Finance
## 22173 15-1132 151132 Computer, Math
## 22174 15-1132 151132 Computer, Math
## 22175 15-1132 151132 Computer, Math
## 22176 19-1042 191042 Life, Physcial, Social Science
## 22177 25-1022 251022 Education, Training
## 22178 15-1199 151199 Computer, Math
## 22179 17-2031 172031 Architecture, Engineer
## 22180 15-1152 151152 Computer, Math
## 22181 15-1121 151121 Computer, Math
## 22182 15-1132 151132 Computer, Math
## 22183 13-2051 132051 Business, Finance
## 22184 15-1132 151132 Computer, Math
## 22185 15-1132 151132 Computer, Math
## 22186 15-1121 151121 Computer, Math
## 22187 41-9031 419031 Sales
## 22188 15-1131 151131 Computer, Math
## 22189 27-3022 273022 Media, Design
## 22190 19-4041 194041 Life, Physcial, Social Science
## 22191 17-2141 172141 Architecture, Engineer
## 22192 15-1141 151141 Computer, Math
## 22193 15-1199 151199 Computer, Math
## 22194 15-1132 151132 Computer, Math
## 22195 15-1199 151199 Computer, Math
## 22196 15-1132 151132 Computer, Math
## 22197 15-1199 151199 Computer, Math
## 22198 15-2031 152031 Computer, Math
## 22199 15-1132 151132 Computer, Math
## 22200 15-1121 151121 Computer, Math
## 22201 11-3071 113071 Management
## 22202 15-1199 151199 Computer, Math
## 22203 15-1133 151133 Computer, Math
## 22204 15-1121 151121 Computer, Math
## 22205 11-9041 119041 Management
## 22206 15-1121 151121 Computer, Math
## 22207 15-1132 151132 Computer, Math
## 22208 15-1132 151132 Computer, Math
## 22209 15-2031 152031 Computer, Math
## 22210 17-2141 172141 Architecture, Engineer
## 22211 15-1132 151132 Computer, Math
## 22212 29-2011 292011 Healthcare Practitioner
## 22213 15-1132 151132 Computer, Math
## 22214 13-1071 131071 Business, Finance
## 22215 15-1133 151133 Computer, Math
## 22216 15-1132 151132 Computer, Math
## 22217 29-1069 291069 Healthcare Practitioner
## 22218 15-1132 151132 Computer, Math
## 22219 15-1132 151132 Computer, Math
## 22220 15-1121 151121 Computer, Math
## 22221 15-1132 151132 Computer, Math
## 22222 15-1131 151131 Computer, Math
## 22223 25-1022 251022 Education, Training
## 22224 15-1131 151131 Computer, Math
## 22225 15-1121 151121 Computer, Math
## 22226 29-2011 292011 Healthcare Practitioner
## 22227 13-2011 132011 Business, Finance
## 22228 17-2112 172112 Architecture, Engineer
## 22229 15-1121 151121 Computer, Math
## 22230 15-1132 151132 Computer, Math
## 22231 17-1011 171011 Architecture, Engineer
## 22232 15-1132 151132 Computer, Math
## 22233 15-1121 151121 Computer, Math
## 22234 15-1132 151132 Computer, Math
## 22235 29-1131 291131 Healthcare Practitioner
## 22236 13-1111 131111 Business, Finance
## 22237 17-2141 172141 Architecture, Engineer
## 22238 41-9031 419031 Sales
## 22239 15-1132 151132 Computer, Math
## 22240 17-2071 172071 Architecture, Engineer
## 22241 11-3021 113021 Management
## 22242 15-1132 151132 Computer, Math
## 22243 17-2141 172141 Architecture, Engineer
## 22244 15-1121 151121 Computer, Math
## 22245 15-1121 151121 Computer, Math
## 22246 21-1012 211012 Social Service
## 22247 15-1132 151132 Computer, Math
## 22248 17-2072 172072 Architecture, Engineer
## 22249 13-1111 131111 Business, Finance
## 22250 11-9081 119081 Management
## 22251 15-1132 151132 Computer, Math
## 22252 15-1121 151121 Computer, Math
## 22253 15-1132 151132 Computer, Math
## 22254 15-1121 151121 Computer, Math
## 22255 15-1121 151121 Computer, Math
## 22256 15-1121 151121 Computer, Math
## 22257 27-3031 273031 Media, Design
## 22258 15-1132 151132 Computer, Math
## 22259 15-1142 151142 Computer, Math
## 22260 19-1042 191042 Life, Physcial, Social Science
## 22261 15-1121 151121 Computer, Math
## 22262 15-1133 151133 Computer, Math
## 22263 25-1122 251122 Education, Training
## 22264 15-1132 151132 Computer, Math
## 22265 15-1132 151132 Computer, Math
## 22266 15-1121 151121 Computer, Math
## 22267 15-1132 151132 Computer, Math
## 22268 15-1132 151132 Computer, Math
## 22269 15-1199 151199 Computer, Math
## 22270 15-1121 151121 Computer, Math
## 22271 15-1199 151199 Computer, Math
## 22272 19-2031 192031 Life, Physcial, Social Science
## 22273 13-1111 131111 Business, Finance
## 22274 15-1199 151199 Computer, Math
## 22275 15-1121 151121 Computer, Math
## 22276 15-1132 151132 Computer, Math
## 22277 15-1132 151132 Computer, Math
## 22278 13-2051 132051 Business, Finance
## 22279 15-2031 152031 Computer, Math
## 22280 17-2072 172072 Architecture, Engineer
## 22281 15-1121 151121 Computer, Math
## 22282 15-1199 151199 Computer, Math
## 22283 15-1199 151199 Computer, Math
## 22284 13-1111 131111 Business, Finance
## 22285 15-1132 151132 Computer, Math
## 22286 17-2141 172141 Architecture, Engineer
## 22287 15-1141 151141 Computer, Math
## 22288 13-2011 132011 Business, Finance
## 22289 15-1199 151199 Computer, Math
## 22290 15-1132 151132 Computer, Math
## 22291 15-1132 151132 Computer, Math
## 22292 15-1132 151132 Computer, Math
## 22293 15-1131 151131 Computer, Math
## 22294 15-1132 151132 Computer, Math
## 22295 13-1111 131111 Business, Finance
## 22296 15-1132 151132 Computer, Math
## 22297 15-1132 151132 Computer, Math
## 22298 15-1134 151134 Computer, Math
## 22299 15-1131 151131 Computer, Math
## 22300 15-2041 152041 Computer, Math
## 22301 13-1161 131161 Business, Finance
## 22302 15-1121 151121 Computer, Math
## 22303 15-1199 151199 Computer, Math
## 22304 15-1121 151121 Computer, Math
## 22305 15-1131 151131 Computer, Math
## 22306 17-2071 172071 Architecture, Engineer
## 22307 15-1132 151132 Computer, Math
## 22308 15-1199 151199 Computer, Math
## 22309 15-1131 151131 Computer, Math
## 22310 25-1032 251032 Education, Training
## 22311 15-1132 151132 Computer, Math
## 22312 13-1161 131161 Business, Finance
## 22313 15-1132 151132 Computer, Math
## 22314 15-1121 151121 Computer, Math
## 22315 15-1122 151122 Computer, Math
## 22316 19-2041 192041 Life, Physcial, Social Science
## 22317 15-1132 151132 Computer, Math
## 22318 15-1132 151132 Computer, Math
## 22319 17-2111 172111 Architecture, Engineer
## 22320 15-1199 151199 Computer, Math
## 22321 15-2031 152031 Computer, Math
## 22322 15-1132 151132 Computer, Math
## 22323 15-1199 151199 Computer, Math
## 22324 15-1121 151121 Computer, Math
## 22325 29-9099 299099 Healthcare Practitioner
## 22326 13-1111 131111 Business, Finance
## 22327 13-2051 132051 Business, Finance
## 22328 15-1132 151132 Computer, Math
## 22329 15-1132 151132 Computer, Math
## 22330 15-1132 151132 Computer, Math
## 22331 15-1134 151134 Computer, Math
## 22332 19-2031 192031 Life, Physcial, Social Science
## 22333 15-1199 151199 Computer, Math
## 22334 17-2081 172081 Architecture, Engineer
## 22335 15-1133 151133 Computer, Math
## 22336 11-3031 113031 Management
## 22337 17-2072 172072 Architecture, Engineer
## 22338 15-1199 151199 Computer, Math
## 22339 15-1199 151199 Computer, Math
## 22340 15-1132 151132 Computer, Math
## 22341 15-1132 151132 Computer, Math
## 22342 19-2031 192031 Life, Physcial, Social Science
## 22343 13-2099 132099 Business, Finance
## 22344 15-1121 151121 Computer, Math
## 22345 25-1124 251124 Education, Training
## 22346 15-1132 151132 Computer, Math
## 22347 15-1132 151132 Computer, Math
## 22348 15-1132 151132 Computer, Math
## 22349 15-1132 151132 Computer, Math
## 22350 15-1121 151121 Computer, Math
## 22351 15-1133 151133 Computer, Math
## 22352 15-1132 151132 Computer, Math
## 22353 15-1132 151132 Computer, Math
## 22354 15-1121 151121 Computer, Math
## 22355 15-1199 151199 Computer, Math
## 22356 13-1161 131161 Business, Finance
## 22357 15-1121 151121 Computer, Math
## 22358 17-2061 172061 Architecture, Engineer
## 22359 15-1121 151121 Computer, Math
## 22360 15-1132 151132 Computer, Math
## 22361 27-1025 271025 Media, Design
## 22362 25-1032 251032 Education, Training
## 22363 13-2031 132031 Business, Finance
## 22364 19-1042 191042 Life, Physcial, Social Science
## 22365 43-9111 439111 Others
## 22366 15-1121 151121 Computer, Math
## 22367 15-1199 151199 Computer, Math
## 22368 15-1199 151199 Computer, Math
## 22369 15-1199 151199 Computer, Math
## 22370 15-1132 151132 Computer, Math
## 22371 15-1121 151121 Computer, Math
## 22372 15-1199 151199 Computer, Math
## 22373 15-1132 151132 Computer, Math
## 22374 15-1121 151121 Computer, Math
## 22375 15-1132 151132 Computer, Math
## 22376 15-1131 151131 Computer, Math
## 22377 15-1121 151121 Computer, Math
## 22378 15-2041 152041 Computer, Math
## 22379 19-3091 193091 Life, Physcial, Social Science
## 22380 15-1121 151121 Computer, Math
## 22381 19-1029 191029 Life, Physcial, Social Science
## 22382 15-1132 151132 Computer, Math
## 22383 15-1121 151121 Computer, Math
## 22384 15-1131 151131 Computer, Math
## 22385 15-2041 152041 Computer, Math
## 22386 15-1121 151121 Computer, Math
## 22387 15-1142 151142 Computer, Math
## 22388 15-1132 151132 Computer, Math
## 22389 13-2099 132099 Business, Finance
## 22390 11-3071 113071 Management
## 22391 15-2031 152031 Computer, Math
## 22392 15-1141 151141 Computer, Math
## 22393 13-1071 131071 Business, Finance
## 22394 15-1121 151121 Computer, Math
## 22395 15-1121 151121 Computer, Math
## 22396 13-2051 132051 Business, Finance
## 22397 19-1042 191042 Life, Physcial, Social Science
## 22398 17-2071 172071 Architecture, Engineer
## 22399 17-2071 172071 Architecture, Engineer
## 22400 15-1121 151121 Computer, Math
## 22401 15-1199 151199 Computer, Math
## 22402 15-1142 151142 Computer, Math
## 22403 15-1132 151132 Computer, Math
## 22404 13-2011 132011 Business, Finance
## 22405 15-1121 151121 Computer, Math
## 22406 15-1132 151132 Computer, Math
## 22407 13-1111 131111 Business, Finance
## 22408 15-1121 151121 Computer, Math
## 22409 41-9031 419031 Sales
## 22410 11-9041 119041 Management
## 22411 15-1199 151199 Computer, Math
## 22412 15-1121 151121 Computer, Math
## 22413 15-1132 151132 Computer, Math
## 22414 15-1132 151132 Computer, Math
## 22415 15-1199 151199 Computer, Math
## 22416 15-1132 151132 Computer, Math
## 22417 15-1133 151133 Computer, Math
## 22418 15-1132 151132 Computer, Math
## 22419 15-1132 151132 Computer, Math
## 22420 15-1121 151121 Computer, Math
## 22421 19-1042 191042 Life, Physcial, Social Science
## 22422 15-1131 151131 Computer, Math
## 22423 15-1141 151141 Computer, Math
## 22424 15-1199 151199 Computer, Math
## 22425 15-1132 151132 Computer, Math
## 22426 15-1132 151132 Computer, Math
## 22427 15-2031 152031 Computer, Math
## 22428 15-1199 151199 Computer, Math
## 22429 15-1132 151132 Computer, Math
## 22430 15-1141 151141 Computer, Math
## 22431 15-1141 151141 Computer, Math
## 22432 15-1132 151132 Computer, Math
## 22433 15-1122 151122 Computer, Math
## 22434 15-1199 151199 Computer, Math
## 22435 15-1132 151132 Computer, Math
## 22436 15-1132 151132 Computer, Math
## 22437 15-1132 151132 Computer, Math
## 22438 13-1111 131111 Business, Finance
## 22439 15-1132 151132 Computer, Math
## 22440 15-1132 151132 Computer, Math
## 22441 15-1199 151199 Computer, Math
## 22442 15-1121 151121 Computer, Math
## 22443 19-1042 191042 Life, Physcial, Social Science
## 22444 15-1111 151111 Computer, Math
## 22445 15-1132 151132 Computer, Math
## 22446 19-1042 191042 Life, Physcial, Social Science
## 22447 19-1029 191029 Life, Physcial, Social Science
## 22448 15-1142 151142 Computer, Math
## 22449 15-1132 151132 Computer, Math
## 22450 25-1011 251011 Education, Training
## 22451 15-1132 151132 Computer, Math
## 22452 15-1132 151132 Computer, Math
## 22453 29-1021 291021 Healthcare Practitioner
## 22454 17-3011 173011 Architecture, Engineer
## 22455 15-1121 151121 Computer, Math
## 22456 15-1133 151133 Computer, Math
## 22457 15-1132 151132 Computer, Math
## 22458 15-1132 151132 Computer, Math
## 22459 15-1199 151199 Computer, Math
## 22460 11-9111 119111 Management
## 22461 15-1132 151132 Computer, Math
## 22462 15-1131 151131 Computer, Math
## 22463 15-1132 151132 Computer, Math
## 22464 15-1121 151121 Computer, Math
## 22465 17-2031 172031 Architecture, Engineer
## 22466 15-1121 151121 Computer, Math
## 22467 15-1121 151121 Computer, Math
## 22468 15-1121 151121 Computer, Math
## 22469 17-2141 172141 Architecture, Engineer
## 22470 17-2141 172141 Architecture, Engineer
## 22471 15-1133 151133 Computer, Math
## 22472 15-1142 151142 Computer, Math
## 22473 15-1121 151121 Computer, Math
## 22474 15-1121 151121 Computer, Math
## 22475 17-2112 172112 Architecture, Engineer
## 22476 15-1131 151131 Computer, Math
## 22477 15-1199 151199 Computer, Math
## 22478 15-1121 151121 Computer, Math
## 22479 15-1199 151199 Computer, Math
## 22480 15-1132 151132 Computer, Math
## 22481 15-2041 152041 Computer, Math
## 22482 15-1199 151199 Computer, Math
## 22483 15-1131 151131 Computer, Math
## 22484 15-1132 151132 Computer, Math
## 22485 15-1142 151142 Computer, Math
## 22486 15-1121 151121 Computer, Math
## 22487 41-9031 419031 Sales
## 22488 17-2072 172072 Architecture, Engineer
## 22489 19-1042 191042 Life, Physcial, Social Science
## 22490 15-1132 151132 Computer, Math
## 22491 15-1121 151121 Computer, Math
## 22492 25-2022 252022 Education, Training
## 22493 15-1199 151199 Computer, Math
## 22494 17-2141 172141 Architecture, Engineer
## 22495 15-1121 151121 Computer, Math
## 22496 15-1131 151131 Computer, Math
## 22497 15-1132 151132 Computer, Math
## 22498 17-2072 172072 Architecture, Engineer
## 22499 15-1132 151132 Computer, Math
## 22500 15-1132 151132 Computer, Math
## 22501 15-2041 152041 Computer, Math
## 22502 15-1132 151132 Computer, Math
## 22503 25-1032 251032 Education, Training
## 22504 15-1133 151133 Computer, Math
## 22505 29-1069 291069 Healthcare Practitioner
## 22506 15-1132 151132 Computer, Math
## 22507 13-2051 132051 Business, Finance
## 22508 15-1121 151121 Computer, Math
## 22509 15-1121 151121 Computer, Math
## 22510 15-1131 151131 Computer, Math
## 22511 15-1121 151121 Computer, Math
## 22512 15-2041 152041 Computer, Math
## 22513 15-1132 151132 Computer, Math
## 22514 15-1121 151121 Computer, Math
## 22515 15-1121 151121 Computer, Math
## 22516 15-1132 151132 Computer, Math
## 22517 15-2031 152031 Computer, Math
## 22518 15-1132 151132 Computer, Math
## 22519 15-1132 151132 Computer, Math
## 22520 15-1132 151132 Computer, Math
## 22521 29-1199 291199 Healthcare Practitioner
## 22522 15-1121 151121 Computer, Math
## 22523 17-2061 172061 Architecture, Engineer
## 22524 13-2099 132099 Business, Finance
## 22525 15-2031 152031 Computer, Math
## 22526 13-1161 131161 Business, Finance
## 22527 15-2031 152031 Computer, Math
## 22528 15-1132 151132 Computer, Math
## 22529 15-1199 151199 Computer, Math
## 22530 15-1121 151121 Computer, Math
## 22531 15-1121 151121 Computer, Math
## 22532 15-1132 151132 Computer, Math
## 22533 15-1132 151132 Computer, Math
## 22534 15-1132 151132 Computer, Math
## 22535 15-1132 151132 Computer, Math
## 22536 27-2012 272012 Media, Design
## 22537 15-1132 151132 Computer, Math
## 22538 15-1199 151199 Computer, Math
## 22539 11-9041 119041 Management
## 22540 15-1132 151132 Computer, Math
## 22541 15-1132 151132 Computer, Math
## 22542 29-1021 291021 Healthcare Practitioner
## 22543 15-1132 151132 Computer, Math
## 22544 15-1131 151131 Computer, Math
## 22545 15-1134 151134 Computer, Math
## 22546 15-1121 151121 Computer, Math
## 22547 15-1131 151131 Computer, Math
## 22548 15-1132 151132 Computer, Math
## 22549 29-1065 291065 Healthcare Practitioner
## 22550 17-2072 172072 Architecture, Engineer
## 22551 15-1121 151121 Computer, Math
## 22552 15-2041 152041 Computer, Math
## 22553 15-1121 151121 Computer, Math
## 22554 15-1132 151132 Computer, Math
## 22555 15-1142 151142 Computer, Math
## 22556 15-1122 151122 Computer, Math
## 22557 15-1141 151141 Computer, Math
## 22558 15-2041 152041 Computer, Math
## 22559 15-1132 151132 Computer, Math
## 22560 15-1199 151199 Computer, Math
## 22561 25-2021 252021 Education, Training
## 22562 15-1132 151132 Computer, Math
## 22563 19-1021 191021 Life, Physcial, Social Science
## 22564 15-1132 151132 Computer, Math
## 22565 15-1142 151142 Computer, Math
## 22566 15-1132 151132 Computer, Math
## 22567 15-1133 151133 Computer, Math
## 22568 15-1132 151132 Computer, Math
## 22569 15-1131 151131 Computer, Math
## 22570 15-1133 151133 Computer, Math
## 22571 15-1132 151132 Computer, Math
## 22572 15-1132 151132 Computer, Math
## 22573 15-1199 151199 Computer, Math
## 22574 15-1132 151132 Computer, Math
## 22575 15-1132 151132 Computer, Math
## 22576 17-2199 172199 Architecture, Engineer
## 22577 15-1121 151121 Computer, Math
## 22578 13-1111 131111 Business, Finance
## 22579 15-1132 151132 Computer, Math
## 22580 19-1029 191029 Life, Physcial, Social Science
## 22581 15-1132 151132 Computer, Math
## 22582 15-1199 151199 Computer, Math
## 22583 15-1132 151132 Computer, Math
## 22584 15-2031 152031 Computer, Math
## 22585 15-1132 151132 Computer, Math
## 22586 15-1133 151133 Computer, Math
## 22587 15-1132 151132 Computer, Math
## 22588 13-1071 131071 Business, Finance
## 22589 15-1121 151121 Computer, Math
## 22590 15-1133 151133 Computer, Math
## 22591 13-1111 131111 Business, Finance
## 22592 15-1121 151121 Computer, Math
## 22593 17-2141 172141 Architecture, Engineer
## 22594 29-1063 291063 Healthcare Practitioner
## 22595 15-1121 151121 Computer, Math
## 22596 29-1122 291122 Healthcare Practitioner
## 22597 15-2031 152031 Computer, Math
## 22598 15-1141 151141 Computer, Math
## 22599 15-1133 151133 Computer, Math
## 22600 15-1132 151132 Computer, Math
## 22601 15-1132 151132 Computer, Math
## 22602 17-2072 172072 Architecture, Engineer
## 22603 15-1131 151131 Computer, Math
## 22604 15-1121 151121 Computer, Math
## 22605 15-1132 151132 Computer, Math
## 22606 15-1199 151199 Computer, Math
## 22607 15-1132 151132 Computer, Math
## 22608 15-1132 151132 Computer, Math
## 22609 15-1132 151132 Computer, Math
## 22610 15-1132 151132 Computer, Math
## 22611 15-1131 151131 Computer, Math
## 22612 15-1121 151121 Computer, Math
## 22613 15-2041 152041 Computer, Math
## 22614 13-1161 131161 Business, Finance
## 22615 15-1132 151132 Computer, Math
## 22616 15-1121 151121 Computer, Math
## 22617 29-1066 291066 Healthcare Practitioner
## 22618 17-2112 172112 Architecture, Engineer
## 22619 15-1131 151131 Computer, Math
## 22620 15-1131 151131 Computer, Math
## 22621 15-1132 151132 Computer, Math
## 22622 15-1132 151132 Computer, Math
## 22623 15-1132 151132 Computer, Math
## 22624 15-1132 151132 Computer, Math
## 22625 15-1133 151133 Computer, Math
## 22626 15-1132 151132 Computer, Math
## 22627 15-1121 151121 Computer, Math
## 22628 15-1142 151142 Computer, Math
## 22629 13-2011 132011 Business, Finance
## 22630 15-1121 151121 Computer, Math
## 22631 15-1132 151132 Computer, Math
## 22632 15-1132 151132 Computer, Math
## 22633 15-1121 151121 Computer, Math
## 22634 15-1121 151121 Computer, Math
## 22635 15-1131 151131 Computer, Math
## 22636 15-1132 151132 Computer, Math
## 22637 13-1111 131111 Business, Finance
## 22638 15-1132 151132 Computer, Math
## 22639 15-1132 151132 Computer, Math
## 22640 15-2031 152031 Computer, Math
## 22641 15-1132 151132 Computer, Math
## 22642 15-1131 151131 Computer, Math
## 22643 15-1132 151132 Computer, Math
## 22644 15-1141 151141 Computer, Math
## 22645 15-1132 151132 Computer, Math
## 22646 15-1121 151121 Computer, Math
## 22647 29-1123 291123 Healthcare Practitioner
## 22648 25-1022 251022 Education, Training
## 22649 15-1121 151121 Computer, Math
## 22650 15-1132 151132 Computer, Math
## 22651 15-1132 151132 Computer, Math
## 22652 15-1132 151132 Computer, Math
## 22653 17-2071 172071 Architecture, Engineer
## 22654 15-1132 151132 Computer, Math
## 22655 15-1132 151132 Computer, Math
## 22656 13-2011 132011 Business, Finance
## 22657 15-2031 152031 Computer, Math
## 22658 15-1121 151121 Computer, Math
## 22659 15-1132 151132 Computer, Math
## 22660 15-1132 151132 Computer, Math
## 22661 15-2031 152031 Computer, Math
## 22662 15-1132 151132 Computer, Math
## 22663 13-1111 131111 Business, Finance
## 22664 15-1141 151141 Computer, Math
## 22665 15-1141 151141 Computer, Math
## 22666 15-1132 151132 Computer, Math
## 22667 15-1121 151121 Computer, Math
## 22668 17-2112 172112 Architecture, Engineer
## 22669 15-1132 151132 Computer, Math
## 22670 15-1199 151199 Computer, Math
## 22671 13-2011 132011 Business, Finance
## 22672 15-1132 151132 Computer, Math
## 22673 15-1121 151121 Computer, Math
## 22674 29-9011 299011 Healthcare Practitioner
## 22675 19-1022 191022 Life, Physcial, Social Science
## 22676 15-1122 151122 Computer, Math
## 22677 27-2012 272012 Media, Design
## 22678 15-1132 151132 Computer, Math
## 22679 15-1132 151132 Computer, Math
## 22680 17-2072 172072 Architecture, Engineer
## 22681 15-1121 151121 Computer, Math
## 22682 15-1132 151132 Computer, Math
## 22683 15-1132 151132 Computer, Math
## 22684 15-1121 151121 Computer, Math
## 22685 15-1132 151132 Computer, Math
## 22686 15-1134 151134 Computer, Math
## 22687 15-1133 151133 Computer, Math
## 22688 15-1132 151132 Computer, Math
## 22689 13-1111 131111 Business, Finance
## 22690 19-1013 191013 Life, Physcial, Social Science
## 22691 15-1121 151121 Computer, Math
## 22692 15-1133 151133 Computer, Math
## 22693 15-1131 151131 Computer, Math
## 22694 15-1132 151132 Computer, Math
## 22695 15-1132 151132 Computer, Math
## 22696 15-1132 151132 Computer, Math
## 22697 15-1132 151132 Computer, Math
## 22698 25-1011 251011 Education, Training
## 22699 15-2031 152031 Computer, Math
## 22700 15-2031 152031 Computer, Math
## 22701 29-1063 291063 Healthcare Practitioner
## 22702 17-2041 172041 Architecture, Engineer
## 22703 15-1121 151121 Computer, Math
## 22704 15-1133 151133 Computer, Math
## 22705 15-1121 151121 Computer, Math
## 22706 15-1132 151132 Computer, Math
## 22707 17-2051 172051 Architecture, Engineer
## 22708 15-1121 151121 Computer, Math
## 22709 15-1132 151132 Computer, Math
## 22710 15-1134 151134 Computer, Math
## 22711 15-1132 151132 Computer, Math
## 22712 13-1041 131041 Business, Finance
## 22713 13-1111 131111 Business, Finance
## 22714 15-1121 151121 Computer, Math
## 22715 15-1132 151132 Computer, Math
## 22716 15-2031 152031 Computer, Math
## 22717 15-1121 151121 Computer, Math
## 22718 15-1132 151132 Computer, Math
## 22719 13-1199 131199 Business, Finance
## 22720 25-1032 251032 Education, Training
## 22721 25-1032 251032 Education, Training
## 22722 15-1132 151132 Computer, Math
## 22723 15-1132 151132 Computer, Math
## 22724 15-1121 151121 Computer, Math
## 22725 15-1132 151132 Computer, Math
## 22726 15-1132 151132 Computer, Math
## 22727 11-3071 113071 Management
## 22728 15-1132 151132 Computer, Math
## 22729 17-2072 172072 Architecture, Engineer
## 22730 15-1199 151199 Computer, Math
## 22731 15-1121 151121 Computer, Math
## 22732 15-1132 151132 Computer, Math
## 22733 15-1141 151141 Computer, Math
## 22734 15-1121 151121 Computer, Math
## 22735 15-1199 151199 Computer, Math
## 22736 15-1131 151131 Computer, Math
## 22737 15-1132 151132 Computer, Math
## 22738 15-1131 151131 Computer, Math
## 22739 15-1141 151141 Computer, Math
## 22740 15-1132 151132 Computer, Math
## 22741 15-1132 151132 Computer, Math
## 22742 15-1199 151199 Computer, Math
## 22743 15-1142 151142 Computer, Math
## 22744 15-1141 151141 Computer, Math
## 22745 13-1111 131111 Business, Finance
## 22746 15-1132 151132 Computer, Math
## 22747 15-1121 151121 Computer, Math
## 22748 15-1131 151131 Computer, Math
## 22749 15-1132 151132 Computer, Math
## 22750 25-3099 253099 Education, Training
## 22751 13-2051 132051 Business, Finance
## 22752 15-1132 151132 Computer, Math
## 22753 15-1121 151121 Computer, Math
## 22754 15-1199 151199 Computer, Math
## 22755 15-1121 151121 Computer, Math
## 22756 13-1111 131111 Business, Finance
## 22757 15-1111 151111 Computer, Math
## 22758 15-1132 151132 Computer, Math
## 22759 17-2141 172141 Architecture, Engineer
## 22760 25-1066 251066 Education, Training
## 22761 15-1132 151132 Computer, Math
## 22762 17-1012 171012 Architecture, Engineer
## 22763 13-2051 132051 Business, Finance
## 22764 29-1171 291171 Healthcare Practitioner
## 22765 15-1132 151132 Computer, Math
## 22766 15-1132 151132 Computer, Math
## 22767 15-1133 151133 Computer, Math
## 22768 15-1132 151132 Computer, Math
## 22769 15-1132 151132 Computer, Math
## 22770 17-2073 172073 Architecture, Engineer
## 22771 15-1133 151133 Computer, Math
## 22772 15-2031 152031 Computer, Math
## 22773 15-1132 151132 Computer, Math
## 22774 15-1132 151132 Computer, Math
## 22775 15-1199 151199 Computer, Math
## 22776 17-2131 172131 Architecture, Engineer
## 22777 15-1121 151121 Computer, Math
## 22778 19-1029 191029 Life, Physcial, Social Science
## 22779 15-2031 152031 Computer, Math
## 22780 19-1012 191012 Life, Physcial, Social Science
## 22781 13-1161 131161 Business, Finance
## 22782 39-9041 399041 Others
## 22783 15-1121 151121 Computer, Math
## 22784 17-2141 172141 Architecture, Engineer
## 22785 15-1132 151132 Computer, Math
## 22786 15-1131 151131 Computer, Math
## 22787 13-1081 131081 Business, Finance
## 22788 13-1111 131111 Business, Finance
## 22789 15-1121 151121 Computer, Math
## 22790 11-9033 119033 Management
## 22791 15-1132 151132 Computer, Math
## 22792 15-1132 151132 Computer, Math
## 22793 15-1199 151199 Computer, Math
## 22794 15-1199 151199 Computer, Math
## 22795 15-1121 151121 Computer, Math
## 22796 15-1132 151132 Computer, Math
## 22797 15-1142 151142 Computer, Math
## 22798 15-1132 151132 Computer, Math
## 22799 15-1132 151132 Computer, Math
## 22800 15-1141 151141 Computer, Math
## 22801 29-1122 291122 Healthcare Practitioner
## 22802 15-1132 151132 Computer, Math
## 22803 15-1132 151132 Computer, Math
## 22804 15-1132 151132 Computer, Math
## 22805 15-1132 151132 Computer, Math
## 22806 15-1133 151133 Computer, Math
## 22807 15-1132 151132 Computer, Math
## 22808 15-1121 151121 Computer, Math
## 22809 15-1141 151141 Computer, Math
## 22810 15-1199 151199 Computer, Math
## 22811 15-1132 151132 Computer, Math
## 22812 17-2061 172061 Architecture, Engineer
## 22813 19-1042 191042 Life, Physcial, Social Science
## 22814 13-2051 132051 Business, Finance
## 22815 15-1132 151132 Computer, Math
## 22816 15-1121 151121 Computer, Math
## 22817 15-1132 151132 Computer, Math
## 22818 15-1121 151121 Computer, Math
## 22819 13-2011 132011 Business, Finance
## 22820 15-1121 151121 Computer, Math
## 22821 15-1133 151133 Computer, Math
## 22822 15-1111 151111 Computer, Math
## 22823 15-1131 151131 Computer, Math
## 22824 15-1121 151121 Computer, Math
## 22825 15-2041 152041 Computer, Math
## 22826 17-2131 172131 Architecture, Engineer
## 22827 15-1121 151121 Computer, Math
## 22828 15-1133 151133 Computer, Math
## 22829 15-1132 151132 Computer, Math
## 22830 19-1042 191042 Life, Physcial, Social Science
## 22831 11-3021 113021 Management
## 22832 15-1199 151199 Computer, Math
## 22833 17-2071 172071 Architecture, Engineer
## 22834 15-1132 151132 Computer, Math
## 22835 15-1132 151132 Computer, Math
## 22836 13-1111 131111 Business, Finance
## 22837 15-2031 152031 Computer, Math
## 22838 15-1132 151132 Computer, Math
## 22839 15-1199 151199 Computer, Math
## 22840 13-2051 132051 Business, Finance
## 22841 13-1161 131161 Business, Finance
## 22842 17-2112 172112 Architecture, Engineer
## 22843 13-1161 131161 Business, Finance
## 22844 15-1121 151121 Computer, Math
## 22845 15-1133 151133 Computer, Math
## 22846 15-1132 151132 Computer, Math
## 22847 15-1133 151133 Computer, Math
## 22848 15-1132 151132 Computer, Math
## 22849 15-1132 151132 Computer, Math
## 22850 11-3021 113021 Management
## 22851 15-1132 151132 Computer, Math
## 22852 15-1133 151133 Computer, Math
## 22853 15-1132 151132 Computer, Math
## 22854 15-1132 151132 Computer, Math
## 22855 15-1142 151142 Computer, Math
## 22856 15-1134 151134 Computer, Math
## 22857 41-9031 419031 Sales
## 22858 15-1132 151132 Computer, Math
## 22859 15-1132 151132 Computer, Math
## 22860 11-1021 111021 Management
## 22861 15-1199 151199 Computer, Math
## 22862 15-1132 151132 Computer, Math
## 22863 15-1121 151121 Computer, Math
## 22864 15-1199 151199 Computer, Math
## 22865 15-1131 151131 Computer, Math
## 22866 15-1121 151121 Computer, Math
## 22867 15-2031 152031 Computer, Math
## 22868 15-1121 151121 Computer, Math
## 22869 15-1133 151133 Computer, Math
## 22870 13-1161 131161 Business, Finance
## 22871 15-1132 151132 Computer, Math
## 22872 19-1042 191042 Life, Physcial, Social Science
## 22873 11-3021 113021 Management
## 22874 17-2051 172051 Architecture, Engineer
## 22875 13-2011 132011 Business, Finance
## 22876 15-1132 151132 Computer, Math
## 22877 13-2011 132011 Business, Finance
## 22878 15-1132 151132 Computer, Math
## 22879 15-1132 151132 Computer, Math
## 22880 27-3042 273042 Media, Design
## 22881 11-9121 119121 Management
## 22882 15-1132 151132 Computer, Math
## 22883 15-1133 151133 Computer, Math
## 22884 15-1199 151199 Computer, Math
## 22885 13-1081 131081 Business, Finance
## 22886 15-1132 151132 Computer, Math
## 22887 15-1199 151199 Computer, Math
## 22888 15-2031 152031 Computer, Math
## 22889 13-2011 132011 Business, Finance
## 22890 15-1132 151132 Computer, Math
## 22891 15-1132 151132 Computer, Math
## 22892 15-1199 151199 Computer, Math
## 22893 17-2071 172071 Architecture, Engineer
## 22894 15-1199 151199 Computer, Math
## 22895 19-1011 191011 Life, Physcial, Social Science
## 22896 15-1132 151132 Computer, Math
## 22897 29-1069 291069 Healthcare Practitioner
## 22898 15-1131 151131 Computer, Math
## 22899 15-1132 151132 Computer, Math
## 22900 15-1132 151132 Computer, Math
## 22901 19-1029 191029 Life, Physcial, Social Science
## 22902 15-1121 151121 Computer, Math
## 22903 15-1133 151133 Computer, Math
## 22904 15-1132 151132 Computer, Math
## 22905 19-2021 192021 Life, Physcial, Social Science
## 22906 15-1121 151121 Computer, Math
## 22907 15-1132 151132 Computer, Math
## 22908 15-1132 151132 Computer, Math
## 22909 41-9031 419031 Sales
## 22910 15-1132 151132 Computer, Math
## 22911 19-1029 191029 Life, Physcial, Social Science
## 22912 15-1199 151199 Computer, Math
## 22913 27-1014 271014 Media, Design
## 22914 15-1132 151132 Computer, Math
## 22915 15-1132 151132 Computer, Math
## 22916 15-1132 151132 Computer, Math
## 22917 15-1132 151132 Computer, Math
## 22918 15-1132 151132 Computer, Math
## 22919 15-1132 151132 Computer, Math
## 22920 15-2041 152041 Computer, Math
## 22921 15-1132 151132 Computer, Math
## 22922 29-1021 291021 Healthcare Practitioner
## 22923 15-1199 151199 Computer, Math
## 22924 15-1121 151121 Computer, Math
## 22925 15-1199 151199 Computer, Math
## 22926 11-3031 113031 Management
## 22927 13-1151 131151 Business, Finance
## 22928 11-3071 113071 Management
## 22929 29-9099 299099 Healthcare Practitioner
## 22930 15-1132 151132 Computer, Math
## 22931 15-1132 151132 Computer, Math
## 22932 15-1132 151132 Computer, Math
## 22933 15-1141 151141 Computer, Math
## 22934 13-2011 132011 Business, Finance
## 22935 15-1132 151132 Computer, Math
## 22936 17-2071 172071 Architecture, Engineer
## 22937 19-1029 191029 Life, Physcial, Social Science
## 22938 15-1132 151132 Computer, Math
## 22939 15-1121 151121 Computer, Math
## 22940 25-1011 251011 Education, Training
## 22941 15-1132 151132 Computer, Math
## 22942 25-1071 251071 Education, Training
## 22943 15-1111 151111 Computer, Math
## 22944 15-1122 151122 Computer, Math
## 22945 17-2071 172071 Architecture, Engineer
## 22946 15-1142 151142 Computer, Math
## 22947 13-2099 132099 Business, Finance
## 22948 15-1132 151132 Computer, Math
## 22949 15-1133 151133 Computer, Math
## 22950 15-2031 152031 Computer, Math
## 22951 15-1132 151132 Computer, Math
## 22952 15-1121 151121 Computer, Math
## 22953 15-1131 151131 Computer, Math
## 22954 15-2041 152041 Computer, Math
## 22955 15-1132 151132 Computer, Math
## 22956 15-1132 151132 Computer, Math
## 22957 17-2071 172071 Architecture, Engineer
## 22958 15-1132 151132 Computer, Math
## 22959 15-1132 151132 Computer, Math
## 22960 15-1141 151141 Computer, Math
## 22961 15-1132 151132 Computer, Math
## 22962 13-1081 131081 Business, Finance
## 22963 17-2072 172072 Architecture, Engineer
## 22964 15-1121 151121 Computer, Math
## 22965 15-1132 151132 Computer, Math
## 22966 15-1134 151134 Computer, Math
## 22967 15-1034 151034 Computer, Math
## 22968 15-1134 151134 Computer, Math
## 22969 15-2041 152041 Computer, Math
## 22970 15-1199 151199 Computer, Math
## 22971 15-1132 151132 Computer, Math
## 22972 15-1121 151121 Computer, Math
## 22973 15-1199 151199 Computer, Math
## 22974 15-1199 151199 Computer, Math
## 22975 15-1133 151133 Computer, Math
## 22976 13-2051 132051 Business, Finance
## 22977 15-1199 151199 Computer, Math
## 22978 15-1132 151132 Computer, Math
## 22979 19-2031 192031 Life, Physcial, Social Science
## 22980 15-1199 151199 Computer, Math
## 22981 15-1121 151121 Computer, Math
## 22982 11-2022 112022 Management
## 22983 15-1132 151132 Computer, Math
## 22984 15-1034 151034 Computer, Math
## 22985 15-1121 151121 Computer, Math
## 22986 15-1121 151121 Computer, Math
## 22987 15-1121 151121 Computer, Math
## 22988 17-2144 172144 Architecture, Engineer
## 22989 15-1121 151121 Computer, Math
## 22990 13-1081 131081 Business, Finance
## 22991 15-1122 151122 Computer, Math
## 22992 15-1121 151121 Computer, Math
## 22993 15-2031 152031 Computer, Math
## 22994 15-1132 151132 Computer, Math
## 22995 15-1132 151132 Computer, Math
## 22996 17-2051 172051 Architecture, Engineer
## 22997 15-1131 151131 Computer, Math
## 22998 13-1111 131111 Business, Finance
## 22999 15-1131 151131 Computer, Math
## 23000 15-1131 151131 Computer, Math
## 23001 15-1141 151141 Computer, Math
## 23002 17-2141 172141 Architecture, Engineer
## 23003 15-1132 151132 Computer, Math
## 23004 25-1011 251011 Education, Training
## 23005 15-1199 151199 Computer, Math
## 23006 15-1133 151133 Computer, Math
## 23007 15-1143 151143 Computer, Math
## 23008 13-2011 132011 Business, Finance
## 23009 15-1199 151199 Computer, Math
## 23010 15-1132 151132 Computer, Math
## 23011 15-1132 151132 Computer, Math
## 23012 15-1131 151131 Computer, Math
## 23013 13-2051 132051 Business, Finance
## 23014 15-1121 151121 Computer, Math
## 23015 15-1131 151131 Computer, Math
## 23016 15-1134 151134 Computer, Math
## 23017 15-1143 151143 Computer, Math
## 23018 15-1121 151121 Computer, Math
## 23019 17-2141 172141 Architecture, Engineer
## 23020 15-1199 151199 Computer, Math
## 23021 17-2141 172141 Architecture, Engineer
## 23022 15-1132 151132 Computer, Math
## 23023 13-2051 132051 Business, Finance
## 23024 23-1011 231011 Legal
## 23025 15-1132 151132 Computer, Math
## 23026 17-2112 172112 Architecture, Engineer
## 23027 15-1132 151132 Computer, Math
## 23028 15-1132 151132 Computer, Math
## 23029 15-1121 151121 Computer, Math
## 23030 11-9199 119199 Management
## 23031 13-1111 131111 Business, Finance
## 23032 15-1121 151121 Computer, Math
## 23033 15-1132 151132 Computer, Math
## 23034 15-1133 151133 Computer, Math
## 23035 15-1132 151132 Computer, Math
## 23036 15-2031 152031 Computer, Math
## 23037 15-1141 151141 Computer, Math
## 23038 15-1121 151121 Computer, Math
## 23039 15-1133 151133 Computer, Math
## 23040 15-1199 151199 Computer, Math
## 23041 15-1199 151199 Computer, Math
## 23042 19-1021 191021 Life, Physcial, Social Science
## 23043 15-1132 151132 Computer, Math
## 23044 11-3021 113021 Management
## 23045 15-1142 151142 Computer, Math
## 23046 15-1133 151133 Computer, Math
## 23047 17-2061 172061 Architecture, Engineer
## 23048 15-1132 151132 Computer, Math
## 23049 15-1199 151199 Computer, Math
## 23050 13-1161 131161 Business, Finance
## 23051 15-1121 151121 Computer, Math
## 23052 15-1132 151132 Computer, Math
## 23053 13-1111 131111 Business, Finance
## 23054 15-1142 151142 Computer, Math
## 23055 13-2051 132051 Business, Finance
## 23056 15-1121 151121 Computer, Math
## 23057 15-1199 151199 Computer, Math
## 23058 13-1161 131161 Business, Finance
## 23059 17-2071 172071 Architecture, Engineer
## 23060 15-1199 151199 Computer, Math
## 23061 15-1142 151142 Computer, Math
## 23062 15-1142 151142 Computer, Math
## 23063 15-1132 151132 Computer, Math
## 23064 15-1132 151132 Computer, Math
## 23065 15-1121 151121 Computer, Math
## 23066 15-1132 151132 Computer, Math
## 23067 13-2051 132051 Business, Finance
## 23068 29-1071 291071 Healthcare Practitioner
## 23069 19-1029 191029 Life, Physcial, Social Science
## 23070 15-1132 151132 Computer, Math
## 23071 15-1199 151199 Computer, Math
## 23072 17-2141 172141 Architecture, Engineer
## 23073 15-1132 151132 Computer, Math
## 23074 15-1132 151132 Computer, Math
## 23075 15-1199 151199 Computer, Math
## 23076 15-2041 152041 Computer, Math
## 23077 15-1132 151132 Computer, Math
## 23078 15-2041 152041 Computer, Math
## 23079 15-1132 151132 Computer, Math
## 23080 41-9031 419031 Sales
## 23081 15-1131 151131 Computer, Math
## 23082 15-1132 151132 Computer, Math
## 23083 15-1142 151142 Computer, Math
## 23084 15-1132 151132 Computer, Math
## 23085 29-1021 291021 Healthcare Practitioner
## 23086 17-2199 172199 Architecture, Engineer
## 23087 15-1121 151121 Computer, Math
## 23088 15-1142 151142 Computer, Math
## 23089 15-1131 151131 Computer, Math
## 23090 15-1132 151132 Computer, Math
## 23091 15-1121 151121 Computer, Math
## 23092 15-1132 151132 Computer, Math
## 23093 15-1121 151121 Computer, Math
## 23094 15-1199 151199 Computer, Math
## 23095 15-1132 151132 Computer, Math
## 23096 15-1121 151121 Computer, Math
## 23097 15-1132 151132 Computer, Math
## 23098 29-1069 291069 Healthcare Practitioner
## 23099 15-1132 151132 Computer, Math
## 23100 13-2011 132011 Business, Finance
## 23101 15-1132 151132 Computer, Math
## 23102 15-1132 151132 Computer, Math
## 23103 13-2011 132011 Business, Finance
## 23104 15-1132 151132 Computer, Math
## 23105 15-1133 151133 Computer, Math
## 23106 15-2031 152031 Computer, Math
## 23107 17-2199 172199 Architecture, Engineer
## 23108 15-1121 151121 Computer, Math
## 23109 15-1199 151199 Computer, Math
## 23110 15-1121 151121 Computer, Math
## 23111 15-1199 151199 Computer, Math
## 23112 15-1121 151121 Computer, Math
## 23113 15-1121 151121 Computer, Math
## 23114 17-2141 172141 Architecture, Engineer
## 23115 15-1199 151199 Computer, Math
## 23116 15-1132 151132 Computer, Math
## 23117 25-1011 251011 Education, Training
## 23118 15-1132 151132 Computer, Math
## 23119 29-1122 291122 Healthcare Practitioner
## 23120 13-1111 131111 Business, Finance
## 23121 13-2051 132051 Business, Finance
## 23122 15-1141 151141 Computer, Math
## 23123 15-1199 151199 Computer, Math
## 23124 13-2099 132099 Business, Finance
## 23125 19-1023 191023 Life, Physcial, Social Science
## 23126 15-1132 151132 Computer, Math
## 23127 15-1133 151133 Computer, Math
## 23128 15-1121 151121 Computer, Math
## 23129 15-1121 151121 Computer, Math
## 23130 15-1121 151121 Computer, Math
## 23131 15-1121 151121 Computer, Math
## 23132 13-2051 132051 Business, Finance
## 23133 15-1132 151132 Computer, Math
## 23134 15-1132 151132 Computer, Math
## 23135 15-1132 151132 Computer, Math
## 23136 11-9041 119041 Management
## 23137 15-1132 151132 Computer, Math
## 23138 13-2011 132011 Business, Finance
## 23139 41-9031 419031 Sales
## 23140 15-1132 151132 Computer, Math
## 23141 25-1071 251071 Education, Training
## 23142 15-1132 151132 Computer, Math
## 23143 17-1011 171011 Architecture, Engineer
## 23144 15-1199 151199 Computer, Math
## 23145 15-1132 151132 Computer, Math
## 23146 15-1132 151132 Computer, Math
## 23147 15-1132 151132 Computer, Math
## 23148 15-1141 151141 Computer, Math
## 23149 13-2011 132011 Business, Finance
## 23150 15-1132 151132 Computer, Math
## 23151 15-2031 152031 Computer, Math
## 23152 15-1132 151132 Computer, Math
## 23153 15-1132 151132 Computer, Math
## 23154 15-1121 151121 Computer, Math
## 23155 15-1133 151133 Computer, Math
## 23156 13-2099 132099 Business, Finance
## 23157 13-1161 131161 Business, Finance
## 23158 15-1199 151199 Computer, Math
## 23159 15-2041 152041 Computer, Math
## 23160 15-1199 151199 Computer, Math
## 23161 15-1199 151199 Computer, Math
## 23162 15-1132 151132 Computer, Math
## 23163 15-1121 151121 Computer, Math
## 23164 15-1132 151132 Computer, Math
## 23165 29-1181 291181 Healthcare Practitioner
## 23166 11-3021 113021 Management
## 23167 17-2071 172071 Architecture, Engineer
## 23168 15-1132 151132 Computer, Math
## 23169 15-1132 151132 Computer, Math
## 23170 15-1131 151131 Computer, Math
## 23171 15-1132 151132 Computer, Math
## 23172 15-1121 151121 Computer, Math
## 23173 15-1133 151133 Computer, Math
## 23174 15-1132 151132 Computer, Math
## 23175 17-2071 172071 Architecture, Engineer
## 23176 15-1134 151134 Computer, Math
## 23177 15-1121 151121 Computer, Math
## 23178 11-3021 113021 Management
## 23179 15-2031 152031 Computer, Math
## 23180 15-1132 151132 Computer, Math
## 23181 15-1121 151121 Computer, Math
## 23182 15-1121 151121 Computer, Math
## 23183 15-1121 151121 Computer, Math
## 23184 15-1132 151132 Computer, Math
## 23185 11-3071 113071 Management
## 23186 15-1133 151133 Computer, Math
## 23187 15-1121 151121 Computer, Math
## 23188 17-2171 172171 Architecture, Engineer
## 23189 19-1029 191029 Life, Physcial, Social Science
## 23190 15-1132 151132 Computer, Math
## 23191 15-1132 151132 Computer, Math
## 23192 15-1133 151133 Computer, Math
## 23193 15-1121 151121 Computer, Math
## 23194 15-1199 151199 Computer, Math
## 23195 15-1131 151131 Computer, Math
## 23196 15-1133 151133 Computer, Math
## 23197 15-1132 151132 Computer, Math
## 23198 15-1121 151121 Computer, Math
## 23199 15-1141 151141 Computer, Math
## 23200 13-1111 131111 Business, Finance
## 23201 15-1132 151132 Computer, Math
## 23202 17-2112 172112 Architecture, Engineer
## 23203 17-2141 172141 Architecture, Engineer
## 23204 15-1132 151132 Computer, Math
## 23205 15-1121 151121 Computer, Math
## 23206 15-1121 151121 Computer, Math
## 23207 15-1141 151141 Computer, Math
## 23208 15-1122 151122 Computer, Math
## 23209 25-1123 251123 Education, Training
## 23210 15-1132 151132 Computer, Math
## 23211 15-2041 152041 Computer, Math
## 23212 13-2011 132011 Business, Finance
## 23213 15-1132 151132 Computer, Math
## 23214 15-1122 151122 Computer, Math
## 23215 15-1132 151132 Computer, Math
## 23216 29-1011 291011 Healthcare Practitioner
## 23217 15-1121 151121 Computer, Math
## 23218 15-1131 151131 Computer, Math
## 23219 13-1111 131111 Business, Finance
## 23220 19-1021 191021 Life, Physcial, Social Science
## 23221 15-2011 152011 Computer, Math
## 23222 19-1029 191029 Life, Physcial, Social Science
## 23223 15-1121 151121 Computer, Math
## 23224 15-1132 151132 Computer, Math
## 23225 15-1199 151199 Computer, Math
## 23226 29-1199 291199 Healthcare Practitioner
## 23227 29-1123 291123 Healthcare Practitioner
## 23228 15-1199 151199 Computer, Math
## 23229 15-1121 151121 Computer, Math
## 23230 15-1142 151142 Computer, Math
## 23231 13-1111 131111 Business, Finance
## 23232 17-2051 172051 Architecture, Engineer
## 23233 15-1132 151132 Computer, Math
## 23234 15-2041 152041 Computer, Math
## 23235 15-1131 151131 Computer, Math
## 23236 11-9111 119111 Management
## 23237 15-1121 151121 Computer, Math
## 23238 29-1123 291123 Healthcare Practitioner
## 23239 15-1121 151121 Computer, Math
## 23240 13-2099 132099 Business, Finance
## 23241 15-1131 151131 Computer, Math
## 23242 13-1111 131111 Business, Finance
## 23243 25-1124 251124 Education, Training
## 23244 15-1199 151199 Computer, Math
## 23245 15-1121 151121 Computer, Math
## 23246 15-1133 151133 Computer, Math
## 23247 11-3031 113031 Management
## 23248 15-1132 151132 Computer, Math
## 23249 15-1199 151199 Computer, Math
## 23250 15-1132 151132 Computer, Math
## 23251 15-1132 151132 Computer, Math
## 23252 15-1132 151132 Computer, Math
## 23253 27-1024 271024 Media, Design
## 23254 15-2031 152031 Computer, Math
## 23255 13-2051 132051 Business, Finance
## 23256 15-1199 151199 Computer, Math
## 23257 15-1121 151121 Computer, Math
## 23258 13-1111 131111 Business, Finance
## 23259 25-1011 251011 Education, Training
## 23260 15-1199 151199 Computer, Math
## 23261 15-1132 151132 Computer, Math
## 23262 43-9111 439111 Others
## 23263 15-1121 151121 Computer, Math
## 23264 15-1132 151132 Computer, Math
## 23265 17-2071 172071 Architecture, Engineer
## 23266 15-1121 151121 Computer, Math
## 23267 15-1141 151141 Computer, Math
## 23268 15-1132 151132 Computer, Math
## 23269 15-1132 151132 Computer, Math
## 23270 15-1199 151199 Computer, Math
## 23271 15-2041 152041 Computer, Math
## 23272 17-3013 173013 Architecture, Engineer
## 23273 15-1132 151132 Computer, Math
## 23274 15-1199 151199 Computer, Math
## 23275 11-9021 119021 Management
## 23276 17-2061 172061 Architecture, Engineer
## 23277 15-1132 151132 Computer, Math
## 23278 15-1131 151131 Computer, Math
## 23279 15-1132 151132 Computer, Math
## 23280 13-1151 131151 Business, Finance
## 23281 15-1199 151199 Computer, Math
## 23282 27-1021 271021 Media, Design
## 23283 17-2141 172141 Architecture, Engineer
## 23284 15-1132 151132 Computer, Math
## 23285 15-1199 151199 Computer, Math
## 23286 15-1132 151132 Computer, Math
## 23287 11-2022 112022 Management
## 23288 15-1121 151121 Computer, Math
## 23289 15-1132 151132 Computer, Math
## 23290 15-1132 151132 Computer, Math
## 23291 15-1132 151132 Computer, Math
## 23292 15-1132 151132 Computer, Math
## 23293 15-1122 151122 Computer, Math
## 23294 15-1121 151121 Computer, Math
## 23295 15-1132 151132 Computer, Math
## 23296 29-1122 291122 Healthcare Practitioner
## 23297 15-1132 151132 Computer, Math
## 23298 17-2071 172071 Architecture, Engineer
## 23299 15-1152 151152 Computer, Math
## 23300 15-1199 151199 Computer, Math
## 23301 15-1141 151141 Computer, Math
## 23302 15-1132 151132 Computer, Math
## 23303 13-1111 131111 Business, Finance
## 23304 15-1132 151132 Computer, Math
## 23305 15-1199 151199 Computer, Math
## 23306 13-1041 131041 Business, Finance
## 23307 13-1081 131081 Business, Finance
## 23308 15-1132 151132 Computer, Math
## 23309 11-3021 113021 Management
## 23310 15-1141 151141 Computer, Math
## 23311 15-1132 151132 Computer, Math
## 23312 15-2031 152031 Computer, Math
## 23313 17-2112 172112 Architecture, Engineer
## 23314 15-1132 151132 Computer, Math
## 23315 15-1132 151132 Computer, Math
## 23316 15-2041 152041 Computer, Math
## 23317 15-1132 151132 Computer, Math
## 23318 15-1131 151131 Computer, Math
## 23319 15-1132 151132 Computer, Math
## 23320 13-1161 131161 Business, Finance
## 23321 15-1132 151132 Computer, Math
## 23322 15-2011 152011 Computer, Math
## 23323 11-9041 119041 Management
## 23324 15-1131 151131 Computer, Math
## 23325 15-2041 152041 Computer, Math
## 23326 15-1133 151133 Computer, Math
## 23327 15-1121 151121 Computer, Math
## 23328 15-1132 151132 Computer, Math
## 23329 15-1132 151132 Computer, Math
## 23330 17-2112 172112 Architecture, Engineer
## 23331 15-1121 151121 Computer, Math
## 23332 15-1132 151132 Computer, Math
## 23333 25-1011 251011 Education, Training
## 23334 19-4021 194021 Life, Physcial, Social Science
## 23335 15-1121 151121 Computer, Math
## 23336 13-1111 131111 Business, Finance
## 23337 15-1133 151133 Computer, Math
## 23338 13-2011 132011 Business, Finance
## 23339 15-1132 151132 Computer, Math
## 23340 15-1132 151132 Computer, Math
## 23341 15-1132 151132 Computer, Math
## 23342 15-1131 151131 Computer, Math
## 23343 15-1131 151131 Computer, Math
## 23344 15-1132 151132 Computer, Math
## 23345 15-1132 151132 Computer, Math
## 23346 25-2011 252011 Education, Training
## 23347 15-1132 151132 Computer, Math
## 23348 17-2071 172071 Architecture, Engineer
## 23349 15-1133 151133 Computer, Math
## 23350 15-1199 151199 Computer, Math
## 23351 27-1021 271021 Media, Design
## 23352 15-1132 151132 Computer, Math
## 23353 15-1132 151132 Computer, Math
## 23354 15-1133 151133 Computer, Math
## 23355 15-1121 151121 Computer, Math
## 23356 13-1111 131111 Business, Finance
## 23357 15-1121 151121 Computer, Math
## 23358 17-2141 172141 Architecture, Engineer
## 23359 15-1132 151132 Computer, Math
## 23360 17-2072 172072 Architecture, Engineer
## 23361 25-1071 251071 Education, Training
## 23362 15-1132 151132 Computer, Math
## 23363 15-1199 151199 Computer, Math
## 23364 15-1132 151132 Computer, Math
## 23365 15-1131 151131 Computer, Math
## 23366 15-1199 151199 Computer, Math
## 23367 17-2112 172112 Architecture, Engineer
## 23368 15-1111 151111 Computer, Math
## 23369 15-1132 151132 Computer, Math
## 23370 15-1143 151143 Computer, Math
## 23371 15-1132 151132 Computer, Math
## 23372 15-1199 151199 Computer, Math
## 23373 15-1132 151132 Computer, Math
## 23374 15-1131 151131 Computer, Math
## 23375 15-1132 151132 Computer, Math
## 23376 15-1132 151132 Computer, Math
## 23377 25-1011 251011 Education, Training
## 23378 15-1132 151132 Computer, Math
## 23379 15-1132 151132 Computer, Math
## 23380 13-1111 131111 Business, Finance
## 23381 15-1132 151132 Computer, Math
## 23382 25-2021 252021 Education, Training
## 23383 15-1133 151133 Computer, Math
## 23384 15-1132 151132 Computer, Math
## 23385 15-1134 151134 Computer, Math
## 23386 15-1131 151131 Computer, Math
## 23387 15-1132 151132 Computer, Math
## 23388 15-1132 151132 Computer, Math
## 23389 13-1111 131111 Business, Finance
## 23390 15-1121 151121 Computer, Math
## 23391 15-1132 151132 Computer, Math
## 23392 15-1122 151122 Computer, Math
## 23393 15-1132 151132 Computer, Math
## 23394 13-1051 131051 Business, Finance
## 23395 17-2112 172112 Architecture, Engineer
## 23396 15-1131 151131 Computer, Math
## 23397 15-1132 151132 Computer, Math
## 23398 29-1063 291063 Healthcare Practitioner
## 23399 17-2031 172031 Architecture, Engineer
## 23400 17-2072 172072 Architecture, Engineer
## 23401 13-1151 131151 Business, Finance
## 23402 17-2141 172141 Architecture, Engineer
## 23403 15-1142 151142 Computer, Math
## 23404 15-1132 151132 Computer, Math
## 23405 15-1131 151131 Computer, Math
## 23406 15-1132 151132 Computer, Math
## 23407 15-1132 151132 Computer, Math
## 23408 15-1199 151199 Computer, Math
## 23409 11-3021 113021 Management
## 23410 15-1199 151199 Computer, Math
## 23411 15-1199 151199 Computer, Math
## 23412 11-3021 113021 Management
## 23413 29-1123 291123 Healthcare Practitioner
## 23414 15-1199 151199 Computer, Math
## 23415 15-2031 152031 Computer, Math
## 23416 15-1199 151199 Computer, Math
## 23417 15-1132 151132 Computer, Math
## 23418 15-1132 151132 Computer, Math
## 23419 17-1011 171011 Architecture, Engineer
## 23420 15-1199 151199 Computer, Math
## 23421 17-2141 172141 Architecture, Engineer
## 23422 13-1111 131111 Business, Finance
## 23423 15-1142 151142 Computer, Math
## 23424 29-1069 291069 Healthcare Practitioner
## 23425 15-1131 151131 Computer, Math
## 23426 15-1132 151132 Computer, Math
## 23427 25-2052 252052 Education, Training
## 23428 15-1134 151134 Computer, Math
## 23429 13-1111 131111 Business, Finance
## 23430 13-2011 132011 Business, Finance
## 23431 17-2071 172071 Architecture, Engineer
## 23432 15-1199 151199 Computer, Math
## 23433 15-1132 151132 Computer, Math
## 23434 15-1199 151199 Computer, Math
## 23435 15-1132 151132 Computer, Math
## 23436 15-1199 151199 Computer, Math
## 23437 15-2011 152011 Computer, Math
## 23438 13-1161 131161 Business, Finance
## 23439 13-2099 132099 Business, Finance
## 23440 29-1063 291063 Healthcare Practitioner
## 23441 15-1132 151132 Computer, Math
## 23442 15-1132 151132 Computer, Math
## 23443 13-1071 131071 Business, Finance
## 23444 15-1132 151132 Computer, Math
## 23445 15-1121 151121 Computer, Math
## 23446 15-1132 151132 Computer, Math
## 23447 15-1132 151132 Computer, Math
## 23448 15-1132 151132 Computer, Math
## 23449 15-1132 151132 Computer, Math
## 23450 13-2011 132011 Business, Finance
## 23451 15-1199 151199 Computer, Math
## 23452 23-1012 231012 Legal
## 23453 15-1132 151132 Computer, Math
## 23454 15-1199 151199 Computer, Math
## 23455 15-1132 151132 Computer, Math
## 23456 15-1121 151121 Computer, Math
## 23457 17-2112 172112 Architecture, Engineer
## 23458 15-1199 151199 Computer, Math
## 23459 13-1151 131151 Business, Finance
## 23460 15-1121 151121 Computer, Math
## 23461 15-1132 151132 Computer, Math
## 23462 15-1133 151133 Computer, Math
## 23463 15-1142 151142 Computer, Math
## 23464 17-2072 172072 Architecture, Engineer
## 23465 15-1132 151132 Computer, Math
## 23466 13-2011 132011 Business, Finance
## 23467 15-1132 151132 Computer, Math
## 23468 17-2141 172141 Architecture, Engineer
## 23469 15-1131 151131 Computer, Math
## 23470 15-1141 151141 Computer, Math
## 23471 15-1132 151132 Computer, Math
## 23472 15-1121 151121 Computer, Math
## 23473 15-1131 151131 Computer, Math
## 23474 25-1041 251041 Education, Training
## 23475 15-1132 151132 Computer, Math
## 23476 15-1132 151132 Computer, Math
## 23477 15-1111 151111 Computer, Math
## 23478 25-1032 251032 Education, Training
## 23479 15-1132 151132 Computer, Math
## 23480 15-1121 151121 Computer, Math
## 23481 15-1199 151199 Computer, Math
## 23482 15-1199 151199 Computer, Math
## 23483 19-1029 191029 Life, Physcial, Social Science
## 23484 15-2041 152041 Computer, Math
## 23485 15-1121 151121 Computer, Math
## 23486 15-1199 151199 Computer, Math
## 23487 21-1011 211011 Social Service
## 23488 29-1063 291063 Healthcare Practitioner
## 23489 13-1161 131161 Business, Finance
## 23490 15-1199 151199 Computer, Math
## 23491 15-1132 151132 Computer, Math
## 23492 15-1121 151121 Computer, Math
## 23493 15-1121 151121 Computer, Math
## 23494 15-1141 151141 Computer, Math
## 23495 15-1131 151131 Computer, Math
## 23496 13-1111 131111 Business, Finance
## 23497 15-1142 151142 Computer, Math
## 23498 15-1132 151132 Computer, Math
## 23499 15-1133 151133 Computer, Math
## 23500 15-1199 151199 Computer, Math
## 23501 19-1042 191042 Life, Physcial, Social Science
## 23502 19-1029 191029 Life, Physcial, Social Science
## 23503 15-1133 151133 Computer, Math
## 23504 11-9111 119111 Management
## 23505 15-1121 151121 Computer, Math
## 23506 15-1132 151132 Computer, Math
## 23507 15-1141 151141 Computer, Math
## 23508 15-1132 151132 Computer, Math
## 23509 15-2021 152021 Computer, Math
## 23510 15-1121 151121 Computer, Math
## 23511 15-1199 151199 Computer, Math
## 23512 19-3011 193011 Life, Physcial, Social Science
## 23513 13-2011 132011 Business, Finance
## 23514 13-2011 132011 Business, Finance
## 23515 15-1132 151132 Computer, Math
## 23516 15-1121 151121 Computer, Math
## 23517 15-1142 151142 Computer, Math
## 23518 41-9031 419031 Sales
## 23519 15-1132 151132 Computer, Math
## 23520 15-1199 151199 Computer, Math
## 23521 13-2051 132051 Business, Finance
## 23522 15-1132 151132 Computer, Math
## 23523 17-2081 172081 Architecture, Engineer
## 23524 13-1111 131111 Business, Finance
## 23525 15-1132 151132 Computer, Math
## 23526 13-1111 131111 Business, Finance
## 23527 11-3021 113021 Management
## 23528 15-1132 151132 Computer, Math
## 23529 13-2099 132099 Business, Finance
## 23530 15-2031 152031 Computer, Math
## 23531 15-1132 151132 Computer, Math
## 23532 15-1132 151132 Computer, Math
## 23533 15-1132 151132 Computer, Math
## 23534 15-1131 151131 Computer, Math
## 23535 13-2051 132051 Business, Finance
## 23536 15-1199 151199 Computer, Math
## 23537 15-1131 151131 Computer, Math
## 23538 15-1121 151121 Computer, Math
## 23539 13-1081 131081 Business, Finance
## 23540 15-1131 151131 Computer, Math
## 23541 15-1121 151121 Computer, Math
## 23542 15-1131 151131 Computer, Math
## 23543 15-1132 151132 Computer, Math
## 23544 19-2012 192012 Life, Physcial, Social Science
## 23545 15-1199 151199 Computer, Math
## 23546 15-1121 151121 Computer, Math
## 23547 15-1133 151133 Computer, Math
## 23548 15-1132 151132 Computer, Math
## 23549 19-1029 191029 Life, Physcial, Social Science
## 23550 15-1199 151199 Computer, Math
## 23551 15-1132 151132 Computer, Math
## 23552 15-1121 151121 Computer, Math
## 23553 29-1069 291069 Healthcare Practitioner
## 23554 15-1132 151132 Computer, Math
## 23555 17-2112 172112 Architecture, Engineer
## 23556 15-1121 151121 Computer, Math
## 23557 15-1121 151121 Computer, Math
## 23558 21-1012 211012 Social Service
## 23559 15-1121 151121 Computer, Math
## 23560 15-1132 151132 Computer, Math
## 23561 13-1161 131161 Business, Finance
## 23562 11-2011 112011 Management
## 23563 25-1052 251052 Education, Training
## 23564 15-1132 151132 Computer, Math
## 23565 15-1121 151121 Computer, Math
## 23566 19-1021 191021 Life, Physcial, Social Science
## 23567 15-1132 151132 Computer, Math
## 23568 15-1199 151199 Computer, Math
## 23569 15-1121 151121 Computer, Math
## 23570 15-1132 151132 Computer, Math
## 23571 15-1199 151199 Computer, Math
## 23572 29-1069 291069 Healthcare Practitioner
## 23573 13-2099 132099 Business, Finance
## 23574 15-1133 151133 Computer, Math
## 23575 15-1132 151132 Computer, Math
## 23576 13-1111 131111 Business, Finance
## 23577 15-1121 151121 Computer, Math
## 23578 15-1132 151132 Computer, Math
## 23579 15-1121 151121 Computer, Math
## 23580 15-1121 151121 Computer, Math
## 23581 15-1133 151133 Computer, Math
## 23582 13-1111 131111 Business, Finance
## 23583 15-1034 151034 Computer, Math
## 23584 15-1132 151132 Computer, Math
## 23585 15-1132 151132 Computer, Math
## 23586 15-1199 151199 Computer, Math
## 23587 15-1199 151199 Computer, Math
## 23588 15-1134 151134 Computer, Math
## 23589 15-1132 151132 Computer, Math
## 23590 15-1132 151132 Computer, Math
## 23591 15-1121 151121 Computer, Math
## 23592 15-1132 151132 Computer, Math
## 23593 15-1199 151199 Computer, Math
## 23594 15-2031 152031 Computer, Math
## 23595 15-1131 151131 Computer, Math
## 23596 15-2031 152031 Computer, Math
## 23597 17-2021 172021 Architecture, Engineer
## 23598 15-1121 151121 Computer, Math
## 23599 15-1133 151133 Computer, Math
## 23600 15-1132 151132 Computer, Math
## 23601 15-1199 151199 Computer, Math
## 23602 29-1131 291131 Healthcare Practitioner
## 23603 15-1141 151141 Computer, Math
## 23604 15-1199 151199 Computer, Math
## 23605 13-2011 132011 Business, Finance
## 23606 13-1111 131111 Business, Finance
## 23607 15-1132 151132 Computer, Math
## 23608 15-1132 151132 Computer, Math
## 23609 15-1122 151122 Computer, Math
## 23610 27-3022 273022 Media, Design
## 23611 17-2141 172141 Architecture, Engineer
## 23612 15-1121 151121 Computer, Math
## 23613 27-1021 271021 Media, Design
## 23614 13-2011 132011 Business, Finance
## 23615 15-1121 151121 Computer, Math
## 23616 13-1161 131161 Business, Finance
## 23617 15-1121 151121 Computer, Math
## 23618 15-1132 151132 Computer, Math
## 23619 15-2031 152031 Computer, Math
## 23620 27-1014 271014 Media, Design
## 23621 15-1141 151141 Computer, Math
## 23622 15-1132 151132 Computer, Math
## 23623 15-1132 151132 Computer, Math
## 23624 15-1121 151121 Computer, Math
## 23625 15-1132 151132 Computer, Math
## 23626 13-1161 131161 Business, Finance
## 23627 13-1111 131111 Business, Finance
## 23628 15-1199 151199 Computer, Math
## 23629 15-1132 151132 Computer, Math
## 23630 15-1199 151199 Computer, Math
## 23631 15-1141 151141 Computer, Math
## 23632 17-1011 171011 Architecture, Engineer
## 23633 15-1131 151131 Computer, Math
## 23634 15-1132 151132 Computer, Math
## 23635 15-1199 151199 Computer, Math
## 23636 15-1199 151199 Computer, Math
## 23637 13-2011 132011 Business, Finance
## 23638 15-1121 151121 Computer, Math
## 23639 15-1132 151132 Computer, Math
## 23640 15-1132 151132 Computer, Math
## 23641 19-1042 191042 Life, Physcial, Social Science
## 23642 15-1133 151133 Computer, Math
## 23643 15-1121 151121 Computer, Math
## 23644 15-1111 151111 Computer, Math
## 23645 19-1021 191021 Life, Physcial, Social Science
## 23646 15-1132 151132 Computer, Math
## 23647 17-2072 172072 Architecture, Engineer
## 23648 15-2031 152031 Computer, Math
## 23649 17-2112 172112 Architecture, Engineer
## 23650 15-1121 151121 Computer, Math
## 23651 15-1199 151199 Computer, Math
## 23652 15-1199 151199 Computer, Math
## 23653 17-2112 172112 Architecture, Engineer
## 23654 25-1064 251064 Education, Training
## 23655 17-2151 172151 Architecture, Engineer
## 23656 15-1132 151132 Computer, Math
## 23657 15-1132 151132 Computer, Math
## 23658 15-1134 151134 Computer, Math
## 23659 15-1199 151199 Computer, Math
## 23660 15-1133 151133 Computer, Math
## 23661 15-1121 151121 Computer, Math
## 23662 15-2021 152021 Computer, Math
## 23663 15-1132 151132 Computer, Math
## 23664 15-1121 151121 Computer, Math
## 23665 15-1131 151131 Computer, Math
## 23666 17-2141 172141 Architecture, Engineer
## 23667 15-2031 152031 Computer, Math
## 23668 15-1131 151131 Computer, Math
## 23669 15-1131 151131 Computer, Math
## 23670 15-1121 151121 Computer, Math
## 23671 15-1132 151132 Computer, Math
## 23672 15-1133 151133 Computer, Math
## 23673 13-1161 131161 Business, Finance
## 23674 15-1132 151132 Computer, Math
## 23675 15-1134 151134 Computer, Math
## 23676 15-1121 151121 Computer, Math
## 23677 15-1132 151132 Computer, Math
## 23678 15-1132 151132 Computer, Math
## 23679 13-1161 131161 Business, Finance
## 23680 17-2121 172121 Architecture, Engineer
## 23681 15-1132 151132 Computer, Math
## 23682 15-1132 151132 Computer, Math
## 23683 15-1121 151121 Computer, Math
## 23684 15-1132 151132 Computer, Math
## 23685 15-1132 151132 Computer, Math
## 23686 15-1121 151121 Computer, Math
## 23687 15-1132 151132 Computer, Math
## 23688 15-1142 151142 Computer, Math
## 23689 19-3011 193011 Life, Physcial, Social Science
## 23690 15-1121 151121 Computer, Math
## 23691 11-1021 111021 Management
## 23692 17-2199 172199 Architecture, Engineer
## 23693 15-1132 151132 Computer, Math
## 23694 13-2099 132099 Business, Finance
## 23695 29-1123 291123 Healthcare Practitioner
## 23696 15-1132 151132 Computer, Math
## 23697 15-1199 151199 Computer, Math
## 23698 15-1131 151131 Computer, Math
## 23699 15-1121 151121 Computer, Math
## 23700 15-2041 152041 Computer, Math
## 23701 13-2031 132031 Business, Finance
## 23702 15-1132 151132 Computer, Math
## 23703 15-1132 151132 Computer, Math
## 23704 25-1032 251032 Education, Training
## 23705 13-1051 131051 Business, Finance
## 23706 15-1132 151132 Computer, Math
## 23707 15-1132 151132 Computer, Math
## 23708 19-1029 191029 Life, Physcial, Social Science
## 23709 15-2031 152031 Computer, Math
## 23710 27-3041 273041 Media, Design
## 23711 17-2041 172041 Architecture, Engineer
## 23712 15-1199 151199 Computer, Math
## 23713 15-1132 151132 Computer, Math
## 23714 17-2141 172141 Architecture, Engineer
## 23715 15-1199 151199 Computer, Math
## 23716 15-1132 151132 Computer, Math
## 23717 13-1161 131161 Business, Finance
## 23718 15-1121 151121 Computer, Math
## 23719 15-1199 151199 Computer, Math
## 23720 13-2051 132051 Business, Finance
## 23721 15-1121 151121 Computer, Math
## 23722 15-1199 151199 Computer, Math
## 23723 13-1111 131111 Business, Finance
## 23724 15-1122 151122 Computer, Math
## 23725 15-1142 151142 Computer, Math
## 23726 15-1141 151141 Computer, Math
## 23727 15-1199 151199 Computer, Math
## 23728 15-2031 152031 Computer, Math
## 23729 15-1132 151132 Computer, Math
## 23730 15-1199 151199 Computer, Math
## 23731 15-1121 151121 Computer, Math
## 23732 15-1132 151132 Computer, Math
## 23733 15-1121 151121 Computer, Math
## 23734 15-1132 151132 Computer, Math
## 23735 15-2031 152031 Computer, Math
## 23736 15-1133 151133 Computer, Math
## 23737 15-1132 151132 Computer, Math
## 23738 15-1132 151132 Computer, Math
## 23739 19-1029 191029 Life, Physcial, Social Science
## 23740 25-2012 252012 Education, Training
## 23741 15-1132 151132 Computer, Math
## 23742 15-1132 151132 Computer, Math
## 23743 15-2031 152031 Computer, Math
## 23744 15-1121 151121 Computer, Math
## 23745 15-1132 151132 Computer, Math
## 23746 15-1121 151121 Computer, Math
## 23747 15-1199 151199 Computer, Math
## 23748 15-2031 152031 Computer, Math
## 23749 15-1133 151133 Computer, Math
## 23750 15-1121 151121 Computer, Math
## 23751 15-1132 151132 Computer, Math
## 23752 15-1121 151121 Computer, Math
## 23753 15-1133 151133 Computer, Math
## 23754 15-1132 151132 Computer, Math
## 23755 15-1132 151132 Computer, Math
## 23756 15-1132 151132 Computer, Math
## 23757 15-1132 151132 Computer, Math
## 23758 13-2011 132011 Business, Finance
## 23759 13-2011 132011 Business, Finance
## 23760 15-1141 151141 Computer, Math
## 23761 15-1132 151132 Computer, Math
## 23762 13-1199 131199 Business, Finance
## 23763 15-1132 151132 Computer, Math
## 23764 15-1199 151199 Computer, Math
## 23765 25-1042 251042 Education, Training
## 23766 15-1132 151132 Computer, Math
## 23767 15-1199 151199 Computer, Math
## 23768 15-1199 151199 Computer, Math
## 23769 15-1132 151132 Computer, Math
## 23770 15-1132 151132 Computer, Math
## 23771 13-2011 132011 Business, Finance
## 23772 15-1133 151133 Computer, Math
## 23773 15-1132 151132 Computer, Math
## 23774 15-1132 151132 Computer, Math
## 23775 15-1132 151132 Computer, Math
## 23776 13-2031 132031 Business, Finance
## 23777 29-9099 299099 Healthcare Practitioner
## 23778 15-1132 151132 Computer, Math
## 23779 15-1199 151199 Computer, Math
## 23780 15-2041 152041 Computer, Math
## 23781 15-1131 151131 Computer, Math
## 23782 13-1111 131111 Business, Finance
## 23783 15-2041 152041 Computer, Math
## 23784 13-2011 132011 Business, Finance
## 23785 15-1121 151121 Computer, Math
## 23786 13-1111 131111 Business, Finance
## 23787 15-1132 151132 Computer, Math
## 23788 15-1132 151132 Computer, Math
## 23789 15-1132 151132 Computer, Math
## 23790 11-2031 112031 Management
## 23791 15-1199 151199 Computer, Math
## 23792 15-1132 151132 Computer, Math
## 23793 15-1132 151132 Computer, Math
## 23794 15-1132 151132 Computer, Math
## 23795 15-1132 151132 Computer, Math
## 23796 13-2011 132011 Business, Finance
## 23797 15-1134 151134 Computer, Math
## 23798 15-1133 151133 Computer, Math
## 23799 15-1122 151122 Computer, Math
## 23800 15-1143 151143 Computer, Math
## 23801 15-1141 151141 Computer, Math
## 23802 15-1142 151142 Computer, Math
## 23803 15-1132 151132 Computer, Math
## 23804 15-2031 152031 Computer, Math
## 23805 15-1199 151199 Computer, Math
## 23806 29-1021 291021 Healthcare Practitioner
## 23807 13-1161 131161 Business, Finance
## 23808 17-2112 172112 Architecture, Engineer
## 23809 15-1132 151132 Computer, Math
## 23810 15-1133 151133 Computer, Math
## 23811 15-1132 151132 Computer, Math
## 23812 15-1132 151132 Computer, Math
## 23813 15-1132 151132 Computer, Math
## 23814 13-1161 131161 Business, Finance
## 23815 15-1121 151121 Computer, Math
## 23816 15-1141 151141 Computer, Math
## 23817 15-1199 151199 Computer, Math
## 23818 13-2011 132011 Business, Finance
## 23819 15-1132 151132 Computer, Math
## 23820 19-3011 193011 Life, Physcial, Social Science
## 23821 15-1199 151199 Computer, Math
## 23822 15-1132 151132 Computer, Math
## 23823 15-1141 151141 Computer, Math
## 23824 15-1121 151121 Computer, Math
## 23825 13-1111 131111 Business, Finance
## 23826 15-1121 151121 Computer, Math
## 23827 41-9031 419031 Sales
## 23828 15-1132 151132 Computer, Math
## 23829 17-2112 172112 Architecture, Engineer
## 23830 13-1161 131161 Business, Finance
## 23831 15-1132 151132 Computer, Math
## 23832 15-1121 151121 Computer, Math
## 23833 15-1132 151132 Computer, Math
## 23834 15-1132 151132 Computer, Math
## 23835 15-1132 151132 Computer, Math
## 23836 15-1111 151111 Computer, Math
## 23837 17-2199.02 172199 Architecture, Engineer
## 23838 15-1199 151199 Computer, Math
## 23839 15-1132 151132 Computer, Math
## 23840 25-1011 251011 Education, Training
## 23841 17-2071 172071 Architecture, Engineer
## 23842 29-1123 291123 Healthcare Practitioner
## 23843 15-1133 151133 Computer, Math
## 23844 17-2141 172141 Architecture, Engineer
## 23845 15-1199 151199 Computer, Math
## 23846 15-1132 151132 Computer, Math
## 23847 15-1121 151121 Computer, Math
## 23848 15-1132 151132 Computer, Math
## 23849 15-2031 152031 Computer, Math
## 23850 19-1021 191021 Life, Physcial, Social Science
## 23851 11-2022 112022 Management
## 23852 15-1199 151199 Computer, Math
## 23853 17-2141 172141 Architecture, Engineer
## 23854 13-1041 131041 Business, Finance
## 23855 15-1132 151132 Computer, Math
## 23856 15-1132 151132 Computer, Math
## 23857 27-1021 271021 Media, Design
## 23858 15-1132 151132 Computer, Math
## 23859 19-4021 194021 Life, Physcial, Social Science
## 23860 15-1132 151132 Computer, Math
## 23861 15-1132 151132 Computer, Math
## 23862 25-1063 251063 Education, Training
## 23863 17-2199 172199 Architecture, Engineer
## 23864 13-1111 131111 Business, Finance
## 23865 15-1132 151132 Computer, Math
## 23866 15-1121 151121 Computer, Math
## 23867 15-1133 151133 Computer, Math
## 23868 15-2031 152031 Computer, Math
## 23869 15-1132 151132 Computer, Math
## 23870 13-1111 131111 Business, Finance
## 23871 15-1131 151131 Computer, Math
## 23872 25-1011 251011 Education, Training
## 23873 15-1132 151132 Computer, Math
## 23874 15-1132 151132 Computer, Math
## 23875 17-2141 172141 Architecture, Engineer
## 23876 15-1199 151199 Computer, Math
## 23877 17-2144 172144 Architecture, Engineer
## 23878 15-1132 151132 Computer, Math
## 23879 15-1132 151132 Computer, Math
## 23880 15-1199 151199 Computer, Math
## 23881 13-2011 132011 Business, Finance
## 23882 13-1111 131111 Business, Finance
## 23883 19-1042 191042 Life, Physcial, Social Science
## 23884 15-1121 151121 Computer, Math
## 23885 15-1132 151132 Computer, Math
## 23886 15-1133 151133 Computer, Math
## 23887 15-1132 151132 Computer, Math
## 23888 15-1132 151132 Computer, Math
## 23889 13-1081 131081 Business, Finance
## 23890 15-1132 151132 Computer, Math
## 23891 15-1131 151131 Computer, Math
## 23892 15-1132 151132 Computer, Math
## 23893 15-1132 151132 Computer, Math
## 23894 15-1132 151132 Computer, Math
## 23895 15-1199 151199 Computer, Math
## 23896 15-1132 151132 Computer, Math
## 23897 15-1142 151142 Computer, Math
## 23898 15-1121 151121 Computer, Math
## 23899 15-1121 151121 Computer, Math
## 23900 15-1132 151132 Computer, Math
## 23901 17-2131 172131 Architecture, Engineer
## 23902 13-1071 131071 Business, Finance
## 23903 15-1133 151133 Computer, Math
## 23904 15-1132 151132 Computer, Math
## 23905 13-1041 131041 Business, Finance
## 23906 15-1122 151122 Computer, Math
## 23907 15-1199 151199 Computer, Math
## 23908 15-1132 151132 Computer, Math
## 23909 15-1131 151131 Computer, Math
## 23910 25-1022 251022 Education, Training
## 23911 15-1132 151132 Computer, Math
## 23912 11-1021 111021 Management
## 23913 13-2011 132011 Business, Finance
## 23914 15-1132 151132 Computer, Math
## 23915 15-1132 151132 Computer, Math
## 23916 15-1199 151199 Computer, Math
## 23917 15-1132 151132 Computer, Math
## 23918 29-2011 292011 Healthcare Practitioner
## 23919 15-1121 151121 Computer, Math
## 23920 13-2099 132099 Business, Finance
## 23921 15-1141 151141 Computer, Math
## 23922 15-1132 151132 Computer, Math
## 23923 13-1111 131111 Business, Finance
## 23924 15-1131 151131 Computer, Math
## 23925 17-2141 172141 Architecture, Engineer
## 23926 11-3021 113021 Management
## 23927 15-2031 152031 Computer, Math
## 23928 15-1131 151131 Computer, Math
## 23929 15-1132 151132 Computer, Math
## 23930 19-1042 191042 Life, Physcial, Social Science
## 23931 15-1121 151121 Computer, Math
## 23932 15-1121 151121 Computer, Math
## 23933 15-1132 151132 Computer, Math
## 23934 15-2041 152041 Computer, Math
## 23935 13-1161 131161 Business, Finance
## 23936 13-1111 131111 Business, Finance
## 23937 15-1121 151121 Computer, Math
## 23938 15-1199 151199 Computer, Math
## 23939 15-1132 151132 Computer, Math
## 23940 15-1132 151132 Computer, Math
## 23941 15-1121 151121 Computer, Math
## 23942 15-1131 151131 Computer, Math
## 23943 15-1199 151199 Computer, Math
## 23944 15-1121 151121 Computer, Math
## 23945 11-9199 119199 Management
## 23946 15-1133 151133 Computer, Math
## 23947 15-1134 151134 Computer, Math
## 23948 15-1121 151121 Computer, Math
## 23949 19-3092 193092 Life, Physcial, Social Science
## 23950 15-1131 151131 Computer, Math
## 23951 25-1071 251071 Education, Training
## 23952 15-1132 151132 Computer, Math
## 23953 15-1132 151132 Computer, Math
## 23954 11-3021 113021 Management
## 23955 29-1069 291069 Healthcare Practitioner
## 23956 15-1132 151132 Computer, Math
## 23957 15-2031 152031 Computer, Math
## 23958 15-1132 151132 Computer, Math
## 23959 15-1132 151132 Computer, Math
## 23960 19-1041 191041 Life, Physcial, Social Science
## 23961 15-2031 152031 Computer, Math
## 23962 15-1132 151132 Computer, Math
## 23963 17-2141 172141 Architecture, Engineer
## 23964 15-1199 151199 Computer, Math
## 23965 15-1132 151132 Computer, Math
## 23966 15-1132 151132 Computer, Math
## 23967 25-1066 251066 Education, Training
## 23968 29-1069 291069 Healthcare Practitioner
## 23969 15-1141 151141 Computer, Math
## 23970 15-1121 151121 Computer, Math
## 23971 17-2071 172071 Architecture, Engineer
## 23972 11-3011 113011 Management
## 23973 15-1133 151133 Computer, Math
## 23974 15-2031 152031 Computer, Math
## 23975 29-9011 299011 Healthcare Practitioner
## 23976 15-2041 152041 Computer, Math
## 23977 15-1141 151141 Computer, Math
## 23978 15-1132 151132 Computer, Math
## 23979 15-1132 151132 Computer, Math
## 23980 15-1121 151121 Computer, Math
## 23981 15-2041 152041 Computer, Math
## 23982 15-1121 151121 Computer, Math
## 23983 15-1199 151199 Computer, Math
## 23984 15-2041 152041 Computer, Math
## 23985 15-1121 151121 Computer, Math
## 23986 15-1121 151121 Computer, Math
## 23987 15-1132 151132 Computer, Math
## 23988 15-1132 151132 Computer, Math
## 23989 15-1132 151132 Computer, Math
## 23990 13-2051 132051 Business, Finance
## 23991 15-1199 151199 Computer, Math
## 23992 11-9081 119081 Management
## 23993 15-1142 151142 Computer, Math
## 23994 15-1199 151199 Computer, Math
## 23995 15-1133 151133 Computer, Math
## 23996 15-1132 151132 Computer, Math
## 23997 15-1132 151132 Computer, Math
## 23998 15-1131 151131 Computer, Math
## 23999 15-1121 151121 Computer, Math
## 24000 15-1132 151132 Computer, Math
## 24001 15-1121 151121 Computer, Math
## 24002 15-1132 151132 Computer, Math
## 24003 15-1121 151121 Computer, Math
## 24004 15-1132 151132 Computer, Math
## 24005 13-2099 132099 Business, Finance
## 24006 11-9013 119013 Management
## 24007 15-1121 151121 Computer, Math
## 24008 15-1132 151132 Computer, Math
## 24009 29-1021 291021 Healthcare Practitioner
## 24010 15-1132 151132 Computer, Math
## 24011 17-1011 171011 Architecture, Engineer
## 24012 25-1032 251032 Education, Training
## 24013 15-1132 151132 Computer, Math
## 24014 17-2031 172031 Architecture, Engineer
## 24015 15-1121 151121 Computer, Math
## 24016 15-1133 151133 Computer, Math
## 24017 15-1132 151132 Computer, Math
## 24018 15-1131 151131 Computer, Math
## 24019 13-1111 131111 Business, Finance
## 24020 23-1011 231011 Legal
## 24021 17-2199 172199 Architecture, Engineer
## 24022 19-2012 192012 Life, Physcial, Social Science
## 24023 15-1131 151131 Computer, Math
## 24024 15-1132 151132 Computer, Math
## 24025 15-1133 151133 Computer, Math
## 24026 13-1161 131161 Business, Finance
## 24027 15-1132 151132 Computer, Math
## 24028 15-1131 151131 Computer, Math
## 24029 11-2021 112021 Management
## 24030 15-1132 151132 Computer, Math
## 24031 15-1142 151142 Computer, Math
## 24032 15-1132 151132 Computer, Math
## 24033 29-1069 291069 Healthcare Practitioner
## 24034 15-2031 152031 Computer, Math
## 24035 15-1121 151121 Computer, Math
## 24036 17-2041 172041 Architecture, Engineer
## 24037 15-1132 151132 Computer, Math
## 24038 15-2041 152041 Computer, Math
## 24039 15-2041 152041 Computer, Math
## 24040 15-1132 151132 Computer, Math
## 24041 15-1134 151134 Computer, Math
## 24042 15-1132 151132 Computer, Math
## 24043 17-2141 172141 Architecture, Engineer
## 24044 17-2141 172141 Architecture, Engineer
## 24045 15-1133 151133 Computer, Math
## 24046 15-1121 151121 Computer, Math
## 24047 19-1042 191042 Life, Physcial, Social Science
## 24048 15-1132 151132 Computer, Math
## 24049 15-1141 151141 Computer, Math
## 24050 17-2031 172031 Architecture, Engineer
## 24051 17-2112 172112 Architecture, Engineer
## 24052 15-1132 151132 Computer, Math
## 24053 15-1132 151132 Computer, Math
## 24054 13-1161 131161 Business, Finance
## 24055 25-1081 251081 Education, Training
## 24056 15-1131 151131 Computer, Math
## 24057 15-1132 151132 Computer, Math
## 24058 15-1132 151132 Computer, Math
## 24059 15-1141 151141 Computer, Math
## 24060 15-1132 151132 Computer, Math
## 24061 15-1199 151199 Computer, Math
## 24062 15-1132 151132 Computer, Math
## 24063 15-1131 151131 Computer, Math
## 24064 17-2071 172071 Architecture, Engineer
## 24065 15-1142 151142 Computer, Math
## 24066 15-1132 151132 Computer, Math
## 24067 15-1199 151199 Computer, Math
## 24068 15-1133 151133 Computer, Math
## 24069 15-1132 151132 Computer, Math
## 24070 15-1132 151132 Computer, Math
## 24071 15-1132 151132 Computer, Math
## 24072 29-1069 291069 Healthcare Practitioner
## 24073 15-1132 151132 Computer, Math
## 24074 15-1199 151199 Computer, Math
## 24075 15-1199 151199 Computer, Math
## 24076 15-1132 151132 Computer, Math
## 24077 15-1132 151132 Computer, Math
## 24078 15-1199 151199 Computer, Math
## 24079 15-1132 151132 Computer, Math
## 24080 15-1132 151132 Computer, Math
## 24081 15-1121 151121 Computer, Math
## 24082 15-1132 151132 Computer, Math
## 24083 15-1133 151133 Computer, Math
## 24084 17-2072 172072 Architecture, Engineer
## 24085 15-1199 151199 Computer, Math
## 24086 15-1133 151133 Computer, Math
## 24087 27-3031 273031 Media, Design
## 24088 17-2141 172141 Architecture, Engineer
## 24089 15-1199 151199 Computer, Math
## 24090 25-1021 251021 Education, Training
## 24091 15-1199 151199 Computer, Math
## 24092 25-1121 251121 Education, Training
## 24093 15-1132 151132 Computer, Math
## 24094 25-1011 251011 Education, Training
## 24095 15-1131 151131 Computer, Math
## 24096 15-1121 151121 Computer, Math
## 24097 15-1199 151199 Computer, Math
## 24098 15-1199 151199 Computer, Math
## 24099 15-1121 151121 Computer, Math
## 24100 25-2022 252022 Education, Training
## 24101 15-1132 151132 Computer, Math
## 24102 17-2141 172141 Architecture, Engineer
## 24103 15-1132 151132 Computer, Math
## 24104 17-2072 172072 Architecture, Engineer
## 24105 27-1021 271021 Media, Design
## 24106 15-1132 151132 Computer, Math
## 24107 15-1199 151199 Computer, Math
## 24108 15-1132 151132 Computer, Math
## 24109 15-1199 151199 Computer, Math
## 24110 19-2031 192031 Life, Physcial, Social Science
## 24111 15-1132 151132 Computer, Math
## 24112 15-1121 151121 Computer, Math
## 24113 23-2099 232099 Legal
## 24114 15-1132 151132 Computer, Math
## 24115 11-3021 113021 Management
## 24116 15-1152 151152 Computer, Math
## 24117 15-1132 151132 Computer, Math
## 24118 15-1141 151141 Computer, Math
## 24119 15-1132 151132 Computer, Math
## 24120 15-1132 151132 Computer, Math
## 24121 15-1132 151132 Computer, Math
## 24122 29-9099 299099 Healthcare Practitioner
## 24123 15-1141 151141 Computer, Math
## 24124 29-1122 291122 Healthcare Practitioner
## 24125 15-1132 151132 Computer, Math
## 24126 15-2041 152041 Computer, Math
## 24127 15-1199 151199 Computer, Math
## 24128 15-1141 151141 Computer, Math
## 24129 19-1042 191042 Life, Physcial, Social Science
## 24130 11-3031 113031 Management
## 24131 17-2071 172071 Architecture, Engineer
## 24132 29-1063 291063 Healthcare Practitioner
## 24133 13-2099 132099 Business, Finance
## 24134 13-1161 131161 Business, Finance
## 24135 15-1199 151199 Computer, Math
## 24136 41-9031 419031 Sales
## 24137 15-1199 151199 Computer, Math
## 24138 15-1132 151132 Computer, Math
## 24139 15-1132 151132 Computer, Math
## 24140 15-1132 151132 Computer, Math
## 24141 15-1199 151199 Computer, Math
## 24142 13-1111 131111 Business, Finance
## 24143 15-1133 151133 Computer, Math
## 24144 15-1121 151121 Computer, Math
## 24145 15-1132 151132 Computer, Math
## 24146 17-2141 172141 Architecture, Engineer
## 24147 15-1143 151143 Computer, Math
## 24148 15-1132 151132 Computer, Math
## 24149 15-1121 151121 Computer, Math
## 24150 15-1121 151121 Computer, Math
## 24151 17-2131 172131 Architecture, Engineer
## 24152 25-1011 251011 Education, Training
## 24153 15-2031 152031 Computer, Math
## 24154 19-1021 191021 Life, Physcial, Social Science
## 24155 15-1121 151121 Computer, Math
## 24156 27-3043 273043 Media, Design
## 24157 13-1111 131111 Business, Finance
## 24158 15-2011 152011 Computer, Math
## 24159 17-2141 172141 Architecture, Engineer
## 24160 15-1121 151121 Computer, Math
## 24161 13-1111 131111 Business, Finance
## 24162 15-1132 151132 Computer, Math
## 24163 15-1121 151121 Computer, Math
## 24164 13-1111 131111 Business, Finance
## 24165 15-1132 151132 Computer, Math
## 24166 15-1132 151132 Computer, Math
## 24167 15-1132 151132 Computer, Math
## 24168 15-2041 152041 Computer, Math
## 24169 15-2031 152031 Computer, Math
## 24170 17-2141 172141 Architecture, Engineer
## 24171 27-1021 271021 Media, Design
## 24172 17-2071 172071 Architecture, Engineer
## 24173 15-1131 151131 Computer, Math
## 24174 15-1133 151133 Computer, Math
## 24175 15-1199 151199 Computer, Math
## 24176 15-1132 151132 Computer, Math
## 24177 15-1132 151132 Computer, Math
## 24178 15-1133 151133 Computer, Math
## 24179 15-1132 151132 Computer, Math
## 24180 15-2041 152041 Computer, Math
## 24181 15-1199 151199 Computer, Math
## 24182 15-1199 151199 Computer, Math
## 24183 17-2112 172112 Architecture, Engineer
## 24184 15-1199 151199 Computer, Math
## 24185 15-1133 151133 Computer, Math
## 24186 15-1142 151142 Computer, Math
## 24187 17-2112 172112 Architecture, Engineer
## 24188 15-1133 151133 Computer, Math
## 24189 19-2012 192012 Life, Physcial, Social Science
## 24190 15-1132 151132 Computer, Math
## 24191 15-1121 151121 Computer, Math
## 24192 11-3021 113021 Management
## 24193 15-1111 151111 Computer, Math
## 24194 15-2041 152041 Computer, Math
## 24195 15-1132 151132 Computer, Math
## 24196 15-1121 151121 Computer, Math
## 24197 15-1131 151131 Computer, Math
## 24198 15-1132 151132 Computer, Math
## 24199 15-1132 151132 Computer, Math
## 24200 15-1199 151199 Computer, Math
## 24201 13-2051 132051 Business, Finance
## 24202 15-1121 151121 Computer, Math
## 24203 15-1142 151142 Computer, Math
## 24204 11-2021 112021 Management
## 24205 15-1199 151199 Computer, Math
## 24206 15-1132 151132 Computer, Math
## 24207 15-1121 151121 Computer, Math
## 24208 15-1199 151199 Computer, Math
## 24209 13-2099 132099 Business, Finance
## 24210 15-1132 151132 Computer, Math
## 24211 19-1029 191029 Life, Physcial, Social Science
## 24212 15-1132 151132 Computer, Math
## 24213 15-1132 151132 Computer, Math
## 24214 15-1133 151133 Computer, Math
## 24215 15-1132 151132 Computer, Math
## 24216 15-1131 151131 Computer, Math
## 24217 15-1132 151132 Computer, Math
## 24218 15-1132 151132 Computer, Math
## 24219 15-1132 151132 Computer, Math
## 24220 15-1121 151121 Computer, Math
## 24221 15-1132 151132 Computer, Math
## 24222 49-3023 493023 Others
## 24223 15-1131 151131 Computer, Math
## 24224 15-1121 151121 Computer, Math
## 24225 15-1132 151132 Computer, Math
## 24226 15-1199 151199 Computer, Math
## 24227 29-9091 299091 Healthcare Practitioner
## 24228 15-1199 151199 Computer, Math
## 24229 15-1132 151132 Computer, Math
## 24230 11-9021 119021 Management
## 24231 15-1132 151132 Computer, Math
## 24232 15-1131 151131 Computer, Math
## 24233 15-1199 151199 Computer, Math
## 24234 15-1133 151133 Computer, Math
## 24235 15-2031 152031 Computer, Math
## 24236 15-2041 152041 Computer, Math
## 24237 15-1132 151132 Computer, Math
## 24238 15-2031 152031 Computer, Math
## 24239 29-1069 291069 Healthcare Practitioner
## 24240 15-1132 151132 Computer, Math
## 24241 15-1131 151131 Computer, Math
## 24242 15-2031 152031 Computer, Math
## 24243 15-1132 151132 Computer, Math
## 24244 17-2141 172141 Architecture, Engineer
## 24245 15-1133 151133 Computer, Math
## 24246 15-1132 151132 Computer, Math
## 24247 15-1141 151141 Computer, Math
## 24248 15-1133 151133 Computer, Math
## 24249 15-1131 151131 Computer, Math
## 24250 15-1132 151132 Computer, Math
## 24251 13-2099 132099 Business, Finance
## 24252 15-1132 151132 Computer, Math
## 24253 11-9199 119199 Management
## 24254 15-2041 152041 Computer, Math
## 24255 13-1111 131111 Business, Finance
## 24256 13-2051 132051 Business, Finance
## 24257 17-2141 172141 Architecture, Engineer
## 24258 15-1133 151133 Computer, Math
## 24259 15-1199 151199 Computer, Math
## 24260 15-2031 152031 Computer, Math
## 24261 15-1132 151132 Computer, Math
## 24262 15-2031 152031 Computer, Math
## 24263 17-2112 172112 Architecture, Engineer
## 24264 15-1132 151132 Computer, Math
## 24265 15-1133 151133 Computer, Math
## 24266 29-9099 299099 Healthcare Practitioner
## 24267 15-1131 151131 Computer, Math
## 24268 15-1121 151121 Computer, Math
## 24269 15-1199 151199 Computer, Math
## 24270 15-1132 151132 Computer, Math
## 24271 17-2071 172071 Architecture, Engineer
## 24272 15-1131 151131 Computer, Math
## 24273 15-1199 151199 Computer, Math
## 24274 15-1132 151132 Computer, Math
## 24275 13-1041 131041 Business, Finance
## 24276 17-2071 172071 Architecture, Engineer
## 24277 13-1023 131023 Business, Finance
## 24278 29-1069 291069 Healthcare Practitioner
## 24279 15-1199 151199 Computer, Math
## 24280 15-1132 151132 Computer, Math
## 24281 15-1131 151131 Computer, Math
## 24282 25-1032 251032 Education, Training
## 24283 15-1133 151133 Computer, Math
## 24284 13-2011 132011 Business, Finance
## 24285 19-1021 191021 Life, Physcial, Social Science
## 24286 15-1199 151199 Computer, Math
## 24287 15-1132 151132 Computer, Math
## 24288 19-1042 191042 Life, Physcial, Social Science
## 24289 15-1132 151132 Computer, Math
## 24290 15-1132 151132 Computer, Math
## 24291 15-1132 151132 Computer, Math
## 24292 17-2141 172141 Architecture, Engineer
## 24293 15-1132 151132 Computer, Math
## 24294 13-2011 132011 Business, Finance
## 24295 27-1024 271024 Media, Design
## 24296 15-1121 151121 Computer, Math
## 24297 15-1132 151132 Computer, Math
## 24298 15-1199 151199 Computer, Math
## 24299 29-1123 291123 Healthcare Practitioner
## 24300 15-1142 151142 Computer, Math
## 24301 15-1132 151132 Computer, Math
## 24302 15-1121 151121 Computer, Math
## 24303 15-1132 151132 Computer, Math
## 24304 17-2199 172199 Architecture, Engineer
## 24305 15-1132 151132 Computer, Math
## 24306 15-1132 151132 Computer, Math
## 24307 15-1121 151121 Computer, Math
## 24308 17-2051 172051 Architecture, Engineer
## 24309 13-1111 131111 Business, Finance
## 24310 15-1199 151199 Computer, Math
## 24311 15-1121 151121 Computer, Math
## 24312 17-2144 172144 Architecture, Engineer
## 24313 15-1132 151132 Computer, Math
## 24314 15-2031 152031 Computer, Math
## 24315 15-1141 151141 Computer, Math
## 24316 13-1071 131071 Business, Finance
## 24317 15-1199 151199 Computer, Math
## 24318 15-1132 151132 Computer, Math
## 24319 25-1123 251123 Education, Training
## 24320 15-1132 151132 Computer, Math
## 24321 15-1132 151132 Computer, Math
## 24322 15-1199 151199 Computer, Math
## 24323 13-2051 132051 Business, Finance
## 24324 15-1132 151132 Computer, Math
## 24325 15-1121 151121 Computer, Math
## 24326 15-1199 151199 Computer, Math
## 24327 15-1132 151132 Computer, Math
## 24328 15-1132 151132 Computer, Math
## 24329 15-1199 151199 Computer, Math
## 24330 11-2021 112021 Management
## 24331 15-1199 151199 Computer, Math
## 24332 15-1199 151199 Computer, Math
## 24333 15-1199 151199 Computer, Math
## 24334 15-2021 152021 Computer, Math
## 24335 29-1199 291199 Healthcare Practitioner
## 24336 15-1131 151131 Computer, Math
## 24337 15-1132 151132 Computer, Math
## 24338 15-1132 151132 Computer, Math
## 24339 15-1132 151132 Computer, Math
## 24340 15-1142 151142 Computer, Math
## 24341 15-1121 151121 Computer, Math
## 24342 13-1081 131081 Business, Finance
## 24343 15-1121 151121 Computer, Math
## 24344 15-1199 151199 Computer, Math
## 24345 15-1142 151142 Computer, Math
## 24346 15-1121 151121 Computer, Math
## 24347 15-2041 152041 Computer, Math
## 24348 15-1199 151199 Computer, Math
## 24349 15-1132 151132 Computer, Math
## 24350 15-1121 151121 Computer, Math
## 24351 15-1199 151199 Computer, Math
## 24352 15-1132 151132 Computer, Math
## 24353 13-2041 132041 Business, Finance
## 24354 13-2099 132099 Business, Finance
## 24355 15-1121 151121 Computer, Math
## 24356 29-1066 291066 Healthcare Practitioner
## 24357 15-1199 151199 Computer, Math
## 24358 15-1132 151132 Computer, Math
## 24359 15-1132 151132 Computer, Math
## 24360 15-1132 151132 Computer, Math
## 24361 15-1132 151132 Computer, Math
## 24362 15-1142 151142 Computer, Math
## 24363 15-1132 151132 Computer, Math
## 24364 15-1132 151132 Computer, Math
## 24365 15-1132 151132 Computer, Math
## 24366 15-1199 151199 Computer, Math
## 24367 15-1132 151132 Computer, Math
## 24368 15-1132 151132 Computer, Math
## 24369 15-1132 151132 Computer, Math
## 24370 15-1121 151121 Computer, Math
## 24371 19-2031 192031 Life, Physcial, Social Science
## 24372 15-1132 151132 Computer, Math
## 24373 15-1132 151132 Computer, Math
## 24374 11-3021 113021 Management
## 24375 15-1121 151121 Computer, Math
## 24376 15-1121 151121 Computer, Math
## 24377 15-1121 151121 Computer, Math
## 24378 15-1121 151121 Computer, Math
## 24379 15-1199 151199 Computer, Math
## 24380 15-1132 151132 Computer, Math
## 24381 15-1199 151199 Computer, Math
## 24382 15-1132 151132 Computer, Math
## 24383 15-1122 151122 Computer, Math
## 24384 15-1121 151121 Computer, Math
## 24385 41-9031 419031 Sales
## 24386 13-2099 132099 Business, Finance
## 24387 15-1132 151132 Computer, Math
## 24388 15-1133 151133 Computer, Math
## 24389 15-1132 151132 Computer, Math
## 24390 15-1132 151132 Computer, Math
## 24391 15-1199 151199 Computer, Math
## 24392 15-1142 151142 Computer, Math
## 24393 15-1132 151132 Computer, Math
## 24394 15-2031 152031 Computer, Math
## 24395 15-1133 151133 Computer, Math
## 24396 17-2071 172071 Architecture, Engineer
## 24397 15-1132 151132 Computer, Math
## 24398 15-1132 151132 Computer, Math
## 24399 19-1042 191042 Life, Physcial, Social Science
## 24400 15-1199 151199 Computer, Math
## 24401 29-2011 292011 Healthcare Practitioner
## 24402 15-1121 151121 Computer, Math
## 24403 15-1133 151133 Computer, Math
## 24404 15-2041 152041 Computer, Math
## 24405 15-1131 151131 Computer, Math
## 24406 15-1132 151132 Computer, Math
## 24407 11-1021 111021 Management
## 24408 15-1121 151121 Computer, Math
## 24409 15-1199 151199 Computer, Math
## 24410 17-2031 172031 Architecture, Engineer
## 24411 15-1132 151132 Computer, Math
## 24412 15-1132 151132 Computer, Math
## 24413 15-1142 151142 Computer, Math
## 24414 15-1141 151141 Computer, Math
## 24415 15-1121 151121 Computer, Math
## 24416 15-1121 151121 Computer, Math
## 24417 29-1069 291069 Healthcare Practitioner
## 24418 15-1199 151199 Computer, Math
## 24419 15-1132 151132 Computer, Math
## 24420 15-1199 151199 Computer, Math
## 24421 25-1194 251194 Education, Training
## 24422 13-1111 131111 Business, Finance
## 24423 15-1152 151152 Computer, Math
## 24424 15-1121 151121 Computer, Math
## 24425 15-1132 151132 Computer, Math
## 24426 15-1121 151121 Computer, Math
## 24427 27-3042 273042 Media, Design
## 24428 15-1131 151131 Computer, Math
## 24429 15-1121 151121 Computer, Math
## 24430 15-1132 151132 Computer, Math
## 24431 15-1121 151121 Computer, Math
## 24432 13-2051 132051 Business, Finance
## 24433 15-1132 151132 Computer, Math
## 24434 15-1131 151131 Computer, Math
## 24435 15-1133 151133 Computer, Math
## 24436 15-1121 151121 Computer, Math
## 24437 15-1132 151132 Computer, Math
## 24438 15-1132 151132 Computer, Math
## 24439 15-1131 151131 Computer, Math
## 24440 15-1132 151132 Computer, Math
## 24441 29-1123 291123 Healthcare Practitioner
## 24442 19-1042 191042 Life, Physcial, Social Science
## 24443 15-1132 151132 Computer, Math
## 24444 15-1132 151132 Computer, Math
## 24445 15-1132 151132 Computer, Math
## 24446 17-2072 172072 Architecture, Engineer
## 24447 15-1121 151121 Computer, Math
## 24448 15-1199 151199 Computer, Math
## 24449 15-1132 151132 Computer, Math
## 24450 13-1111 131111 Business, Finance
## 24451 25-1063 251063 Education, Training
## 24452 15-1199 151199 Computer, Math
## 24453 17-2071 172071 Architecture, Engineer
## 24454 15-1133 151133 Computer, Math
## 24455 13-1199 131199 Business, Finance
## 24456 15-1132 151132 Computer, Math
## 24457 15-1132 151132 Computer, Math
## 24458 19-1022 191022 Life, Physcial, Social Science
## 24459 15-1132 151132 Computer, Math
## 24460 15-1142 151142 Computer, Math
## 24461 25-1071 251071 Education, Training
## 24462 19-4061 194061 Life, Physcial, Social Science
## 24463 15-1121 151121 Computer, Math
## 24464 13-1111 131111 Business, Finance
## 24465 17-2141 172141 Architecture, Engineer
## 24466 15-1132 151132 Computer, Math
## 24467 15-1132 151132 Computer, Math
## 24468 17-2141 172141 Architecture, Engineer
## 24469 17-2141 172141 Architecture, Engineer
## 24470 15-1132 151132 Computer, Math
## 24471 15-1132 151132 Computer, Math
## 24472 15-1121 151121 Computer, Math
## 24473 13-2011 132011 Business, Finance
## 24474 15-1121 151121 Computer, Math
## 24475 27-1021 271021 Media, Design
## 24476 15-1131 151131 Computer, Math
## 24477 15-1132 151132 Computer, Math
## 24478 15-1199 151199 Computer, Math
## 24479 15-1121 151121 Computer, Math
## 24480 15-1132 151132 Computer, Math
## 24481 15-1121 151121 Computer, Math
## 24482 15-1121 151121 Computer, Math
## 24483 15-1121 151121 Computer, Math
## 24484 17-2141 172141 Architecture, Engineer
## 24485 15-1133 151133 Computer, Math
## 24486 15-1132 151132 Computer, Math
## 24487 15-2031 152031 Computer, Math
## 24488 15-1132 151132 Computer, Math
## 24489 25-1125 251125 Education, Training
## 24490 15-1134 151134 Computer, Math
## 24491 13-1111 131111 Business, Finance
## 24492 15-1121 151121 Computer, Math
## 24493 15-1121 151121 Computer, Math
## 24494 15-1142 151142 Computer, Math
## 24495 15-1132 151132 Computer, Math
## 24496 19-1042 191042 Life, Physcial, Social Science
## 24497 15-1132 151132 Computer, Math
## 24498 15-1121 151121 Computer, Math
## 24499 13-2099 132099 Business, Finance
## 24500 15-1132 151132 Computer, Math
## 24501 15-1132 151132 Computer, Math
## 24502 29-9091 299091 Healthcare Practitioner
## 24503 15-1199 151199 Computer, Math
## 24504 13-2099 132099 Business, Finance
## 24505 15-1133 151133 Computer, Math
## 24506 15-1132 151132 Computer, Math
## 24507 13-2051 132051 Business, Finance
## 24508 15-1132 151132 Computer, Math
## 24509 15-1132 151132 Computer, Math
## 24510 15-1132 151132 Computer, Math
## 24511 15-1132 151132 Computer, Math
## 24512 13-2011 132011 Business, Finance
## 24513 15-2021 152021 Computer, Math
## 24514 17-2071 172071 Architecture, Engineer
## 24515 15-1121 151121 Computer, Math
## 24516 15-1132 151132 Computer, Math
## 24517 13-2051 132051 Business, Finance
## 24518 15-1121 151121 Computer, Math
## 24519 15-1132 151132 Computer, Math
## 24520 15-1199 151199 Computer, Math
## 24521 15-1199 151199 Computer, Math
## 24522 15-1131 151131 Computer, Math
## 24523 15-1199 151199 Computer, Math
## 24524 15-1121 151121 Computer, Math
## 24525 15-1132 151132 Computer, Math
## 24526 15-1132 151132 Computer, Math
## 24527 15-1132 151132 Computer, Math
## 24528 15-2031 152031 Computer, Math
## 24529 15-1132 151132 Computer, Math
## 24530 15-1121 151121 Computer, Math
## 24531 15-1199 151199 Computer, Math
## 24532 15-2031 152031 Computer, Math
## 24533 15-1132 151132 Computer, Math
## 24534 15-1132 151132 Computer, Math
## 24535 15-1132 151132 Computer, Math
## 24536 15-1199 151199 Computer, Math
## 24537 15-1132 151132 Computer, Math
## 24538 15-1199 151199 Computer, Math
## 24539 15-1132 151132 Computer, Math
## 24540 15-1132 151132 Computer, Math
## 24541 15-1132 151132 Computer, Math
## 24542 17-2031 172031 Architecture, Engineer
## 24543 15-1132 151132 Computer, Math
## 24544 13-1161 131161 Business, Finance
## 24545 15-1132 151132 Computer, Math
## 24546 15-1131 151131 Computer, Math
## 24547 17-2141 172141 Architecture, Engineer
## 24548 19-4061 194061 Life, Physcial, Social Science
## 24549 13-2011 132011 Business, Finance
## 24550 15-2031 152031 Computer, Math
## 24551 17-2131 172131 Architecture, Engineer
## 24552 15-1132 151132 Computer, Math
## 24553 15-1132 151132 Computer, Math
## 24554 15-1132 151132 Computer, Math
## 24555 15-1132 151132 Computer, Math
## 24556 15-1132 151132 Computer, Math
## 24557 15-1131 151131 Computer, Math
## 24558 15-1132 151132 Computer, Math
## 24559 15-1199 151199 Computer, Math
## 24560 15-1132 151132 Computer, Math
## 24561 15-2041 152041 Computer, Math
## 24562 15-1121 151121 Computer, Math
## 24563 25-1054 251054 Education, Training
## 24564 15-1199 151199 Computer, Math
## 24565 15-1121 151121 Computer, Math
## 24566 19-3094 193094 Life, Physcial, Social Science
## 24567 13-2011 132011 Business, Finance
## 24568 15-1142 151142 Computer, Math
## 24569 15-1199 151199 Computer, Math
## 24570 15-1121 151121 Computer, Math
## 24571 15-1132 151132 Computer, Math
## 24572 17-2051 172051 Architecture, Engineer
## 24573 13-1161 131161 Business, Finance
## 24574 15-1132 151132 Computer, Math
## 24575 15-1132 151132 Computer, Math
## 24576 15-1199 151199 Computer, Math
## 24577 15-1132 151132 Computer, Math
## 24578 15-1132 151132 Computer, Math
## 24579 27-1014 271014 Media, Design
## 24580 15-1132 151132 Computer, Math
## 24581 21-1099 211099 Social Service
## 24582 15-1121 151121 Computer, Math
## 24583 17-2041 172041 Architecture, Engineer
## 24584 15-1199 151199 Computer, Math
## 24585 15-1121 151121 Computer, Math
## 24586 15-2031 152031 Computer, Math
## 24587 15-2031 152031 Computer, Math
## 24588 29-1063 291063 Healthcare Practitioner
## 24589 15-1133 151133 Computer, Math
## 24590 17-2071 172071 Architecture, Engineer
## 24591 13-1041 131041 Business, Finance
## 24592 15-1132 151132 Computer, Math
## 24593 17-2141 172141 Architecture, Engineer
## 24594 15-1121 151121 Computer, Math
## 24595 15-1132 151132 Computer, Math
## 24596 15-1121 151121 Computer, Math
## 24597 15-1121 151121 Computer, Math
## 24598 15-1122 151122 Computer, Math
## 24599 15-1132 151132 Computer, Math
## 24600 19-1029 191029 Life, Physcial, Social Science
## 24601 15-1132 151132 Computer, Math
## 24602 15-1141 151141 Computer, Math
## 24603 15-1132 151132 Computer, Math
## 24604 13-1081 131081 Business, Finance
## 24605 15-1121 151121 Computer, Math
## 24606 19-1012 191012 Life, Physcial, Social Science
## 24607 15-2031 152031 Computer, Math
## 24608 15-1142 151142 Computer, Math
## 24609 13-2011 132011 Business, Finance
## 24610 15-1132 151132 Computer, Math
## 24611 15-1131 151131 Computer, Math
## 24612 15-1134 151134 Computer, Math
## 24613 15-1199 151199 Computer, Math
## 24614 15-1132 151132 Computer, Math
## 24615 15-1199 151199 Computer, Math
## 24616 15-1132 151132 Computer, Math
## 24617 15-2041 152041 Computer, Math
## 24618 15-1199 151199 Computer, Math
## 24619 15-1199 151199 Computer, Math
## 24620 15-1132 151132 Computer, Math
## 24621 15-1132 151132 Computer, Math
## 24622 15-1141 151141 Computer, Math
## 24623 19-2031 192031 Life, Physcial, Social Science
## 24624 15-1199 151199 Computer, Math
## 24625 15-1132 151132 Computer, Math
## 24626 15-1132 151132 Computer, Math
## 24627 11-3031 113031 Management
## 24628 15-1132 151132 Computer, Math
## 24629 15-1132 151132 Computer, Math
## 24630 13-1111 131111 Business, Finance
## 24631 27-3031 273031 Media, Design
## 24632 15-1133 151133 Computer, Math
## 24633 15-2041 152041 Computer, Math
## 24634 15-1122 151122 Computer, Math
## 24635 15-1132 151132 Computer, Math
## 24636 15-1199 151199 Computer, Math
## 24637 15-1131 151131 Computer, Math
## 24638 15-1133 151133 Computer, Math
## 24639 13-1041 131041 Business, Finance
## 24640 15-1132 151132 Computer, Math
## 24641 15-1132 151132 Computer, Math
## 24642 17-2031 172031 Architecture, Engineer
## 24643 29-1069 291069 Healthcare Practitioner
## 24644 13-2051 132051 Business, Finance
## 24645 15-1199 151199 Computer, Math
## 24646 15-1122 151122 Computer, Math
## 24647 15-1121 151121 Computer, Math
## 24648 15-1141 151141 Computer, Math
## 24649 19-1021 191021 Life, Physcial, Social Science
## 24650 15-1132 151132 Computer, Math
## 24651 15-1133 151133 Computer, Math
## 24652 15-1132 151132 Computer, Math
## 24653 15-1121 151121 Computer, Math
## 24654 15-1132 151132 Computer, Math
## 24655 17-2141 172141 Architecture, Engineer
## 24656 15-1121 151121 Computer, Math
## 24657 15-1133 151133 Computer, Math
## 24658 15-1132 151132 Computer, Math
## 24659 15-1143 151143 Computer, Math
## 24660 17-2141 172141 Architecture, Engineer
## 24661 15-1121 151121 Computer, Math
## 24662 17-2141 172141 Architecture, Engineer
## 24663 25-1071 251071 Education, Training
## 24664 41-9031 419031 Sales
## 24665 29-1069 291069 Healthcare Practitioner
## 24666 15-1199 151199 Computer, Math
## 24667 15-1132 151132 Computer, Math
## 24668 15-1132 151132 Computer, Math
## 24669 15-1133 151133 Computer, Math
## 24670 25-1071 251071 Education, Training
## 24671 13-1161 131161 Business, Finance
## 24672 17-2072 172072 Architecture, Engineer
## 24673 15-1121 151121 Computer, Math
## 24674 15-1199 151199 Computer, Math
## 24675 15-1131 151131 Computer, Math
## 24676 15-1132 151132 Computer, Math
## 24677 15-1121 151121 Computer, Math
## 24678 15-1121 151121 Computer, Math
## 24679 15-1199 151199 Computer, Math
## 24680 15-1134 151134 Computer, Math
## 24681 15-1142 151142 Computer, Math
## 24682 15-1121 151121 Computer, Math
## 24683 29-1123 291123 Healthcare Practitioner
## 24684 17-2131 172131 Architecture, Engineer
## 24685 15-1132 151132 Computer, Math
## 24686 13-1111 131111 Business, Finance
## 24687 15-1199 151199 Computer, Math
## 24688 15-1199 151199 Computer, Math
## 24689 15-1132 151132 Computer, Math
## 24690 15-2031 152031 Computer, Math
## 24691 15-1121 151121 Computer, Math
## 24692 15-1133 151133 Computer, Math
## 24693 15-1199 151199 Computer, Math
## 24694 15-1133 151133 Computer, Math
## 24695 11-2022 112022 Management
## 24696 15-1133 151133 Computer, Math
## 24697 15-1132 151132 Computer, Math
## 24698 15-2031 152031 Computer, Math
## 24699 17-2041 172041 Architecture, Engineer
## 24700 25-2052 252052 Education, Training
## 24701 13-2051 132051 Business, Finance
## 24702 15-1199 151199 Computer, Math
## 24703 15-1132 151132 Computer, Math
## 24704 15-1132 151132 Computer, Math
## 24705 15-1132 151132 Computer, Math
## 24706 15-1121 151121 Computer, Math
## 24707 15-1121 151121 Computer, Math
## 24708 15-1199 151199 Computer, Math
## 24709 15-1121 151121 Computer, Math
## 24710 15-1132 151132 Computer, Math
## 24711 15-1121 151121 Computer, Math
## 24712 15-1132 151132 Computer, Math
## 24713 15-1132 151132 Computer, Math
## 24714 15-1132 151132 Computer, Math
## 24715 15-1132 151132 Computer, Math
## 24716 15-1132 151132 Computer, Math
## 24717 15-1131 151131 Computer, Math
## 24718 17-2061 172061 Architecture, Engineer
## 24719 15-1152 151152 Computer, Math
## 24720 15-1132 151132 Computer, Math
## 24721 15-1132 151132 Computer, Math
## 24722 29-1031 291031 Healthcare Practitioner
## 24723 11-9051 119051 Management
## 24724 17-2071 172071 Architecture, Engineer
## 24725 15-1132 151132 Computer, Math
## 24726 15-1131 151131 Computer, Math
## 24727 15-1132 151132 Computer, Math
## 24728 15-1121 151121 Computer, Math
## 24729 15-1133 151133 Computer, Math
## 24730 15-1121 151121 Computer, Math
## 24731 15-1122 151122 Computer, Math
## 24732 15-1199 151199 Computer, Math
## 24733 17-2051 172051 Architecture, Engineer
## 24734 15-1132 151132 Computer, Math
## 24735 13-2011 132011 Business, Finance
## 24736 17-2072 172072 Architecture, Engineer
## 24737 17-2199 172199 Architecture, Engineer
## 24738 15-2041 152041 Computer, Math
## 24739 13-1111 131111 Business, Finance
## 24740 15-1133 151133 Computer, Math
## 24741 15-1131 151131 Computer, Math
## 24742 15-1133 151133 Computer, Math
## 24743 19-1042 191042 Life, Physcial, Social Science
## 24744 15-1121 151121 Computer, Math
## 24745 15-1121 151121 Computer, Math
## 24746 15-1132 151132 Computer, Math
## 24747 15-1131 151131 Computer, Math
## 24748 13-2051 132051 Business, Finance
## 24749 15-1132 151132 Computer, Math
## 24750 15-1133 151133 Computer, Math
## 24751 15-1121 151121 Computer, Math
## 24752 15-1199 151199 Computer, Math
## 24753 19-2099 192099 Life, Physcial, Social Science
## 24754 19-1021 191021 Life, Physcial, Social Science
## 24755 15-1199 151199 Computer, Math
## 24756 15-1131 151131 Computer, Math
## 24757 15-1199 151199 Computer, Math
## 24758 15-1121 151121 Computer, Math
## 24759 15-1199 151199 Computer, Math
## 24760 15-1121 151121 Computer, Math
## 24761 15-2031 152031 Computer, Math
## 24762 15-1132 151132 Computer, Math
## 24763 15-1132 151132 Computer, Math
## 24764 25-2021 252021 Education, Training
## 24765 15-2031 152031 Computer, Math
## 24766 15-1132 151132 Computer, Math
## 24767 15-1132 151132 Computer, Math
## 24768 15-1132 151132 Computer, Math
## 24769 15-1199 151199 Computer, Math
## 24770 15-1122 151122 Computer, Math
## 24771 15-1199 151199 Computer, Math
## 24772 15-1132 151132 Computer, Math
## 24773 15-1132 151132 Computer, Math
## 24774 15-1132 151132 Computer, Math
## 24775 15-1142 151142 Computer, Math
## 24776 15-1132 151132 Computer, Math
## 24777 15-1132 151132 Computer, Math
## 24778 15-1121 151121 Computer, Math
## 24779 25-2021 252021 Education, Training
## 24780 15-1132 151132 Computer, Math
## 24781 19-1013 191013 Life, Physcial, Social Science
## 24782 15-1121 151121 Computer, Math
## 24783 15-1132 151132 Computer, Math
## 24784 23-1011 231011 Legal
## 24785 15-1132 151132 Computer, Math
## 24786 15-1121 151121 Computer, Math
## 24787 13-1141 131141 Business, Finance
## 24788 15-1132 151132 Computer, Math
## 24789 15-1132 151132 Computer, Math
## 24790 15-1132 151132 Computer, Math
## 24791 27-2041 272041 Media, Design
## 24792 15-1131 151131 Computer, Math
## 24793 13-1111 131111 Business, Finance
## 24794 15-1132 151132 Computer, Math
## 24795 15-1132 151132 Computer, Math
## 24796 15-1132 151132 Computer, Math
## 24797 15-2041 152041 Computer, Math
## 24798 13-2011 132011 Business, Finance
## 24799 15-1199 151199 Computer, Math
## 24800 17-2072 172072 Architecture, Engineer
## 24801 15-1133 151133 Computer, Math
## 24802 15-1132 151132 Computer, Math
## 24803 17-2061 172061 Architecture, Engineer
## 24804 13-1111 131111 Business, Finance
## 24805 15-1121 151121 Computer, Math
## 24806 11-3021 113021 Management
## 24807 15-1199 151199 Computer, Math
## 24808 15-1132 151132 Computer, Math
## 24809 15-1131 151131 Computer, Math
## 24810 15-1199 151199 Computer, Math
## 24811 15-1132 151132 Computer, Math
## 24812 13-2051 132051 Business, Finance
## 24813 15-1122 151122 Computer, Math
## 24814 15-1121 151121 Computer, Math
## 24815 15-1199 151199 Computer, Math
## 24816 15-1121 151121 Computer, Math
## 24817 15-1199 151199 Computer, Math
## 24818 15-2041 152041 Computer, Math
## 24819 15-1132 151132 Computer, Math
## 24820 15-1121 151121 Computer, Math
## 24821 15-1132 151132 Computer, Math
## 24822 15-1199 151199 Computer, Math
## 24823 19-1021 191021 Life, Physcial, Social Science
## 24824 13-1081 131081 Business, Finance
## 24825 13-2061 132061 Business, Finance
## 24826 15-1132 151132 Computer, Math
## 24827 15-1132 151132 Computer, Math
## 24828 15-1132 151132 Computer, Math
## 24829 15-1199 151199 Computer, Math
## 24830 15-1133 151133 Computer, Math
## 24831 11-9111 119111 Management
## 24832 15-1131 151131 Computer, Math
## 24833 15-1132 151132 Computer, Math
## 24834 15-1121 151121 Computer, Math
## 24835 15-1132 151132 Computer, Math
## 24836 15-1121 151121 Computer, Math
## 24837 13-1111 131111 Business, Finance
## 24838 15-1121 151121 Computer, Math
## 24839 15-1133 151133 Computer, Math
## 24840 29-1021 291021 Healthcare Practitioner
## 24841 15-1132 151132 Computer, Math
## 24842 15-1133 151133 Computer, Math
## 24843 15-1133 151133 Computer, Math
## 24844 15-1199 151199 Computer, Math
## 24845 27-1021 271021 Media, Design
## 24846 17-2141 172141 Architecture, Engineer
## 24847 15-1121 151121 Computer, Math
## 24848 15-2041 152041 Computer, Math
## 24849 15-1121 151121 Computer, Math
## 24850 27-3041 273041 Media, Design
## 24851 15-1199 151199 Computer, Math
## 24852 13-1111 131111 Business, Finance
## 24853 15-1132 151132 Computer, Math
## 24854 15-1132 151132 Computer, Math
## 24855 15-1133 151133 Computer, Math
## 24856 15-1199 151199 Computer, Math
## 24857 15-1199 151199 Computer, Math
## 24858 15-1141 151141 Computer, Math
## 24859 15-1132 151132 Computer, Math
## 24860 15-1132 151132 Computer, Math
## 24861 15-2031 152031 Computer, Math
## 24862 15-1199 151199 Computer, Math
## 24863 15-1132 151132 Computer, Math
## 24864 15-1121 151121 Computer, Math
## 24865 15-1122 151122 Computer, Math
## 24866 15-1133 151133 Computer, Math
## 24867 15-1121 151121 Computer, Math
## 24868 13-1161 131161 Business, Finance
## 24869 15-1132 151132 Computer, Math
## 24870 15-1199 151199 Computer, Math
## 24871 13-1161 131161 Business, Finance
## 24872 15-1199 151199 Computer, Math
## 24873 29-1123 291123 Healthcare Practitioner
## 24874 15-1132 151132 Computer, Math
## 24875 15-1141 151141 Computer, Math
## 24876 13-1111 131111 Business, Finance
## 24877 17-2199 172199 Architecture, Engineer
## 24878 15-1132 151132 Computer, Math
## 24879 15-1141 151141 Computer, Math
## 24880 15-1132 151132 Computer, Math
## 24881 11-1021 111021 Management
## 24882 15-1132 151132 Computer, Math
## 24883 15-1199 151199 Computer, Math
## 24884 19-1099 191099 Life, Physcial, Social Science
## 24885 15-1121 151121 Computer, Math
## 24886 17-2072 172072 Architecture, Engineer
## 24887 15-1199 151199 Computer, Math
## 24888 15-1142 151142 Computer, Math
## 24889 15-1132 151132 Computer, Math
## 24890 15-1132 151132 Computer, Math
## 24891 15-1152 151152 Computer, Math
## 24892 13-1161 131161 Business, Finance
## 24893 15-1132 151132 Computer, Math
## 24894 29-1021 291021 Healthcare Practitioner
## 24895 15-1121 151121 Computer, Math
## 24896 19-1042 191042 Life, Physcial, Social Science
## 24897 15-1132 151132 Computer, Math
## 24898 15-1199 151199 Computer, Math
## 24899 15-1131 151131 Computer, Math
## 24900 15-1121 151121 Computer, Math
## 24901 15-1131 151131 Computer, Math
## 24902 15-1133 151133 Computer, Math
## 24903 15-1132 151132 Computer, Math
## 24904 13-2051 132051 Business, Finance
## 24905 15-1199 151199 Computer, Math
## 24906 41-9031 419031 Sales
## 24907 15-1132 151132 Computer, Math
## 24908 15-1132 151132 Computer, Math
## 24909 15-1131 151131 Computer, Math
## 24910 15-1121 151121 Computer, Math
## 24911 15-1199 151199 Computer, Math
## 24912 15-1132 151132 Computer, Math
## 24913 19-1021 191021 Life, Physcial, Social Science
## 24914 15-1142 151142 Computer, Math
## 24915 15-1132 151132 Computer, Math
## 24916 15-1121 151121 Computer, Math
## 24917 13-2099 132099 Business, Finance
## 24918 15-1121 151121 Computer, Math
## 24919 17-2071 172071 Architecture, Engineer
## 24920 15-1121 151121 Computer, Math
## 24921 15-1199 151199 Computer, Math
## 24922 11-2021 112021 Management
## 24923 15-1132 151132 Computer, Math
## 24924 15-1132 151132 Computer, Math
## 24925 15-1199 151199 Computer, Math
## 24926 15-1132 151132 Computer, Math
## 24927 15-1199 151199 Computer, Math
## 24928 17-2131 172131 Architecture, Engineer
## 24929 15-1132 151132 Computer, Math
## 24930 15-1121 151121 Computer, Math
## 24931 15-1132 151132 Computer, Math
## 24932 15-1199 151199 Computer, Math
## 24933 15-1132 151132 Computer, Math
## 24934 29-1063 291063 Healthcare Practitioner
## 24935 15-1199 151199 Computer, Math
## 24936 15-1132 151132 Computer, Math
## 24937 17-1011 171011 Architecture, Engineer
## 24938 15-1121 151121 Computer, Math
## 24939 15-1132 151132 Computer, Math
## 24940 11-3021 113021 Management
## 24941 15-1132 151132 Computer, Math
## 24942 15-1131 151131 Computer, Math
## 24943 15-1199 151199 Computer, Math
## 24944 15-1132 151132 Computer, Math
## 24945 15-1133 151133 Computer, Math
## 24946 15-1133 151133 Computer, Math
## 24947 15-1111 151111 Computer, Math
## 24948 15-1132 151132 Computer, Math
## 24949 15-1199 151199 Computer, Math
## 24950 25-1071 251071 Education, Training
## 24951 11-3021 113021 Management
## 24952 15-1131 151131 Computer, Math
## 24953 29-1069 291069 Healthcare Practitioner
## 24954 15-1133 151133 Computer, Math
## 24955 17-2199 172199 Architecture, Engineer
## 24956 19-1042 191042 Life, Physcial, Social Science
## 24957 11-3021 113021 Management
## 24958 39-9032 399032 Others
## 24959 13-1161 131161 Business, Finance
## 24960 17-2031 172031 Architecture, Engineer
## 24961 15-1132 151132 Computer, Math
## 24962 15-1199 151199 Computer, Math
## 24963 17-2141 172141 Architecture, Engineer
## 24964 15-1121 151121 Computer, Math
## 24965 15-1121 151121 Computer, Math
## 24966 15-1199 151199 Computer, Math
## 24967 15-1111 151111 Computer, Math
## 24968 15-1132 151132 Computer, Math
## 24969 11-9021 119021 Management
## 24970 15-1121 151121 Computer, Math
## 24971 15-1121 151121 Computer, Math
## 24972 15-1199 151199 Computer, Math
## 24973 13-2099 132099 Business, Finance
## 24974 15-1133 151133 Computer, Math
## 24975 15-1132 151132 Computer, Math
## 24976 15-1131 151131 Computer, Math
## 24977 15-1132 151132 Computer, Math
## 24978 11-9121 119121 Management
## 24979 13-2053 132053 Business, Finance
## 24980 15-1121 151121 Computer, Math
## 24981 17-2041 172041 Architecture, Engineer
## 24982 15-1199 151199 Computer, Math
## 24983 15-1122 151122 Computer, Math
## 24984 15-1132 151132 Computer, Math
## 24985 15-1199 151199 Computer, Math
## 24986 41-9031 419031 Sales
## 24987 15-1199 151199 Computer, Math
## 24988 15-1131 151131 Computer, Math
## 24989 15-1122 151122 Computer, Math
## 24990 15-1111 151111 Computer, Math
## 24991 15-1132 151132 Computer, Math
## 24992 17-2199 172199 Architecture, Engineer
## 24993 15-1132 151132 Computer, Math
## 24994 15-1132 151132 Computer, Math
## 24995 15-1131 151131 Computer, Math
## 24996 17-2141 172141 Architecture, Engineer
## 24997 15-1132 151132 Computer, Math
## 24998 15-1121 151121 Computer, Math
## 24999 15-1132 151132 Computer, Math
## 25000 15-1121 151121 Computer, Math
## 25001 15-1134 151134 Computer, Math
## 25002 15-1132 151132 Computer, Math
## 25003 13-1041 131041 Business, Finance
## 25004 19-1021 191021 Life, Physcial, Social Science
## 25005 15-1121 151121 Computer, Math
## 25006 19-3011 193011 Life, Physcial, Social Science
## 25007 15-1121 151121 Computer, Math
## 25008 15-1132 151132 Computer, Math
## 25009 15-1132 151132 Computer, Math
## 25010 19-2021 192021 Life, Physcial, Social Science
## 25011 15-1132 151132 Computer, Math
## 25012 15-1199 151199 Computer, Math
## 25013 13-2011 132011 Business, Finance
## 25014 15-1199 151199 Computer, Math
## 25015 13-2011 132011 Business, Finance
## 25016 15-1132 151132 Computer, Math
## 25017 15-1132 151132 Computer, Math
## 25018 15-1199 151199 Computer, Math
## 25019 15-1132 151132 Computer, Math
## 25020 17-2141 172141 Architecture, Engineer
## 25021 15-1132 151132 Computer, Math
## 25022 15-1121 151121 Computer, Math
## 25023 15-1121 151121 Computer, Math
## 25024 15-1131 151131 Computer, Math
## 25025 15-1121 151121 Computer, Math
## 25026 15-1132 151132 Computer, Math
## 25027 15-1132 151132 Computer, Math
## 25028 15-1131 151131 Computer, Math
## 25029 15-1132 151132 Computer, Math
## 25030 19-4021 194021 Life, Physcial, Social Science
## 25031 15-1199 151199 Computer, Math
## 25032 15-1132 151132 Computer, Math
## 25033 13-1111 131111 Business, Finance
## 25034 15-1132 151132 Computer, Math
## 25035 15-1132 151132 Computer, Math
## 25036 15-1132 151132 Computer, Math
## 25037 15-1121 151121 Computer, Math
## 25038 15-1131 151131 Computer, Math
## 25039 15-1121 151121 Computer, Math
## 25040 15-1132 151132 Computer, Math
## 25041 15-1121 151121 Computer, Math
## 25042 13-2011 132011 Business, Finance
## 25043 15-1131 151131 Computer, Math
## 25044 11-3071 113071 Management
## 25045 15-1133 151133 Computer, Math
## 25046 15-1141 151141 Computer, Math
## 25047 15-1132 151132 Computer, Math
## 25048 15-1131 151131 Computer, Math
## 25049 15-1121 151121 Computer, Math
## 25050 15-1133 151133 Computer, Math
## 25051 15-1131 151131 Computer, Math
## 25052 15-1122 151122 Computer, Math
## 25053 15-1132 151132 Computer, Math
## 25054 15-1121 151121 Computer, Math
## 25055 23-1012 231012 Legal
## 25056 15-1132 151132 Computer, Math
## 25057 15-1132 151132 Computer, Math
## 25058 15-1132 151132 Computer, Math
## 25059 15-1132 151132 Computer, Math
## 25060 15-1121 151121 Computer, Math
## 25061 15-1199 151199 Computer, Math
## 25062 19-1021 191021 Life, Physcial, Social Science
## 25063 15-1132 151132 Computer, Math
## 25064 15-1132 151132 Computer, Math
## 25065 17-2131 172131 Architecture, Engineer
## 25066 13-1111 131111 Business, Finance
## 25067 15-1132 151132 Computer, Math
## 25068 17-2072 172072 Architecture, Engineer
## 25069 19-2031 192031 Life, Physcial, Social Science
## 25070 15-1053 151053 Computer, Math
## 25071 15-1132 151132 Computer, Math
## 25072 19-2031 192031 Life, Physcial, Social Science
## 25073 13-2011 132011 Business, Finance
## 25074 25-1032 251032 Education, Training
## 25075 15-1142 151142 Computer, Math
## 25076 15-1199 151199 Computer, Math
## 25077 15-1141 151141 Computer, Math
## 25078 15-1131 151131 Computer, Math
## 25079 15-1132 151132 Computer, Math
## 25080 15-1131 151131 Computer, Math
## 25081 15-1132 151132 Computer, Math
## 25082 15-1121 151121 Computer, Math
## 25083 15-1132 151132 Computer, Math
## 25084 15-1199 151199 Computer, Math
## 25085 15-1132 151132 Computer, Math
## 25086 15-1132 151132 Computer, Math
## 25087 15-1132 151132 Computer, Math
## 25088 15-1132 151132 Computer, Math
## 25089 17-2141 172141 Architecture, Engineer
## 25090 13-1081 131081 Business, Finance
## 25091 15-1199 151199 Computer, Math
## 25092 25-2031 252031 Education, Training
## 25093 13-1111 131111 Business, Finance
## 25094 15-1132 151132 Computer, Math
## 25095 17-2041 172041 Architecture, Engineer
## 25096 15-1133 151133 Computer, Math
## 25097 15-1132 151132 Computer, Math
## 25098 15-1132 151132 Computer, Math
## 25099 15-1131 151131 Computer, Math
## 25100 15-1199 151199 Computer, Math
## 25101 15-1111 151111 Computer, Math
## 25102 13-1111 131111 Business, Finance
## 25103 15-1132 151132 Computer, Math
## 25104 15-1132 151132 Computer, Math
## 25105 15-1199 151199 Computer, Math
## 25106 15-1132 151132 Computer, Math
## 25107 13-2031 132031 Business, Finance
## 25108 15-1132 151132 Computer, Math
## 25109 15-1132 151132 Computer, Math
## 25110 15-1132 151132 Computer, Math
## 25111 27-1014 271014 Media, Design
## 25112 25-2021 252021 Education, Training
## 25113 15-1131 151131 Computer, Math
## 25114 17-2061 172061 Architecture, Engineer
## 25115 15-1121 151121 Computer, Math
## 25116 15-1132 151132 Computer, Math
## 25117 15-1133 151133 Computer, Math
## 25118 15-1199 151199 Computer, Math
## 25119 15-1142 151142 Computer, Math
## 25120 15-1132 151132 Computer, Math
## 25121 15-1121 151121 Computer, Math
## 25122 15-1141 151141 Computer, Math
## 25123 15-1132 151132 Computer, Math
## 25124 15-1142 151142 Computer, Math
## 25125 15-1121 151121 Computer, Math
## 25126 15-1141 151141 Computer, Math
## 25127 15-1121 151121 Computer, Math
## 25128 15-1132 151132 Computer, Math
## 25129 15-1121 151121 Computer, Math
## 25130 15-1132 151132 Computer, Math
## 25131 15-2031 152031 Computer, Math
## 25132 15-1132 151132 Computer, Math
## 25133 29-2091 292091 Healthcare Practitioner
## 25134 15-1199 151199 Computer, Math
## 25135 15-1121 151121 Computer, Math
## 25136 15-1132 151132 Computer, Math
## 25137 11-9021 119021 Management
## 25138 15-1121 151121 Computer, Math
## 25139 15-1132 151132 Computer, Math
## 25140 15-1121 151121 Computer, Math
## 25141 15-1131 151131 Computer, Math
## 25142 19-3039 193039 Life, Physcial, Social Science
## 25143 15-1132 151132 Computer, Math
## 25144 15-1142 151142 Computer, Math
## 25145 15-1122 151122 Computer, Math
## 25146 15-1132 151132 Computer, Math
## 25147 15-1132 151132 Computer, Math
## 25148 15-1132 151132 Computer, Math
## 25149 15-2031 152031 Computer, Math
## 25150 15-1131 151131 Computer, Math
## 25151 15-1121 151121 Computer, Math
## 25152 15-1133 151133 Computer, Math
## 25153 13-1161 131161 Business, Finance
## 25154 15-1122 151122 Computer, Math
## 25155 15-1111 151111 Computer, Math
## 25156 15-1132 151132 Computer, Math
## 25157 11-3071 113071 Management
## 25158 13-1161 131161 Business, Finance
## 25159 19-1042 191042 Life, Physcial, Social Science
## 25160 17-2072 172072 Architecture, Engineer
## 25161 15-1133 151133 Computer, Math
## 25162 15-1133 151133 Computer, Math
## 25163 15-1132 151132 Computer, Math
## 25164 15-1199 151199 Computer, Math
## 25165 15-1141 151141 Computer, Math
## 25166 13-1081 131081 Business, Finance
## 25167 19-4021 194021 Life, Physcial, Social Science
## 25168 13-1111 131111 Business, Finance
## 25169 15-1121 151121 Computer, Math
## 25170 13-2072 132072 Business, Finance
## 25171 15-1121 151121 Computer, Math
## 25172 13-1081 131081 Business, Finance
## 25173 17-2141 172141 Architecture, Engineer
## 25174 15-1121 151121 Computer, Math
## 25175 15-1132 151132 Computer, Math
## 25176 15-1121 151121 Computer, Math
## 25177 15-1132 151132 Computer, Math
## 25178 15-1199 151199 Computer, Math
## 25179 13-1161 131161 Business, Finance
## 25180 25-1022 251022 Education, Training
## 25181 15-1199 151199 Computer, Math
## 25182 15-1121 151121 Computer, Math
## 25183 15-1132 151132 Computer, Math
## 25184 15-1199 151199 Computer, Math
## 25185 15-1199 151199 Computer, Math
## 25186 15-1132 151132 Computer, Math
## 25187 15-1121 151121 Computer, Math
## 25188 15-1132 151132 Computer, Math
## 25189 13-1121 131121 Business, Finance
## 25190 15-1121 151121 Computer, Math
## 25191 15-1199 151199 Computer, Math
## 25192 15-1121 151121 Computer, Math
## 25193 15-1131 151131 Computer, Math
## 25194 15-1199 151199 Computer, Math
## 25195 15-1133 151133 Computer, Math
## 25196 15-1199 151199 Computer, Math
## 25197 15-1132 151132 Computer, Math
## 25198 15-2031 152031 Computer, Math
## 25199 19-1029 191029 Life, Physcial, Social Science
## 25200 15-1199 151199 Computer, Math
## 25201 17-2141 172141 Architecture, Engineer
## 25202 15-1121 151121 Computer, Math
## 25203 13-2011 132011 Business, Finance
## 25204 15-1132 151132 Computer, Math
## 25205 15-1199 151199 Computer, Math
## 25206 15-1199 151199 Computer, Math
## 25207 15-1121 151121 Computer, Math
## 25208 15-1199 151199 Computer, Math
## 25209 15-1132 151132 Computer, Math
## 25210 15-1121 151121 Computer, Math
## 25211 15-1141 151141 Computer, Math
## 25212 15-1132 151132 Computer, Math
## 25213 13-2011 132011 Business, Finance
## 25214 15-1199 151199 Computer, Math
## 25215 15-1132 151132 Computer, Math
## 25216 15-1132 151132 Computer, Math
## 25217 15-1132 151132 Computer, Math
## 25218 15-1199 151199 Computer, Math
## 25219 15-1199 151199 Computer, Math
## 25220 19-1042 191042 Life, Physcial, Social Science
## 25221 15-1132 151132 Computer, Math
## 25222 15-1132 151132 Computer, Math
## 25223 15-1199 151199 Computer, Math
## 25224 15-2031 152031 Computer, Math
## 25225 13-1161 131161 Business, Finance
## 25226 15-1121 151121 Computer, Math
## 25227 15-1132 151132 Computer, Math
## 25228 19-4061 194061 Life, Physcial, Social Science
## 25229 15-1132 151132 Computer, Math
## 25230 15-1132 151132 Computer, Math
## 25231 15-1121 151121 Computer, Math
## 25232 15-1121 151121 Computer, Math
## 25233 15-2031 152031 Computer, Math
## 25234 15-1121 151121 Computer, Math
## 25235 15-1132 151132 Computer, Math
## 25236 15-1121 151121 Computer, Math
## 25237 15-1131 151131 Computer, Math
## 25238 15-1199 151199 Computer, Math
## 25239 15-1133 151133 Computer, Math
## 25240 15-1199 151199 Computer, Math
## 25241 25-1071 251071 Education, Training
## 25242 15-1133 151133 Computer, Math
## 25243 13-1111 131111 Business, Finance
## 25244 15-1199 151199 Computer, Math
## 25245 15-1199 151199 Computer, Math
## 25246 25-1032 251032 Education, Training
## 25247 15-1121 151121 Computer, Math
## 25248 15-1121 151121 Computer, Math
## 25249 15-1121 151121 Computer, Math
## 25250 15-2031 152031 Computer, Math
## 25251 15-1121 151121 Computer, Math
## 25252 15-1133 151133 Computer, Math
## 25253 15-1132 151132 Computer, Math
## 25254 25-1071 251071 Education, Training
## 25255 15-1132 151132 Computer, Math
## 25256 15-1121 151121 Computer, Math
## 25257 25-1071 251071 Education, Training
## 25258 15-1141 151141 Computer, Math
## 25259 15-1132 151132 Computer, Math
## 25260 15-1132 151132 Computer, Math
## 25261 15-1132 151132 Computer, Math
## 25262 15-2031 152031 Computer, Math
## 25263 15-1132 151132 Computer, Math
## 25264 15-1132 151132 Computer, Math
## 25265 15-1133 151133 Computer, Math
## 25266 15-1121 151121 Computer, Math
## 25267 15-1199 151199 Computer, Math
## 25268 15-1132 151132 Computer, Math
## 25269 15-1121 151121 Computer, Math
## 25270 15-1121 151121 Computer, Math
## 25271 15-1132 151132 Computer, Math
## 25272 13-2051 132051 Business, Finance
## 25273 15-1131 151131 Computer, Math
## 25274 17-2141 172141 Architecture, Engineer
## 25275 11-3071 113071 Management
## 25276 15-1121 151121 Computer, Math
## 25277 15-2031 152031 Computer, Math
## 25278 15-1121 151121 Computer, Math
## 25279 15-1132 151132 Computer, Math
## 25280 11-3071 113071 Management
## 25281 41-9031 419031 Sales
## 25282 15-1134 151134 Computer, Math
## 25283 19-2031 192031 Life, Physcial, Social Science
## 25284 15-1133 151133 Computer, Math
## 25285 15-1132 151132 Computer, Math
## 25286 15-1121 151121 Computer, Math
## 25287 15-1121 151121 Computer, Math
## 25288 13-2011 132011 Business, Finance
## 25289 17-2199 172199 Architecture, Engineer
## 25290 15-1132 151132 Computer, Math
## 25291 15-1132 151132 Computer, Math
## 25292 15-1199 151199 Computer, Math
## 25293 15-1133 151133 Computer, Math
## 25294 25-9031 259031 Education, Training
## 25295 15-1131 151131 Computer, Math
## 25296 15-1121 151121 Computer, Math
## 25297 15-1199 151199 Computer, Math
## 25298 15-2031 152031 Computer, Math
## 25299 15-1121 151121 Computer, Math
## 25300 15-1131 151131 Computer, Math
## 25301 27-3042 273042 Media, Design
## 25302 15-1199 151199 Computer, Math
## 25303 15-1132 151132 Computer, Math
## 25304 15-1121 151121 Computer, Math
## 25305 15-1132 151132 Computer, Math
## 25306 15-1132 151132 Computer, Math
## 25307 15-1132 151132 Computer, Math
## 25308 15-1132 151132 Computer, Math
## 25309 19-1013 191013 Life, Physcial, Social Science
## 25310 13-2011 132011 Business, Finance
## 25311 15-2031 152031 Computer, Math
## 25312 15-2031 152031 Computer, Math
## 25313 15-2031 152031 Computer, Math
## 25314 13-2011 132011 Business, Finance
## 25315 15-1132 151132 Computer, Math
## 25316 15-1199 151199 Computer, Math
## 25317 15-1132 151132 Computer, Math
## 25318 15-1199 151199 Computer, Math
## 25319 15-1199 151199 Computer, Math
## 25320 15-1132 151132 Computer, Math
## 25321 19-3099 193099 Life, Physcial, Social Science
## 25322 15-1132 151132 Computer, Math
## 25323 15-1132 151132 Computer, Math
## 25324 15-1199 151199 Computer, Math
## 25325 15-1133 151133 Computer, Math
## 25326 15-1121 151121 Computer, Math
## 25327 15-1132 151132 Computer, Math
## 25328 15-1133 151133 Computer, Math
## 25329 15-1121 151121 Computer, Math
## 25330 15-1134 151134 Computer, Math
## 25331 15-1199 151199 Computer, Math
## 25332 15-1121 151121 Computer, Math
## 25333 19-2031 192031 Life, Physcial, Social Science
## 25334 15-1142 151142 Computer, Math
## 25335 15-1134 151134 Computer, Math
## 25336 13-2011 132011 Business, Finance
## 25337 17-2112 172112 Architecture, Engineer
## 25338 15-1132 151132 Computer, Math
## 25339 15-2031 152031 Computer, Math
## 25340 17-2112 172112 Architecture, Engineer
## 25341 15-1132 151132 Computer, Math
## 25342 15-1131 151131 Computer, Math
## 25343 15-1134 151134 Computer, Math
## 25344 15-2031 152031 Computer, Math
## 25345 15-1132 151132 Computer, Math
## 25346 17-2112 172112 Architecture, Engineer
## 25347 15-1131 151131 Computer, Math
## 25348 15-1131 151131 Computer, Math
## 25349 15-1121 151121 Computer, Math
## 25350 13-1111 131111 Business, Finance
## 25351 15-1121 151121 Computer, Math
## 25352 15-1199 151199 Computer, Math
## 25353 15-1199 151199 Computer, Math
## 25354 15-1121 151121 Computer, Math
## 25355 15-1133 151133 Computer, Math
## 25356 15-1199 151199 Computer, Math
## 25357 15-1132 151132 Computer, Math
## 25358 15-1199 151199 Computer, Math
## 25359 15-1131 151131 Computer, Math
## 25360 15-1111 151111 Computer, Math
## 25361 15-1133 151133 Computer, Math
## 25362 13-2011 132011 Business, Finance
## 25363 15-1142 151142 Computer, Math
## 25364 15-1121 151121 Computer, Math
## 25365 15-1199 151199 Computer, Math
## 25366 15-2041 152041 Computer, Math
## 25367 15-1132 151132 Computer, Math
## 25368 15-1142 151142 Computer, Math
## 25369 15-1121 151121 Computer, Math
## 25370 13-2031 132031 Business, Finance
## 25371 19-1042 191042 Life, Physcial, Social Science
## 25372 15-1132 151132 Computer, Math
## 25373 15-1141 151141 Computer, Math
## 25374 15-1132 151132 Computer, Math
## 25375 13-2011 132011 Business, Finance
## 25376 15-1199 151199 Computer, Math
## 25377 15-1141 151141 Computer, Math
## 25378 15-1121 151121 Computer, Math
## 25379 15-1199 151199 Computer, Math
## 25380 15-1132 151132 Computer, Math
## 25381 15-1132 151132 Computer, Math
## 25382 15-1121 151121 Computer, Math
## 25383 15-1121 151121 Computer, Math
## 25384 15-1142 151142 Computer, Math
## 25385 15-2031 152031 Computer, Math
## 25386 19-3011 193011 Life, Physcial, Social Science
## 25387 15-1133 151133 Computer, Math
## 25388 15-1199 151199 Computer, Math
## 25389 17-2141 172141 Architecture, Engineer
## 25390 15-1132 151132 Computer, Math
## 25391 15-1132 151132 Computer, Math
## 25392 15-1121 151121 Computer, Math
## 25393 15-1132 151132 Computer, Math
## 25394 15-1199 151199 Computer, Math
## 25395 11-1021 111021 Management
## 25396 15-1121 151121 Computer, Math
## 25397 15-1122 151122 Computer, Math
## 25398 29-1123 291123 Healthcare Practitioner
## 25399 15-1199 151199 Computer, Math
## 25400 15-1132 151132 Computer, Math
## 25401 15-1132 151132 Computer, Math
## 25402 15-1131 151131 Computer, Math
## 25403 29-1123 291123 Healthcare Practitioner
## 25404 29-1123 291123 Healthcare Practitioner
## 25405 15-1132 151132 Computer, Math
## 25406 13-2011 132011 Business, Finance
## 25407 15-1132 151132 Computer, Math
## 25408 15-1131 151131 Computer, Math
## 25409 15-1121 151121 Computer, Math
## 25410 15-1199 151199 Computer, Math
## 25411 15-1121 151121 Computer, Math
## 25412 17-2141 172141 Architecture, Engineer
## 25413 15-1121 151121 Computer, Math
## 25414 17-2051 172051 Architecture, Engineer
## 25415 15-1121 151121 Computer, Math
## 25416 15-1132 151132 Computer, Math
## 25417 15-1121 151121 Computer, Math
## 25418 15-1132 151132 Computer, Math
## 25419 15-1132 151132 Computer, Math
## 25420 15-1133 151133 Computer, Math
## 25421 15-1199 151199 Computer, Math
## 25422 15-1132 151132 Computer, Math
## 25423 15-1142 151142 Computer, Math
## 25424 13-1111 131111 Business, Finance
## 25425 17-2199 172199 Architecture, Engineer
## 25426 15-1134 151134 Computer, Math
## 25427 15-1132 151132 Computer, Math
## 25428 15-2031 152031 Computer, Math
## 25429 15-1122 151122 Computer, Math
## 25430 13-1111 131111 Business, Finance
## 25431 15-1132 151132 Computer, Math
## 25432 15-1142 151142 Computer, Math
## 25433 13-1041 131041 Business, Finance
## 25434 15-1132 151132 Computer, Math
## 25435 15-1121 151121 Computer, Math
## 25436 15-1199 151199 Computer, Math
## 25437 17-2141 172141 Architecture, Engineer
## 25438 15-1131 151131 Computer, Math
## 25439 15-1132 151132 Computer, Math
## 25440 15-1132 151132 Computer, Math
## 25441 15-1199 151199 Computer, Math
## 25442 17-2071 172071 Architecture, Engineer
## 25443 17-2072 172072 Architecture, Engineer
## 25444 11-2021 112021 Management
## 25445 15-1141 151141 Computer, Math
## 25446 15-1132 151132 Computer, Math
## 25447 11-3021 113021 Management
## 25448 25-1081 251081 Education, Training
## 25449 13-2099 132099 Business, Finance
## 25450 19-1029 191029 Life, Physcial, Social Science
## 25451 19-1021 191021 Life, Physcial, Social Science
## 25452 15-1121 151121 Computer, Math
## 25453 25-2021 252021 Education, Training
## 25454 15-1132 151132 Computer, Math
## 25455 15-1141 151141 Computer, Math
## 25456 15-1132 151132 Computer, Math
## 25457 15-1121 151121 Computer, Math
## 25458 15-1131 151131 Computer, Math
## 25459 15-1132 151132 Computer, Math
## 25460 15-1132 151132 Computer, Math
## 25461 15-1132 151132 Computer, Math
## 25462 15-1132 151132 Computer, Math
## 25463 15-1132 151132 Computer, Math
## 25464 15-1199 151199 Computer, Math
## 25465 15-1132 151132 Computer, Math
## 25466 15-1199 151199 Computer, Math
## 25467 13-1051 131051 Business, Finance
## 25468 15-1131 151131 Computer, Math
## 25469 29-9099 299099 Healthcare Practitioner
## 25470 17-2141 172141 Architecture, Engineer
## 25471 15-1131 151131 Computer, Math
## 25472 15-1132 151132 Computer, Math
## 25473 11-2021 112021 Management
## 25474 15-1133 151133 Computer, Math
## 25475 15-1132 151132 Computer, Math
## 25476 15-1132 151132 Computer, Math
## 25477 15-1199 151199 Computer, Math
## 25478 15-1199 151199 Computer, Math
## 25479 13-1071 131071 Business, Finance
## 25480 15-1121 151121 Computer, Math
## 25481 15-1199 151199 Computer, Math
## 25482 15-1132 151132 Computer, Math
## 25483 15-1132 151132 Computer, Math
## 25484 19-4021 194021 Life, Physcial, Social Science
## 25485 15-1199 151199 Computer, Math
## 25486 13-2099 132099 Business, Finance
## 25487 25-9031 259031 Education, Training
## 25488 25-1071 251071 Education, Training
## 25489 11-1021 111021 Management
## 25490 15-1132 151132 Computer, Math
## 25491 17-2031 172031 Architecture, Engineer
## 25492 15-1121 151121 Computer, Math
## 25493 15-1132 151132 Computer, Math
## 25494 15-1199 151199 Computer, Math
## 25495 15-1132 151132 Computer, Math
## 25496 13-1071 131071 Business, Finance
## 25497 15-1132 151132 Computer, Math
## 25498 15-1121 151121 Computer, Math
## 25499 13-2011 132011 Business, Finance
## 25500 17-2071 172071 Architecture, Engineer
## 25501 15-1132 151132 Computer, Math
## 25502 15-1132 151132 Computer, Math
## 25503 15-2031 152031 Computer, Math
## 25504 15-1132 151132 Computer, Math
## 25505 15-1132 151132 Computer, Math
## 25506 15-1134 151134 Computer, Math
## 25507 15-2041 152041 Computer, Math
## 25508 17-2051 172051 Architecture, Engineer
## 25509 15-2031 152031 Computer, Math
## 25510 15-1121 151121 Computer, Math
## 25511 15-1142 151142 Computer, Math
## 25512 19-1042 191042 Life, Physcial, Social Science
## 25513 15-1132 151132 Computer, Math
## 25514 15-1122 151122 Computer, Math
## 25515 15-1132 151132 Computer, Math
## 25516 15-1121 151121 Computer, Math
## 25517 21-1013 211013 Social Service
## 25518 15-2041 152041 Computer, Math
## 25519 13-2099 132099 Business, Finance
## 25520 15-1142 151142 Computer, Math
## 25521 13-2099 132099 Business, Finance
## 25522 15-1132 151132 Computer, Math
## 25523 15-1132 151132 Computer, Math
## 25524 15-1121 151121 Computer, Math
## 25525 15-1133 151133 Computer, Math
## 25526 17-1012 171012 Architecture, Engineer
## 25527 11-3031 113031 Management
## 25528 17-2141 172141 Architecture, Engineer
## 25529 17-2072 172072 Architecture, Engineer
## 25530 15-1132 151132 Computer, Math
## 25531 17-2051 172051 Architecture, Engineer
## 25532 15-1199 151199 Computer, Math
## 25533 15-1121 151121 Computer, Math
## 25534 13-1161 131161 Business, Finance
## 25535 15-1141 151141 Computer, Math
## 25536 15-1199 151199 Computer, Math
## 25537 15-1121 151121 Computer, Math
## 25538 27-1024 271024 Media, Design
## 25539 15-1131 151131 Computer, Math
## 25540 15-1142 151142 Computer, Math
## 25541 15-1199 151199 Computer, Math
## 25542 29-1069 291069 Healthcare Practitioner
## 25543 15-1133 151133 Computer, Math
## 25544 25-2031 252031 Education, Training
## 25545 17-2112 172112 Architecture, Engineer
## 25546 13-2011 132011 Business, Finance
## 25547 15-1132 151132 Computer, Math
## 25548 13-2051 132051 Business, Finance
## 25549 29-1021 291021 Healthcare Practitioner
## 25550 15-1199 151199 Computer, Math
## 25551 19-2031 192031 Life, Physcial, Social Science
## 25552 19-1029 191029 Life, Physcial, Social Science
## 25553 15-1133 151133 Computer, Math
## 25554 15-1132 151132 Computer, Math
## 25555 15-2041 152041 Computer, Math
## 25556 15-1132 151132 Computer, Math
## 25557 15-1132 151132 Computer, Math
## 25558 15-1132 151132 Computer, Math
## 25559 15-1199 151199 Computer, Math
## 25560 15-1122 151122 Computer, Math
## 25561 17-2072 172072 Architecture, Engineer
## 25562 15-1133 151133 Computer, Math
## 25563 11-9121 119121 Management
## 25564 15-1132 151132 Computer, Math
## 25565 29-1123 291123 Healthcare Practitioner
## 25566 15-1199 151199 Computer, Math
## 25567 29-9099 299099 Healthcare Practitioner
## 25568 15-1132 151132 Computer, Math
## 25569 13-1111 131111 Business, Finance
## 25570 15-1132 151132 Computer, Math
## 25571 15-1121 151121 Computer, Math
## 25572 15-1121 151121 Computer, Math
## 25573 15-1141 151141 Computer, Math
## 25574 19-1029 191029 Life, Physcial, Social Science
## 25575 15-1132 151132 Computer, Math
## 25576 15-1132 151132 Computer, Math
## 25577 13-2099 132099 Business, Finance
## 25578 15-1199 151199 Computer, Math
## 25579 15-1121 151121 Computer, Math
## 25580 15-1121 151121 Computer, Math
## 25581 15-1199 151199 Computer, Math
## 25582 27-3041 273041 Media, Design
## 25583 15-1132 151132 Computer, Math
## 25584 15-1134 151134 Computer, Math
## 25585 15-1132 151132 Computer, Math
## 25586 15-1121 151121 Computer, Math
## 25587 15-1132 151132 Computer, Math
## 25588 15-1132 151132 Computer, Math
## 25589 15-1132 151132 Computer, Math
## 25590 15-1132 151132 Computer, Math
## 25591 13-1161 131161 Business, Finance
## 25592 17-3011 173011 Architecture, Engineer
## 25593 15-1121 151121 Computer, Math
## 25594 13-1111 131111 Business, Finance
## 25595 15-1132 151132 Computer, Math
## 25596 15-1121 151121 Computer, Math
## 25597 13-1071 131071 Business, Finance
## 25598 15-1131 151131 Computer, Math
## 25599 15-1121 151121 Computer, Math
## 25600 15-1132 151132 Computer, Math
## 25601 15-1121 151121 Computer, Math
## 25602 15-1131 151131 Computer, Math
## 25603 13-1041 131041 Business, Finance
## 25604 15-1199 151199 Computer, Math
## 25605 15-1199 151199 Computer, Math
## 25606 15-1111 151111 Computer, Math
## 25607 15-1132 151132 Computer, Math
## 25608 15-1132 151132 Computer, Math
## 25609 15-1132 151132 Computer, Math
## 25610 15-1132 151132 Computer, Math
## 25611 15-2031 152031 Computer, Math
## 25612 15-1132 151132 Computer, Math
## 25613 15-1133 151133 Computer, Math
## 25614 29-2011 292011 Healthcare Practitioner
## 25615 13-2011 132011 Business, Finance
## 25616 11-3021 113021 Management
## 25617 15-1121 151121 Computer, Math
## 25618 17-2112 172112 Architecture, Engineer
## 25619 11-9013 119013 Management
## 25620 15-1132 151132 Computer, Math
## 25621 15-1132 151132 Computer, Math
## 25622 15-1132 151132 Computer, Math
## 25623 17-2199 172199 Architecture, Engineer
## 25624 15-1199 151199 Computer, Math
## 25625 15-1121 151121 Computer, Math
## 25626 15-1132 151132 Computer, Math
## 25627 15-1199 151199 Computer, Math
## 25628 15-1132 151132 Computer, Math
## 25629 15-2031 152031 Computer, Math
## 25630 13-1111 131111 Business, Finance
## 25631 15-1199 151199 Computer, Math
## 25632 15-1132 151132 Computer, Math
## 25633 15-1132 151132 Computer, Math
## 25634 15-1132 151132 Computer, Math
## 25635 15-1121 151121 Computer, Math
## 25636 29-1069 291069 Healthcare Practitioner
## 25637 15-1132 151132 Computer, Math
## 25638 15-1199 151199 Computer, Math
## 25639 15-1199 151199 Computer, Math
## 25640 15-1121 151121 Computer, Math
## 25641 15-1132 151132 Computer, Math
## 25642 15-1121 151121 Computer, Math
## 25643 15-1132 151132 Computer, Math
## 25644 29-1199 291199 Healthcare Practitioner
## 25645 15-1199 151199 Computer, Math
## 25646 25-9021 259021 Education, Training
## 25647 17-2071 172071 Architecture, Engineer
## 25648 15-1121 151121 Computer, Math
## 25649 15-1132 151132 Computer, Math
## 25650 15-1131 151131 Computer, Math
## 25651 13-1111 131111 Business, Finance
## 25652 15-1132 151132 Computer, Math
## 25653 15-2031 152031 Computer, Math
## 25654 19-1042 191042 Life, Physcial, Social Science
## 25655 15-1132 151132 Computer, Math
## 25656 25-1124 251124 Education, Training
## 25657 17-2071 172071 Architecture, Engineer
## 25658 15-1132 151132 Computer, Math
## 25659 15-1131 151131 Computer, Math
## 25660 15-1133 151133 Computer, Math
## 25661 15-1121 151121 Computer, Math
## 25662 15-1199 151199 Computer, Math
## 25663 15-1199 151199 Computer, Math
## 25664 15-1134 151134 Computer, Math
## 25665 15-1121 151121 Computer, Math
## 25666 15-1199 151199 Computer, Math
## 25667 15-1132 151132 Computer, Math
## 25668 15-1132 151132 Computer, Math
## 25669 15-2031 152031 Computer, Math
## 25670 29-1141 291141 Healthcare Practitioner
## 25671 15-1199 151199 Computer, Math
## 25672 15-1199 151199 Computer, Math
## 25673 25-1021 251021 Education, Training
## 25674 15-1132 151132 Computer, Math
## 25675 15-1132 151132 Computer, Math
## 25676 15-1133 151133 Computer, Math
## 25677 15-1132 151132 Computer, Math
## 25678 13-2051 132051 Business, Finance
## 25679 15-1121 151121 Computer, Math
## 25680 15-1035 151035 Computer, Math
## 25681 15-1132 151132 Computer, Math
## 25682 13-2051 132051 Business, Finance
## 25683 15-1132 151132 Computer, Math
## 25684 13-1111 131111 Business, Finance
## 25685 15-1132 151132 Computer, Math
## 25686 15-1132 151132 Computer, Math
## 25687 29-1069 291069 Healthcare Practitioner
## 25688 15-1132 151132 Computer, Math
## 25689 15-1121 151121 Computer, Math
## 25690 15-1121 151121 Computer, Math
## 25691 15-1133 151133 Computer, Math
## 25692 19-2031 192031 Life, Physcial, Social Science
## 25693 17-2141 172141 Architecture, Engineer
## 25694 15-1132 151132 Computer, Math
## 25695 15-1132 151132 Computer, Math
## 25696 15-1132 151132 Computer, Math
## 25697 15-1133 151133 Computer, Math
## 25698 15-1132 151132 Computer, Math
## 25699 25-2021 252021 Education, Training
## 25700 15-1121 151121 Computer, Math
## 25701 15-1121 151121 Computer, Math
## 25702 15-1132 151132 Computer, Math
## 25703 15-1132 151132 Computer, Math
## 25704 15-1121 151121 Computer, Math
## 25705 15-1132 151132 Computer, Math
## 25706 11-9199 119199 Management
## 25707 15-1132 151132 Computer, Math
## 25708 17-2071 172071 Architecture, Engineer
## 25709 15-1132 151132 Computer, Math
## 25710 13-1161 131161 Business, Finance
## 25711 15-1132 151132 Computer, Math
## 25712 17-2199 172199 Architecture, Engineer
## 25713 15-1199 151199 Computer, Math
## 25714 15-1132 151132 Computer, Math
## 25715 17-2072 172072 Architecture, Engineer
## 25716 15-1132 151132 Computer, Math
## 25717 15-1199 151199 Computer, Math
## 25718 15-1199 151199 Computer, Math
## 25719 15-1199 151199 Computer, Math
## 25720 15-1132 151132 Computer, Math
## 25721 15-1132 151132 Computer, Math
## 25722 15-1133 151133 Computer, Math
## 25723 15-1132 151132 Computer, Math
## 25724 17-2071 172071 Architecture, Engineer
## 25725 17-2141 172141 Architecture, Engineer
## 25726 15-1121 151121 Computer, Math
## 25727 15-1121 151121 Computer, Math
## 25728 15-1121 151121 Computer, Math
## 25729 15-1132 151132 Computer, Math
## 25730 15-1132 151132 Computer, Math
## 25731 15-1132 151132 Computer, Math
## 25732 15-1121 151121 Computer, Math
## 25733 13-2011 132011 Business, Finance
## 25734 15-2031 152031 Computer, Math
## 25735 15-1142 151142 Computer, Math
## 25736 15-1131 151131 Computer, Math
## 25737 15-1121 151121 Computer, Math
## 25738 17-2051 172051 Architecture, Engineer
## 25739 17-2061 172061 Architecture, Engineer
## 25740 17-2071 172071 Architecture, Engineer
## 25741 25-1071 251071 Education, Training
## 25742 15-1132 151132 Computer, Math
## 25743 13-2051 132051 Business, Finance
## 25744 15-1199 151199 Computer, Math
## 25745 17-2051 172051 Architecture, Engineer
## 25746 15-1121 151121 Computer, Math
## 25747 15-1121 151121 Computer, Math
## 25748 15-1132 151132 Computer, Math
## 25749 13-2051 132051 Business, Finance
## 25750 17-2071 172071 Architecture, Engineer
## 25751 15-1132 151132 Computer, Math
## 25752 15-1132 151132 Computer, Math
## 25753 15-1132 151132 Computer, Math
## 25754 15-1132 151132 Computer, Math
## 25755 17-2131 172131 Architecture, Engineer
## 25756 15-1121 151121 Computer, Math
## 25757 15-1132 151132 Computer, Math
## 25758 15-1132 151132 Computer, Math
## 25759 15-1132 151132 Computer, Math
## 25760 15-1132 151132 Computer, Math
## 25761 15-1121 151121 Computer, Math
## 25762 17-2199 172199 Architecture, Engineer
## 25763 15-1121 151121 Computer, Math
## 25764 15-1132 151132 Computer, Math
## 25765 15-1132 151132 Computer, Math
## 25766 15-1121 151121 Computer, Math
## 25767 17-2031 172031 Architecture, Engineer
## 25768 15-1121 151121 Computer, Math
## 25769 15-1132 151132 Computer, Math
## 25770 15-1132 151132 Computer, Math
## 25771 15-1132 151132 Computer, Math
## 25772 15-1121 151121 Computer, Math
## 25773 19-1022 191022 Life, Physcial, Social Science
## 25774 15-1199 151199 Computer, Math
## 25775 15-1199 151199 Computer, Math
## 25776 15-1199 151199 Computer, Math
## 25777 15-1131 151131 Computer, Math
## 25778 15-1199 151199 Computer, Math
## 25779 15-1132 151132 Computer, Math
## 25780 15-1141 151141 Computer, Math
## 25781 15-1121 151121 Computer, Math
## 25782 15-1132 151132 Computer, Math
## 25783 15-1199 151199 Computer, Math
## 25784 15-1132 151132 Computer, Math
## 25785 13-2051 132051 Business, Finance
## 25786 15-1132 151132 Computer, Math
## 25787 15-1132 151132 Computer, Math
## 25788 15-1121 151121 Computer, Math
## 25789 15-1199 151199 Computer, Math
## 25790 15-2031 152031 Computer, Math
## 25791 15-1121 151121 Computer, Math
## 25792 15-1199 151199 Computer, Math
## 25793 13-1111 131111 Business, Finance
## 25794 15-1132 151132 Computer, Math
## 25795 15-1133 151133 Computer, Math
## 25796 15-1132 151132 Computer, Math
## 25797 25-1032 251032 Education, Training
## 25798 15-1111 151111 Computer, Math
## 25799 15-1133 151133 Computer, Math
## 25800 15-1199 151199 Computer, Math
## 25801 15-1132 151132 Computer, Math
## 25802 13-1111 131111 Business, Finance
## 25803 13-1111 131111 Business, Finance
## 25804 15-1132 151132 Computer, Math
## 25805 15-1121 151121 Computer, Math
## 25806 15-1132 151132 Computer, Math
## 25807 13-1161 131161 Business, Finance
## 25808 15-1199 151199 Computer, Math
## 25809 15-1134 151134 Computer, Math
## 25810 23-1011 231011 Legal
## 25811 13-1161 131161 Business, Finance
## 25812 17-2141 172141 Architecture, Engineer
## 25813 17-2072 172072 Architecture, Engineer
## 25814 15-1199 151199 Computer, Math
## 25815 13-1081 131081 Business, Finance
## 25816 15-2031 152031 Computer, Math
## 25817 15-1199 151199 Computer, Math
## 25818 15-1133 151133 Computer, Math
## 25819 15-1121 151121 Computer, Math
## 25820 13-1081 131081 Business, Finance
## 25821 15-1142 151142 Computer, Math
## 25822 15-1132 151132 Computer, Math
## 25823 15-1134 151134 Computer, Math
## 25824 15-1121 151121 Computer, Math
## 25825 15-1121 151121 Computer, Math
## 25826 13-1111 131111 Business, Finance
## 25827 15-1132 151132 Computer, Math
## 25828 15-1132 151132 Computer, Math
## 25829 15-1199 151199 Computer, Math
## 25830 15-1134 151134 Computer, Math
## 25831 15-1132 151132 Computer, Math
## 25832 13-2011 132011 Business, Finance
## 25833 17-2071 172071 Architecture, Engineer
## 25834 17-2051 172051 Architecture, Engineer
## 25835 11-3021 113021 Management
## 25836 17-2081 172081 Architecture, Engineer
## 25837 15-1132 151132 Computer, Math
## 25838 15-1199 151199 Computer, Math
## 25839 15-1132 151132 Computer, Math
## 25840 15-2031 152031 Computer, Math
## 25841 15-2031 152031 Computer, Math
## 25842 15-1142 151142 Computer, Math
## 25843 27-1014 271014 Media, Design
## 25844 29-1127 291127 Healthcare Practitioner
## 25845 15-1122 151122 Computer, Math
## 25846 15-1132 151132 Computer, Math
## 25847 15-1199 151199 Computer, Math
## 25848 15-1132 151132 Computer, Math
## 25849 15-1132 151132 Computer, Math
## 25850 15-1132 151132 Computer, Math
## 25851 15-1132 151132 Computer, Math
## 25852 15-1132 151132 Computer, Math
## 25853 15-1199 151199 Computer, Math
## 25854 15-1122 151122 Computer, Math
## 25855 15-1199 151199 Computer, Math
## 25856 15-1132 151132 Computer, Math
## 25857 25-1071 251071 Education, Training
## 25858 13-2041 132041 Business, Finance
## 25859 15-1199 151199 Computer, Math
## 25860 15-1132 151132 Computer, Math
## 25861 15-1132 151132 Computer, Math
## 25862 15-2031 152031 Computer, Math
## 25863 15-1199 151199 Computer, Math
## 25864 17-2072 172072 Architecture, Engineer
## 25865 15-1132 151132 Computer, Math
## 25866 15-1199 151199 Computer, Math
## 25867 15-1131 151131 Computer, Math
## 25868 13-1161 131161 Business, Finance
## 25869 15-1133 151133 Computer, Math
## 25870 15-1121 151121 Computer, Math
## 25871 15-1199 151199 Computer, Math
## 25872 13-1161 131161 Business, Finance
## 25873 15-2031 152031 Computer, Math
## 25874 17-2072 172072 Architecture, Engineer
## 25875 15-1132 151132 Computer, Math
## 25876 15-1052 151052 Computer, Math
## 25877 15-1121 151121 Computer, Math
## 25878 15-1132 151132 Computer, Math
## 25879 15-1132 151132 Computer, Math
## 25880 15-1131 151131 Computer, Math
## 25881 15-2041 152041 Computer, Math
## 25882 15-2031 152031 Computer, Math
## 25883 15-2041 152041 Computer, Math
## 25884 15-1121 151121 Computer, Math
## 25885 15-1122 151122 Computer, Math
## 25886 15-1132 151132 Computer, Math
## 25887 15-1199 151199 Computer, Math
## 25888 41-9031 419031 Sales
## 25889 11-2021 112021 Management
## 25890 15-1132 151132 Computer, Math
## 25891 13-2099 132099 Business, Finance
## 25892 15-1132 151132 Computer, Math
## 25893 17-2171 172171 Architecture, Engineer
## 25894 15-1132 151132 Computer, Math
## 25895 15-1199 151199 Computer, Math
## 25896 15-1121 151121 Computer, Math
## 25897 15-1132 151132 Computer, Math
## 25898 13-1161 131161 Business, Finance
## 25899 13-1081 131081 Business, Finance
## 25900 15-1199 151199 Computer, Math
## 25901 15-1132 151132 Computer, Math
## 25902 15-1132 151132 Computer, Math
## 25903 15-1131 151131 Computer, Math
## 25904 15-1121 151121 Computer, Math
## 25905 15-1131 151131 Computer, Math
## 25906 15-1132 151132 Computer, Math
## 25907 15-1131 151131 Computer, Math
## 25908 17-2112 172112 Architecture, Engineer
## 25909 15-1199 151199 Computer, Math
## 25910 27-1014 271014 Media, Design
## 25911 15-1121 151121 Computer, Math
## 25912 15-1199 151199 Computer, Math
## 25913 15-2031 152031 Computer, Math
## 25914 15-1131 151131 Computer, Math
## 25915 17-2141 172141 Architecture, Engineer
## 25916 15-1132 151132 Computer, Math
## 25917 15-1132 151132 Computer, Math
## 25918 15-1199 151199 Computer, Math
## 25919 13-1111 131111 Business, Finance
## 25920 15-1132 151132 Computer, Math
## 25921 15-1121 151121 Computer, Math
## 25922 15-1132 151132 Computer, Math
## 25923 15-1133 151133 Computer, Math
## 25924 15-1199 151199 Computer, Math
## 25925 15-1121 151121 Computer, Math
## 25926 17-2071 172071 Architecture, Engineer
## 25927 15-1199 151199 Computer, Math
## 25928 29-1063 291063 Healthcare Practitioner
## 25929 23-1011 231011 Legal
## 25930 15-1141 151141 Computer, Math
## 25931 13-2011 132011 Business, Finance
## 25932 13-2099 132099 Business, Finance
## 25933 15-1199 151199 Computer, Math
## 25934 15-1199.01 151199 Computer, Math
## 25935 15-2031 152031 Computer, Math
## 25936 15-1121 151121 Computer, Math
## 25937 15-1132 151132 Computer, Math
## 25938 15-1121 151121 Computer, Math
## 25939 15-1132 151132 Computer, Math
## 25940 15-1132 151132 Computer, Math
## 25941 15-1121 151121 Computer, Math
## 25942 17-2051 172051 Architecture, Engineer
## 25943 17-2141 172141 Architecture, Engineer
## 25944 15-1132 151132 Computer, Math
## 25945 15-1199 151199 Computer, Math
## 25946 15-1199 151199 Computer, Math
## 25947 15-1199 151199 Computer, Math
## 25948 15-1121 151121 Computer, Math
## 25949 17-2031 172031 Architecture, Engineer
## 25950 15-1121 151121 Computer, Math
## 25951 25-1042 251042 Education, Training
## 25952 15-1199 151199 Computer, Math
## 25953 25-1071 251071 Education, Training
## 25954 15-1133 151133 Computer, Math
## 25955 15-1199 151199 Computer, Math
## 25956 15-1142 151142 Computer, Math
## 25957 17-2111 172111 Architecture, Engineer
## 25958 15-1121 151121 Computer, Math
## 25959 29-1031 291031 Healthcare Practitioner
## 25960 15-1199 151199 Computer, Math
## 25961 15-1132 151132 Computer, Math
## 25962 15-1132 151132 Computer, Math
## 25963 13-1071 131071 Business, Finance
## 25964 15-1132 151132 Computer, Math
## 25965 15-1132 151132 Computer, Math
## 25966 17-2071 172071 Architecture, Engineer
## 25967 15-1132 151132 Computer, Math
## 25968 11-2021 112021 Management
## 25969 15-1121 151121 Computer, Math
## 25970 11-3021 113021 Management
## 25971 13-1161 131161 Business, Finance
## 25972 15-2041 152041 Computer, Math
## 25973 13-2051 132051 Business, Finance
## 25974 15-1121 151121 Computer, Math
## 25975 15-1121 151121 Computer, Math
## 25976 15-1121 151121 Computer, Math
## 25977 15-1143 151143 Computer, Math
## 25978 23-1011 231011 Legal
## 25979 15-1121 151121 Computer, Math
## 25980 15-1132 151132 Computer, Math
## 25981 15-1132 151132 Computer, Math
## 25982 15-1132 151132 Computer, Math
## 25983 13-1161 131161 Business, Finance
## 25984 15-1199 151199 Computer, Math
## 25985 15-1132 151132 Computer, Math
## 25986 15-1132 151132 Computer, Math
## 25987 15-1121 151121 Computer, Math
## 25988 15-1132 151132 Computer, Math
## 25989 15-1141 151141 Computer, Math
## 25990 13-2011 132011 Business, Finance
## 25991 15-1132 151132 Computer, Math
## 25992 15-1132 151132 Computer, Math
## 25993 15-1132 151132 Computer, Math
## 25994 15-1131 151131 Computer, Math
## 25995 25-1041 251041 Education, Training
## 25996 15-1132 151132 Computer, Math
## 25997 17-3011 173011 Architecture, Engineer
## 25998 29-1123 291123 Healthcare Practitioner
## 25999 15-1121 151121 Computer, Math
## 26000 15-1132 151132 Computer, Math
## 26001 15-1132 151132 Computer, Math
## 26002 29-1127 291127 Healthcare Practitioner
## 26003 15-1121 151121 Computer, Math
## 26004 15-1132 151132 Computer, Math
## 26005 15-1142 151142 Computer, Math
## 26006 15-1132 151132 Computer, Math
## 26007 15-1132 151132 Computer, Math
## 26008 15-1121 151121 Computer, Math
## 26009 15-1132 151132 Computer, Math
## 26010 15-1132 151132 Computer, Math
## 26011 15-1132 151132 Computer, Math
## 26012 15-1121 151121 Computer, Math
## 26013 17-2141 172141 Architecture, Engineer
## 26014 13-2011 132011 Business, Finance
## 26015 15-1199 151199 Computer, Math
## 26016 15-1132 151132 Computer, Math
## 26017 15-1131 151131 Computer, Math
## 26018 17-2141 172141 Architecture, Engineer
## 26019 17-2071 172071 Architecture, Engineer
## 26020 29-2011 292011 Healthcare Practitioner
## 26021 15-1121 151121 Computer, Math
## 26022 15-1132 151132 Computer, Math
## 26023 29-9099 299099 Healthcare Practitioner
## 26024 25-1022 251022 Education, Training
## 26025 15-1132 151132 Computer, Math
## 26026 15-1199 151199 Computer, Math
## 26027 15-1132 151132 Computer, Math
## 26028 15-1132 151132 Computer, Math
## 26029 15-1132 151132 Computer, Math
## 26030 15-1121 151121 Computer, Math
## 26031 15-1131 151131 Computer, Math
## 26032 15-1199 151199 Computer, Math
## 26033 15-2041 152041 Computer, Math
## 26034 17-2071 172071 Architecture, Engineer
## 26035 15-1199 151199 Computer, Math
## 26036 17-2051 172051 Architecture, Engineer
## 26037 19-1029 191029 Life, Physcial, Social Science
## 26038 15-1132 151132 Computer, Math
## 26039 15-1133 151133 Computer, Math
## 26040 19-2042 192042 Life, Physcial, Social Science
## 26041 15-1199 151199 Computer, Math
## 26042 17-2071 172071 Architecture, Engineer
## 26043 25-2021 252021 Education, Training
## 26044 15-1132 151132 Computer, Math
## 26045 13-1161 131161 Business, Finance
## 26046 15-1199 151199 Computer, Math
## 26047 15-1132 151132 Computer, Math
## 26048 15-2031 152031 Computer, Math
## 26049 15-1131 151131 Computer, Math
## 26050 19-1013 191013 Life, Physcial, Social Science
## 26051 15-1132 151132 Computer, Math
## 26052 25-1193 251193 Education, Training
## 26053 17-2199 172199 Architecture, Engineer
## 26054 15-1132 151132 Computer, Math
## 26055 17-2112 172112 Architecture, Engineer
## 26056 13-1161 131161 Business, Finance
## 26057 11-9121 119121 Management
## 26058 15-1121 151121 Computer, Math
## 26059 15-1132 151132 Computer, Math
## 26060 15-1132 151132 Computer, Math
## 26061 15-1132 151132 Computer, Math
## 26062 15-2041 152041 Computer, Math
## 26063 15-1132 151132 Computer, Math
## 26064 15-1132 151132 Computer, Math
## 26065 15-1199 151199 Computer, Math
## 26066 15-1132 151132 Computer, Math
## 26067 15-1199 151199 Computer, Math
## 26068 15-1132 151132 Computer, Math
## 26069 17-2141 172141 Architecture, Engineer
## 26070 15-1121 151121 Computer, Math
## 26071 15-1199 151199 Computer, Math
## 26072 11-3021 113021 Management
## 26073 13-2011 132011 Business, Finance
## 26074 15-1199 151199 Computer, Math
## 26075 15-1132 151132 Computer, Math
## 26076 17-2071 172071 Architecture, Engineer
## 26077 15-1132 151132 Computer, Math
## 26078 15-1121 151121 Computer, Math
## 26079 15-1132 151132 Computer, Math
## 26080 19-1042 191042 Life, Physcial, Social Science
## 26081 15-1122 151122 Computer, Math
## 26082 15-1121 151121 Computer, Math
## 26083 13-2099 132099 Business, Finance
## 26084 15-1132 151132 Computer, Math
## 26085 13-1111 131111 Business, Finance
## 26086 41-9031 419031 Sales
## 26087 15-2041 152041 Computer, Math
## 26088 15-1132 151132 Computer, Math
## 26089 15-1121 151121 Computer, Math
## 26090 15-1132 151132 Computer, Math
## 26091 25-1011 251011 Education, Training
## 26092 15-1132 151132 Computer, Math
## 26093 13-2051 132051 Business, Finance
## 26094 19-3051 193051 Life, Physcial, Social Science
## 26095 15-1143 151143 Computer, Math
## 26096 17-2111 172111 Architecture, Engineer
## 26097 15-1199 151199 Computer, Math
## 26098 15-1199 151199 Computer, Math
## 26099 15-1132 151132 Computer, Math
## 26100 15-1131 151131 Computer, Math
## 26101 19-2031 192031 Life, Physcial, Social Science
## 26102 15-2031 152031 Computer, Math
## 26103 15-1199 151199 Computer, Math
## 26104 15-1121 151121 Computer, Math
## 26105 15-1132 151132 Computer, Math
## 26106 15-1132 151132 Computer, Math
## 26107 29-9099 299099 Healthcare Practitioner
## 26108 15-1122 151122 Computer, Math
## 26109 15-1121 151121 Computer, Math
## 26110 15-1132 151132 Computer, Math
## 26111 15-1132 151132 Computer, Math
## 26112 15-1121 151121 Computer, Math
## 26113 15-1132 151132 Computer, Math
## 26114 15-1132 151132 Computer, Math
## 26115 13-2099 132099 Business, Finance
## 26116 13-2011 132011 Business, Finance
## 26117 15-1131 151131 Computer, Math
## 26118 17-2199 172199 Architecture, Engineer
## 26119 15-1132 151132 Computer, Math
## 26120 15-1121 151121 Computer, Math
## 26121 15-1132 151132 Computer, Math
## 26122 13-2051 132051 Business, Finance
## 26123 15-1133 151133 Computer, Math
## 26124 29-1123 291123 Healthcare Practitioner
## 26125 15-1121 151121 Computer, Math
## 26126 15-1132 151132 Computer, Math
## 26127 15-1132 151132 Computer, Math
## 26128 15-1132 151132 Computer, Math
## 26129 15-1132 151132 Computer, Math
## 26130 15-1121 151121 Computer, Math
## 26131 15-1121 151121 Computer, Math
## 26132 19-2012 192012 Life, Physcial, Social Science
## 26133 15-1132 151132 Computer, Math
## 26134 15-1132 151132 Computer, Math
## 26135 15-1141 151141 Computer, Math
## 26136 29-2011 292011 Healthcare Practitioner
## 26137 15-1142 151142 Computer, Math
## 26138 11-2021 112021 Management
## 26139 15-1199 151199 Computer, Math
## 26140 15-1132 151132 Computer, Math
## 26141 19-2031 192031 Life, Physcial, Social Science
## 26142 15-1131 151131 Computer, Math
## 26143 17-2112 172112 Architecture, Engineer
## 26144 19-1012 191012 Life, Physcial, Social Science
## 26145 15-1132 151132 Computer, Math
## 26146 15-1132 151132 Computer, Math
## 26147 17-2071 172071 Architecture, Engineer
## 26148 15-1132 151132 Computer, Math
## 26149 15-2031 152031 Computer, Math
## 26150 15-2031 152031 Computer, Math
## 26151 11-9151 119151 Management
## 26152 15-1132 151132 Computer, Math
## 26153 15-1132 151132 Computer, Math
## 26154 15-1132 151132 Computer, Math
## 26155 17-2141 172141 Architecture, Engineer
## 26156 15-1132 151132 Computer, Math
## 26157 15-1199 151199 Computer, Math
## 26158 15-1132 151132 Computer, Math
## 26159 15-1111 151111 Computer, Math
## 26160 29-1021 291021 Healthcare Practitioner
## 26161 15-1133 151133 Computer, Math
## 26162 15-1199 151199 Computer, Math
## 26163 17-2141 172141 Architecture, Engineer
## 26164 17-2071 172071 Architecture, Engineer
## 26165 15-1199 151199 Computer, Math
## 26166 15-1199 151199 Computer, Math
## 26167 15-1132 151132 Computer, Math
## 26168 13-2011 132011 Business, Finance
## 26169 15-2031 152031 Computer, Math
## 26170 15-1199 151199 Computer, Math
## 26171 15-1199 151199 Computer, Math
## 26172 15-1132 151132 Computer, Math
## 26173 15-1132 151132 Computer, Math
## 26174 15-1199 151199 Computer, Math
## 26175 15-1121 151121 Computer, Math
## 26176 15-1133 151133 Computer, Math
## 26177 19-1042 191042 Life, Physcial, Social Science
## 26178 15-1121 151121 Computer, Math
## 26179 15-1141 151141 Computer, Math
## 26180 15-1199 151199 Computer, Math
## 26181 15-1132 151132 Computer, Math
## 26182 13-2011 132011 Business, Finance
## 26183 25-1081 251081 Education, Training
## 26184 15-1131 151131 Computer, Math
## 26185 17-2051 172051 Architecture, Engineer
## 26186 15-2041 152041 Computer, Math
## 26187 15-1121 151121 Computer, Math
## 26188 15-1199 151199 Computer, Math
## 26189 15-1132 151132 Computer, Math
## 26190 15-1121 151121 Computer, Math
## 26191 15-1132 151132 Computer, Math
## 26192 15-1132 151132 Computer, Math
## 26193 15-1199 151199 Computer, Math
## 26194 15-1121 151121 Computer, Math
## 26195 15-1132 151132 Computer, Math
## 26196 21-1012 211012 Social Service
## 26197 17-1012 171012 Architecture, Engineer
## 26198 15-1134 151134 Computer, Math
## 26199 15-1132 151132 Computer, Math
## 26200 15-2031 152031 Computer, Math
## 26201 15-1199 151199 Computer, Math
## 26202 15-1132 151132 Computer, Math
## 26203 15-1121 151121 Computer, Math
## 26204 15-1132 151132 Computer, Math
## 26205 15-1121 151121 Computer, Math
## 26206 25-1071 251071 Education, Training
## 26207 17-2051 172051 Architecture, Engineer
## 26208 15-1133 151133 Computer, Math
## 26209 15-1199 151199 Computer, Math
## 26210 15-1199 151199 Computer, Math
## 26211 13-2011 132011 Business, Finance
## 26212 15-1199 151199 Computer, Math
## 26213 15-1199 151199 Computer, Math
## 26214 15-1199 151199 Computer, Math
## 26215 11-3021 113021 Management
## 26216 19-1029 191029 Life, Physcial, Social Science
## 26217 15-1131 151131 Computer, Math
## 26218 15-1132 151132 Computer, Math
## 26219 15-1199 151199 Computer, Math
## 26220 15-1132 151132 Computer, Math
## 26221 13-1111 131111 Business, Finance
## 26222 15-1133 151133 Computer, Math
## 26223 15-1132 151132 Computer, Math
## 26224 15-1122 151122 Computer, Math
## 26225 15-1133 151133 Computer, Math
## 26226 25-2021 252021 Education, Training
## 26227 15-1121 151121 Computer, Math
## 26228 15-1132 151132 Computer, Math
## 26229 15-1132 151132 Computer, Math
## 26230 11-3121 113121 Management
## 26231 15-1132 151132 Computer, Math
## 26232 15-1132 151132 Computer, Math
## 26233 15-1199 151199 Computer, Math
## 26234 15-1199 151199 Computer, Math
## 26235 15-2031 152031 Computer, Math
## 26236 15-1142 151142 Computer, Math
## 26237 17-2112 172112 Architecture, Engineer
## 26238 17-2071 172071 Architecture, Engineer
## 26239 15-1132 151132 Computer, Math
## 26240 13-1041 131041 Business, Finance
## 26241 29-1123 291123 Healthcare Practitioner
## 26242 15-1121 151121 Computer, Math
## 26243 15-1132 151132 Computer, Math
## 26244 15-1132 151132 Computer, Math
## 26245 15-2031 152031 Computer, Math
## 26246 15-1132 151132 Computer, Math
## 26247 15-1132 151132 Computer, Math
## 26248 25-2021 252021 Education, Training
## 26249 15-1121 151121 Computer, Math
## 26250 15-1132 151132 Computer, Math
## 26251 11-2021 112021 Management
## 26252 15-1132 151132 Computer, Math
## 26253 19-1029 191029 Life, Physcial, Social Science
## 26254 15-1121 151121 Computer, Math
## 26255 13-1111 131111 Business, Finance
## 26256 15-1132 151132 Computer, Math
## 26257 15-1133 151133 Computer, Math
## 26258 15-1132 151132 Computer, Math
## 26259 15-1133 151133 Computer, Math
## 26260 15-1142 151142 Computer, Math
## 26261 15-1121 151121 Computer, Math
## 26262 15-1199 151199 Computer, Math
## 26263 13-2011 132011 Business, Finance
## 26264 15-1132 151132 Computer, Math
## 26265 15-1142 151142 Computer, Math
## 26266 15-1132 151132 Computer, Math
## 26267 27-3031 273031 Media, Design
## 26268 15-1132 151132 Computer, Math
## 26269 15-1132 151132 Computer, Math
## 26270 13-1111 131111 Business, Finance
## 26271 29-9099 299099 Healthcare Practitioner
## 26272 15-1121 151121 Computer, Math
## 26273 15-2031 152031 Computer, Math
## 26274 15-1141 151141 Computer, Math
## 26275 15-2041 152041 Computer, Math
## 26276 17-2041 172041 Architecture, Engineer
## 26277 15-1132 151132 Computer, Math
## 26278 15-1121 151121 Computer, Math
## 26279 15-1199 151199 Computer, Math
## 26280 27-3031 273031 Media, Design
## 26281 29-9092 299092 Healthcare Practitioner
## 26282 15-1132 151132 Computer, Math
## 26283 15-1132 151132 Computer, Math
## 26284 15-1199 151199 Computer, Math
## 26285 15-1199 151199 Computer, Math
## 26286 15-1132 151132 Computer, Math
## 26287 15-1199 151199 Computer, Math
## 26288 15-1131 151131 Computer, Math
## 26289 15-1132 151132 Computer, Math
## 26290 17-2072 172072 Architecture, Engineer
## 26291 13-2041 132041 Business, Finance
## 26292 15-1132 151132 Computer, Math
## 26293 19-1021 191021 Life, Physcial, Social Science
## 26294 15-1132 151132 Computer, Math
## 26295 13-1111 131111 Business, Finance
## 26296 13-1111 131111 Business, Finance
## 26297 15-1132 151132 Computer, Math
## 26298 17-2112 172112 Architecture, Engineer
## 26299 13-1071 131071 Business, Finance
## 26300 15-1131 151131 Computer, Math
## 26301 15-1132 151132 Computer, Math
## 26302 17-2041 172041 Architecture, Engineer
## 26303 15-1199 151199 Computer, Math
## 26304 19-1029 191029 Life, Physcial, Social Science
## 26305 13-1111 131111 Business, Finance
## 26306 15-1141 151141 Computer, Math
## 26307 15-2031 152031 Computer, Math
## 26308 15-1132 151132 Computer, Math
## 26309 15-1199 151199 Computer, Math
## 26310 11-3031 113031 Management
## 26311 15-1133 151133 Computer, Math
## 26312 15-1121 151121 Computer, Math
## 26313 15-1022 151022 Computer, Math
## 26314 15-2031 152031 Computer, Math
## 26315 15-1121 151121 Computer, Math
## 26316 15-1132 151132 Computer, Math
## 26317 13-2011 132011 Business, Finance
## 26318 19-1021 191021 Life, Physcial, Social Science
## 26319 15-1132 151132 Computer, Math
## 26320 15-2031 152031 Computer, Math
## 26321 15-2041 152041 Computer, Math
## 26322 15-1132 151132 Computer, Math
## 26323 15-1132 151132 Computer, Math
## 26324 15-1134 151134 Computer, Math
## 26325 15-1121 151121 Computer, Math
## 26326 29-1063 291063 Healthcare Practitioner
## 26327 15-1132 151132 Computer, Math
## 26328 17-2141 172141 Architecture, Engineer
## 26329 15-1132 151132 Computer, Math
## 26330 15-1132 151132 Computer, Math
## 26331 15-1121 151121 Computer, Math
## 26332 15-1142 151142 Computer, Math
## 26333 41-9031 419031 Sales
## 26334 15-1133 151133 Computer, Math
## 26335 15-1132 151132 Computer, Math
## 26336 15-1132 151132 Computer, Math
## 26337 15-1132 151132 Computer, Math
## 26338 17-2112 172112 Architecture, Engineer
## 26339 17-2141 172141 Architecture, Engineer
## 26340 15-1132 151132 Computer, Math
## 26341 15-1132 151132 Computer, Math
## 26342 15-1199 151199 Computer, Math
## 26343 15-1132 151132 Computer, Math
## 26344 19-2031 192031 Life, Physcial, Social Science
## 26345 15-1199 151199 Computer, Math
## 26346 15-1132 151132 Computer, Math
## 26347 15-1121 151121 Computer, Math
## 26348 15-1121 151121 Computer, Math
## 26349 15-1132 151132 Computer, Math
## 26350 13-1031 131031 Business, Finance
## 26351 15-1199 151199 Computer, Math
## 26352 13-2011 132011 Business, Finance
## 26353 15-1121 151121 Computer, Math
## 26354 15-1132 151132 Computer, Math
## 26355 15-1132 151132 Computer, Math
## 26356 15-1121 151121 Computer, Math
## 26357 15-1132 151132 Computer, Math
## 26358 15-1199 151199 Computer, Math
## 26359 15-1121 151121 Computer, Math
## 26360 15-1142 151142 Computer, Math
## 26361 15-1131 151131 Computer, Math
## 26362 15-1133 151133 Computer, Math
## 26363 15-1132 151132 Computer, Math
## 26364 17-2071 172071 Architecture, Engineer
## 26365 15-1133 151133 Computer, Math
## 26366 15-1132 151132 Computer, Math
## 26367 25-1041 251041 Education, Training
## 26368 15-1199 151199 Computer, Math
## 26369 25-2021 252021 Education, Training
## 26370 15-2031 152031 Computer, Math
## 26371 41-9031 419031 Sales
## 26372 15-1132 151132 Computer, Math
## 26373 15-1199 151199 Computer, Math
## 26374 17-2112 172112 Architecture, Engineer
## 26375 15-1132 151132 Computer, Math
## 26376 15-1121 151121 Computer, Math
## 26377 15-1131 151131 Computer, Math
## 26378 13-2011 132011 Business, Finance
## 26379 15-1142 151142 Computer, Math
## 26380 19-1042 191042 Life, Physcial, Social Science
## 26381 17-2199 172199 Architecture, Engineer
## 26382 15-1121 151121 Computer, Math
## 26383 15-1121 151121 Computer, Math
## 26384 15-1132 151132 Computer, Math
## 26385 15-1121 151121 Computer, Math
## 26386 29-2011 292011 Healthcare Practitioner
## 26387 29-1062 291062 Healthcare Practitioner
## 26388 15-1199 151199 Computer, Math
## 26389 15-1132 151132 Computer, Math
## 26390 15-1121 151121 Computer, Math
## 26391 15-1132 151132 Computer, Math
## 26392 29-9099 299099 Healthcare Practitioner
## 26393 15-1199 151199 Computer, Math
## 26394 15-1132 151132 Computer, Math
## 26395 15-1199 151199 Computer, Math
## 26396 15-1199 151199 Computer, Math
## 26397 15-1132 151132 Computer, Math
## 26398 15-1131 151131 Computer, Math
## 26399 15-1121 151121 Computer, Math
## 26400 19-1042 191042 Life, Physcial, Social Science
## 26401 15-1131 151131 Computer, Math
## 26402 15-1132 151132 Computer, Math
## 26403 15-1199 151199 Computer, Math
## 26404 15-1133 151133 Computer, Math
## 26405 15-1141 151141 Computer, Math
## 26406 15-1132 151132 Computer, Math
## 26407 15-1199 151199 Computer, Math
## 26408 15-1141 151141 Computer, Math
## 26409 15-2041 152041 Computer, Math
## 26410 19-4021 194021 Life, Physcial, Social Science
## 26411 15-1121 151121 Computer, Math
## 26412 15-1199 151199 Computer, Math
## 26413 15-1132 151132 Computer, Math
## 26414 17-2141 172141 Architecture, Engineer
## 26415 17-3011 173011 Architecture, Engineer
## 26416 15-1132 151132 Computer, Math
## 26417 15-1132 151132 Computer, Math
## 26418 15-1133 151133 Computer, Math
## 26419 15-1121 151121 Computer, Math
## 26420 15-1199 151199 Computer, Math
## 26421 15-1121 151121 Computer, Math
## 26422 19-1042 191042 Life, Physcial, Social Science
## 26423 15-1199 151199 Computer, Math
## 26424 15-1132 151132 Computer, Math
## 26425 15-1132 151132 Computer, Math
## 26426 15-1132 151132 Computer, Math
## 26427 15-1132 151132 Computer, Math
## 26428 15-1132 151132 Computer, Math
## 26429 15-1131 151131 Computer, Math
## 26430 15-1131 151131 Computer, Math
## 26431 25-3011 253011 Education, Training
## 26432 15-1132 151132 Computer, Math
## 26433 15-2041 152041 Computer, Math
## 26434 13-1051 131051 Business, Finance
## 26435 15-1132 151132 Computer, Math
## 26436 15-1199.09 151199 Computer, Math
## 26437 15-1121 151121 Computer, Math
## 26438 15-1132 151132 Computer, Math
## 26439 15-1132 151132 Computer, Math
## 26440 15-1132 151132 Computer, Math
## 26441 15-1141 151141 Computer, Math
## 26442 15-1132 151132 Computer, Math
## 26443 19-4061 194061 Life, Physcial, Social Science
## 26444 15-1121 151121 Computer, Math
## 26445 13-1111 131111 Business, Finance
## 26446 19-4061 194061 Life, Physcial, Social Science
## 26447 15-1131 151131 Computer, Math
## 26448 13-1051 131051 Business, Finance
## 26449 15-1132 151132 Computer, Math
## 26450 13-1081 131081 Business, Finance
## 26451 15-1121 151121 Computer, Math
## 26452 15-1132 151132 Computer, Math
## 26453 15-1132 151132 Computer, Math
## 26454 13-1111 131111 Business, Finance
## 26455 13-2051 132051 Business, Finance
## 26456 15-1133 151133 Computer, Math
## 26457 15-1132 151132 Computer, Math
## 26458 13-1111 131111 Business, Finance
## 26459 15-1142 151142 Computer, Math
## 26460 15-1132 151132 Computer, Math
## 26461 19-1029 191029 Life, Physcial, Social Science
## 26462 15-1132 151132 Computer, Math
## 26463 41-9031 419031 Sales
## 26464 19-1021 191021 Life, Physcial, Social Science
## 26465 15-1141 151141 Computer, Math
## 26466 15-1121 151121 Computer, Math
## 26467 11-9021 119021 Management
## 26468 15-1133 151133 Computer, Math
## 26469 15-1121 151121 Computer, Math
## 26470 13-2051 132051 Business, Finance
## 26471 13-2011 132011 Business, Finance
## 26472 15-1121 151121 Computer, Math
## 26473 11-2022 112022 Management
## 26474 15-1132 151132 Computer, Math
## 26475 15-1199 151199 Computer, Math
## 26476 15-2031 152031 Computer, Math
## 26477 15-1133 151133 Computer, Math
## 26478 15-1132 151132 Computer, Math
## 26479 15-1133 151133 Computer, Math
## 26480 17-2072 172072 Architecture, Engineer
## 26481 15-1121 151121 Computer, Math
## 26482 17-2071 172071 Architecture, Engineer
## 26483 15-1132 151132 Computer, Math
## 26484 13-2011 132011 Business, Finance
## 26485 15-1121 151121 Computer, Math
## 26486 15-1122 151122 Computer, Math
## 26487 15-1141 151141 Computer, Math
## 26488 15-1132 151132 Computer, Math
## 26489 15-1132 151132 Computer, Math
## 26490 15-1121 151121 Computer, Math
## 26491 15-1131 151131 Computer, Math
## 26492 15-1199 151199 Computer, Math
## 26493 19-1042 191042 Life, Physcial, Social Science
## 26494 15-1133 151133 Computer, Math
## 26495 15-1199 151199 Computer, Math
## 26496 19-1029 191029 Life, Physcial, Social Science
## 26497 29-1123 291123 Healthcare Practitioner
## 26498 13-1111 131111 Business, Finance
## 26499 15-1121 151121 Computer, Math
## 26500 19-1012 191012 Life, Physcial, Social Science
## 26501 15-1121 151121 Computer, Math
## 26502 15-2031 152031 Computer, Math
## 26503 15-1199 151199 Computer, Math
## 26504 15-1132 151132 Computer, Math
## 26505 15-1132 151132 Computer, Math
## 26506 15-1132 151132 Computer, Math
## 26507 13-2099 132099 Business, Finance
## 26508 15-2031 152031 Computer, Math
## 26509 15-1131 151131 Computer, Math
## 26510 15-1121 151121 Computer, Math
## 26511 11-2022 112022 Management
## 26512 15-1133 151133 Computer, Math
## 26513 15-1132 151132 Computer, Math
## 26514 29-1123 291123 Healthcare Practitioner
## 26515 15-1199 151199 Computer, Math
## 26516 15-1199 151199 Computer, Math
## 26517 13-2051 132051 Business, Finance
## 26518 11-9031 119031 Management
## 26519 27-1027 271027 Media, Design
## 26520 15-1132 151132 Computer, Math
## 26521 15-1142 151142 Computer, Math
## 26522 15-1132 151132 Computer, Math
## 26523 15-1199 151199 Computer, Math
## 26524 15-1111 151111 Computer, Math
## 26525 15-2041 152041 Computer, Math
## 26526 15-1143 151143 Computer, Math
## 26527 19-1042 191042 Life, Physcial, Social Science
## 26528 15-1132 151132 Computer, Math
## 26529 15-1142 151142 Computer, Math
## 26530 13-1111 131111 Business, Finance
## 26531 13-2011 132011 Business, Finance
## 26532 15-2031 152031 Computer, Math
## 26533 15-1132 151132 Computer, Math
## 26534 15-1133 151133 Computer, Math
## 26535 15-1132 151132 Computer, Math
## 26536 15-1132 151132 Computer, Math
## 26537 15-1133 151133 Computer, Math
## 26538 15-1199 151199 Computer, Math
## 26539 29-2011 292011 Healthcare Practitioner
## 26540 19-1021 191021 Life, Physcial, Social Science
## 26541 15-1121 151121 Computer, Math
## 26542 15-1132 151132 Computer, Math
## 26543 15-1121 151121 Computer, Math
## 26544 15-1132 151132 Computer, Math
## 26545 15-1121 151121 Computer, Math
## 26546 15-1141 151141 Computer, Math
## 26547 15-1132 151132 Computer, Math
## 26548 15-1199 151199 Computer, Math
## 26549 15-1121 151121 Computer, Math
## 26550 15-1142 151142 Computer, Math
## 26551 15-1132 151132 Computer, Math
## 26552 29-1063 291063 Healthcare Practitioner
## 26553 15-1132 151132 Computer, Math
## 26554 15-1199 151199 Computer, Math
## 26555 15-2031 152031 Computer, Math
## 26556 13-2041 132041 Business, Finance
## 26557 15-1133 151133 Computer, Math
## 26558 15-1199 151199 Computer, Math
## 26559 15-1121 151121 Computer, Math
## 26560 15-1199 151199 Computer, Math
## 26561 15-1122 151122 Computer, Math
## 26562 15-1131 151131 Computer, Math
## 26563 27-3031 273031 Media, Design
## 26564 15-1132 151132 Computer, Math
## 26565 15-1131 151131 Computer, Math
## 26566 29-1123 291123 Healthcare Practitioner
## 26567 13-2011 132011 Business, Finance
## 26568 15-2031 152031 Computer, Math
## 26569 15-1121 151121 Computer, Math
## 26570 15-1121 151121 Computer, Math
## 26571 15-1141 151141 Computer, Math
## 26572 13-2051 132051 Business, Finance
## 26573 13-2051 132051 Business, Finance
## 26574 15-1132 151132 Computer, Math
## 26575 15-2031 152031 Computer, Math
## 26576 15-1132 151132 Computer, Math
## 26577 19-1029 191029 Life, Physcial, Social Science
## 26578 19-2031 192031 Life, Physcial, Social Science
## 26579 15-1121 151121 Computer, Math
## 26580 13-2051 132051 Business, Finance
## 26581 17-2031 172031 Architecture, Engineer
## 26582 15-1199 151199 Computer, Math
## 26583 15-2041 152041 Computer, Math
## 26584 13-2031 132031 Business, Finance
## 26585 11-3061 113061 Management
## 26586 15-1121 151121 Computer, Math
## 26587 15-1132 151132 Computer, Math
## 26588 15-1199 151199 Computer, Math
## 26589 15-1132 151132 Computer, Math
## 26590 11-3021 113021 Management
## 26591 15-1132 151132 Computer, Math
## 26592 15-1142 151142 Computer, Math
## 26593 11-9041 119041 Management
## 26594 15-1132 151132 Computer, Math
## 26595 15-1132 151132 Computer, Math
## 26596 15-1141 151141 Computer, Math
## 26597 15-1132 151132 Computer, Math
## 26598 13-2099 132099 Business, Finance
## 26599 13-2011 132011 Business, Finance
## 26600 15-1132 151132 Computer, Math
## 26601 15-1132 151132 Computer, Math
## 26602 15-1199 151199 Computer, Math
## 26603 11-3121 113121 Management
## 26604 15-1132 151132 Computer, Math
## 26605 15-1143 151143 Computer, Math
## 26606 15-1132 151132 Computer, Math
## 26607 15-1132 151132 Computer, Math
## 26608 15-1132 151132 Computer, Math
## 26609 15-1121 151121 Computer, Math
## 26610 17-2112 172112 Architecture, Engineer
## 26611 13-1161 131161 Business, Finance
## 26612 15-1199 151199 Computer, Math
## 26613 27-3042 273042 Media, Design
## 26614 13-2099 132099 Business, Finance
## 26615 19-2042 192042 Life, Physcial, Social Science
## 26616 15-1132 151132 Computer, Math
## 26617 15-1131 151131 Computer, Math
## 26618 15-1132 151132 Computer, Math
## 26619 15-1134 151134 Computer, Math
## 26620 29-1069 291069 Healthcare Practitioner
## 26621 15-1132 151132 Computer, Math
## 26622 15-1132 151132 Computer, Math
## 26623 15-1132 151132 Computer, Math
## 26624 17-2071 172071 Architecture, Engineer
## 26625 15-1199 151199 Computer, Math
## 26626 29-1123 291123 Healthcare Practitioner
## 26627 15-1131 151131 Computer, Math
## 26628 15-1132 151132 Computer, Math
## 26629 17-2141 172141 Architecture, Engineer
## 26630 13-1111 131111 Business, Finance
## 26631 15-1121 151121 Computer, Math
## 26632 15-1133 151133 Computer, Math
## 26633 15-1132 151132 Computer, Math
## 26634 15-1132 151132 Computer, Math
## 26635 15-1132 151132 Computer, Math
## 26636 15-1132 151132 Computer, Math
## 26637 15-1199 151199 Computer, Math
## 26638 15-1132 151132 Computer, Math
## 26639 15-1132 151132 Computer, Math
## 26640 15-1121 151121 Computer, Math
## 26641 13-2011 132011 Business, Finance
## 26642 13-1161 131161 Business, Finance
## 26643 15-2041 152041 Computer, Math
## 26644 15-1133 151133 Computer, Math
## 26645 13-2051 132051 Business, Finance
## 26646 15-1132 151132 Computer, Math
## 26647 13-1111 131111 Business, Finance
## 26648 15-1132 151132 Computer, Math
## 26649 15-1131 151131 Computer, Math
## 26650 25-1032 251032 Education, Training
## 26651 15-2031 152031 Computer, Math
## 26652 29-1199 291199 Healthcare Practitioner
## 26653 15-1134 151134 Computer, Math
## 26654 15-1199 151199 Computer, Math
## 26655 15-1121 151121 Computer, Math
## 26656 15-1199 151199 Computer, Math
## 26657 13-1041 131041 Business, Finance
## 26658 13-1111 131111 Business, Finance
## 26659 15-1132 151132 Computer, Math
## 26660 15-1121 151121 Computer, Math
## 26661 15-1132 151132 Computer, Math
## 26662 17-2141 172141 Architecture, Engineer
## 26663 15-1121 151121 Computer, Math
## 26664 11-3071 113071 Management
## 26665 13-2051 132051 Business, Finance
## 26666 15-1132 151132 Computer, Math
## 26667 13-2051 132051 Business, Finance
## 26668 25-1121 251121 Education, Training
## 26669 15-1132 151132 Computer, Math
## 26670 15-1132 151132 Computer, Math
## 26671 29-1123 291123 Healthcare Practitioner
## 26672 15-1131 151131 Computer, Math
## 26673 29-1069 291069 Healthcare Practitioner
## 26674 15-1132 151132 Computer, Math
## 26675 15-1121 151121 Computer, Math
## 26676 15-1132 151132 Computer, Math
## 26677 15-1132 151132 Computer, Math
## 26678 15-1133 151133 Computer, Math
## 26679 15-1132 151132 Computer, Math
## 26680 13-1081 131081 Business, Finance
## 26681 15-1132 151132 Computer, Math
## 26682 15-1199 151199 Computer, Math
## 26683 15-1132 151132 Computer, Math
## 26684 15-1121 151121 Computer, Math
## 26685 17-3011 173011 Architecture, Engineer
## 26686 15-1199 151199 Computer, Math
## 26687 15-1132 151132 Computer, Math
## 26688 15-1132 151132 Computer, Math
## 26689 19-1029 191029 Life, Physcial, Social Science
## 26690 13-1111 131111 Business, Finance
## 26691 13-1161 131161 Business, Finance
## 26692 15-1121 151121 Computer, Math
## 26693 15-1142 151142 Computer, Math
## 26694 13-2051 132051 Business, Finance
## 26695 15-1121 151121 Computer, Math
## 26696 19-2031 192031 Life, Physcial, Social Science
## 26697 15-1199 151199 Computer, Math
## 26698 13-1111 131111 Business, Finance
## 26699 15-1199 151199 Computer, Math
## 26700 15-2031 152031 Computer, Math
## 26701 15-1199 151199 Computer, Math
## 26702 15-1121 151121 Computer, Math
## 26703 15-1132 151132 Computer, Math
## 26704 27-1021 271021 Media, Design
## 26705 15-1132 151132 Computer, Math
## 26706 15-1132 151132 Computer, Math
## 26707 15-1132 151132 Computer, Math
## 26708 15-1141 151141 Computer, Math
## 26709 15-1132 151132 Computer, Math
## 26710 15-1132 151132 Computer, Math
## 26711 13-1111 131111 Business, Finance
## 26712 15-2041 152041 Computer, Math
## 26713 15-1131 151131 Computer, Math
## 26714 15-1132 151132 Computer, Math
## 26715 15-1142 151142 Computer, Math
## 26716 15-2031 152031 Computer, Math
## 26717 15-1132 151132 Computer, Math
## 26718 15-1132 151132 Computer, Math
## 26719 15-2031 152031 Computer, Math
## 26720 19-1042 191042 Life, Physcial, Social Science
## 26721 25-1071 251071 Education, Training
## 26722 15-1132 151132 Computer, Math
## 26723 15-1121 151121 Computer, Math
## 26724 13-1111 131111 Business, Finance
## 26725 13-2011 132011 Business, Finance
## 26726 15-1131 151131 Computer, Math
## 26727 15-1131 151131 Computer, Math
## 26728 15-1131 151131 Computer, Math
## 26729 15-1199 151199 Computer, Math
## 26730 15-1133 151133 Computer, Math
## 26731 13-1111 131111 Business, Finance
## 26732 15-1132 151132 Computer, Math
## 26733 15-1141 151141 Computer, Math
## 26734 15-1142 151142 Computer, Math
## 26735 15-1132 151132 Computer, Math
## 26736 15-1132 151132 Computer, Math
## 26737 15-1121 151121 Computer, Math
## 26738 13-1041 131041 Business, Finance
## 26739 15-1141 151141 Computer, Math
## 26740 15-1132 151132 Computer, Math
## 26741 15-1132 151132 Computer, Math
## 26742 15-1131 151131 Computer, Math
## 26743 15-1132 151132 Computer, Math
## 26744 27-1011 271011 Media, Design
## 26745 15-1131 151131 Computer, Math
## 26746 17-2071 172071 Architecture, Engineer
## 26747 27-1027 271027 Media, Design
## 26748 13-1161 131161 Business, Finance
## 26749 17-2071 172071 Architecture, Engineer
## 26750 13-2051 132051 Business, Finance
## 26751 15-1199 151199 Computer, Math
## 26752 15-1132 151132 Computer, Math
## 26753 15-1132 151132 Computer, Math
## 26754 17-2051 172051 Architecture, Engineer
## 26755 19-1029 191029 Life, Physcial, Social Science
## 26756 15-1199 151199 Computer, Math
## 26757 15-1132 151132 Computer, Math
## 26758 41-9031 419031 Sales
## 26759 19-1029 191029 Life, Physcial, Social Science
## 26760 15-1132 151132 Computer, Math
## 26761 29-1128 291128 Healthcare Practitioner
## 26762 15-2011 152011 Computer, Math
## 26763 15-1132 151132 Computer, Math
## 26764 15-1199 151199 Computer, Math
## 26765 15-1132 151132 Computer, Math
## 26766 11-1021 111021 Management
## 26767 15-1132 151132 Computer, Math
## 26768 15-1142 151142 Computer, Math
## 26769 15-1133 151133 Computer, Math
## 26770 15-1121 151121 Computer, Math
## 26771 15-1132 151132 Computer, Math
## 26772 15-1132 151132 Computer, Math
## 26773 15-1121 151121 Computer, Math
## 26774 15-1111 151111 Computer, Math
## 26775 15-1121 151121 Computer, Math
## 26776 13-2051 132051 Business, Finance
## 26777 13-2011 132011 Business, Finance
## 26778 15-1132 151132 Computer, Math
## 26779 15-1121 151121 Computer, Math
## 26780 15-1132 151132 Computer, Math
## 26781 15-1133 151133 Computer, Math
## 26782 15-1199 151199 Computer, Math
## 26783 15-1132 151132 Computer, Math
## 26784 15-1132 151132 Computer, Math
## 26785 13-2011 132011 Business, Finance
## 26786 15-1034 151034 Computer, Math
## 26787 15-1143 151143 Computer, Math
## 26788 15-1132 151132 Computer, Math
## 26789 15-1121 151121 Computer, Math
## 26790 15-1133 151133 Computer, Math
## 26791 15-1132 151132 Computer, Math
## 26792 15-1199 151199 Computer, Math
## 26793 15-1131 151131 Computer, Math
## 26794 15-1132 151132 Computer, Math
## 26795 15-1132 151132 Computer, Math
## 26796 15-1143 151143 Computer, Math
## 26797 15-1143 151143 Computer, Math
## 26798 13-1111 131111 Business, Finance
## 26799 15-1199 151199 Computer, Math
## 26800 15-1132 151132 Computer, Math
## 26801 15-1132 151132 Computer, Math
## 26802 15-1133 151133 Computer, Math
## 26803 15-1133 151133 Computer, Math
## 26804 15-1133 151133 Computer, Math
## 26805 17-2112 172112 Architecture, Engineer
## 26806 19-2031 192031 Life, Physcial, Social Science
## 26807 13-1111 131111 Business, Finance
## 26808 15-1132 151132 Computer, Math
## 26809 15-1121 151121 Computer, Math
## 26810 13-2011 132011 Business, Finance
## 26811 17-2081 172081 Architecture, Engineer
## 26812 15-1132 151132 Computer, Math
## 26813 15-1141 151141 Computer, Math
## 26814 15-1121 151121 Computer, Math
## 26815 15-1142 151142 Computer, Math
## 26816 17-2141 172141 Architecture, Engineer
## 26817 15-1132 151132 Computer, Math
## 26818 13-1041 131041 Business, Finance
## 26819 15-1131 151131 Computer, Math
## 26820 15-1121 151121 Computer, Math
## 26821 15-1199 151199 Computer, Math
## 26822 15-1141 151141 Computer, Math
## 26823 15-1132 151132 Computer, Math
## 26824 17-2061 172061 Architecture, Engineer
## 26825 15-1132 151132 Computer, Math
## 26826 15-1199 151199 Computer, Math
## 26827 41-9031 419031 Sales
## 26828 15-1132 151132 Computer, Math
## 26829 25-1193 251193 Education, Training
## 26830 13-2099 132099 Business, Finance
## 26831 15-1132 151132 Computer, Math
## 26832 15-1131 151131 Computer, Math
## 26833 11-3021 113021 Management
## 26834 15-1134 151134 Computer, Math
## 26835 15-1122 151122 Computer, Math
## 26836 15-1121 151121 Computer, Math
## 26837 23-1011 231011 Legal
## 26838 15-1132 151132 Computer, Math
## 26839 19-1012 191012 Life, Physcial, Social Science
## 26840 15-1132 151132 Computer, Math
## 26841 15-1199 151199 Computer, Math
## 26842 11-9111 119111 Management
## 26843 15-1133 151133 Computer, Math
## 26844 29-1123 291123 Healthcare Practitioner
## 26845 13-2051 132051 Business, Finance
## 26846 15-1133 151133 Computer, Math
## 26847 15-1131 151131 Computer, Math
## 26848 15-1142 151142 Computer, Math
## 26849 25-1123 251123 Education, Training
## 26850 15-1121 151121 Computer, Math
## 26851 13-1111 131111 Business, Finance
## 26852 17-2141 172141 Architecture, Engineer
## 26853 17-2112 172112 Architecture, Engineer
## 26854 29-1041 291041 Healthcare Practitioner
## 26855 17-2199 172199 Architecture, Engineer
## 26856 15-1132 151132 Computer, Math
## 26857 15-2031 152031 Computer, Math
## 26858 15-1132 151132 Computer, Math
## 26859 11-3021 113021 Management
## 26860 29-1069 291069 Healthcare Practitioner
## 26861 15-1121 151121 Computer, Math
## 26862 13-2011 132011 Business, Finance
## 26863 15-1143 151143 Computer, Math
## 26864 15-1132 151132 Computer, Math
## 26865 15-1132 151132 Computer, Math
## 26866 15-1132 151132 Computer, Math
## 26867 15-1199 151199 Computer, Math
## 26868 15-1121 151121 Computer, Math
## 26869 13-2011 132011 Business, Finance
## 26870 15-2041 152041 Computer, Math
## 26871 15-1121 151121 Computer, Math
## 26872 15-2041 152041 Computer, Math
## 26873 15-1132 151132 Computer, Math
## 26874 13-2031 132031 Business, Finance
## 26875 17-2071 172071 Architecture, Engineer
## 26876 15-2011 152011 Computer, Math
## 26877 15-1131 151131 Computer, Math
## 26878 15-1121 151121 Computer, Math
## 26879 15-1132 151132 Computer, Math
## 26880 15-1132 151132 Computer, Math
## 26881 29-1069 291069 Healthcare Practitioner
## 26882 43-3031 433031 Others
## 26883 15-2031 152031 Computer, Math
## 26884 15-1131 151131 Computer, Math
## 26885 15-2041 152041 Computer, Math
## 26886 15-1199 151199 Computer, Math
## 26887 27-3031 273031 Media, Design
## 26888 27-1024 271024 Media, Design
## 26889 15-1133 151133 Computer, Math
## 26890 15-1132 151132 Computer, Math
## 26891 19-1042 191042 Life, Physcial, Social Science
## 26892 13-1111 131111 Business, Finance
## 26893 15-1121 151121 Computer, Math
## 26894 15-2031 152031 Computer, Math
## 26895 13-1161 131161 Business, Finance
## 26896 15-2031 152031 Computer, Math
## 26897 13-2051 132051 Business, Finance
## 26898 15-1121 151121 Computer, Math
## 26899 15-1121 151121 Computer, Math
## 26900 15-1143 151143 Computer, Math
## 26901 15-1132 151132 Computer, Math
## 26902 13-1111 131111 Business, Finance
## 26903 15-1142 151142 Computer, Math
## 26904 15-1132 151132 Computer, Math
## 26905 15-1121 151121 Computer, Math
## 26906 15-1121 151121 Computer, Math
## 26907 15-1132 151132 Computer, Math
## 26908 25-2021 252021 Education, Training
## 26909 15-1133 151133 Computer, Math
## 26910 27-1021 271021 Media, Design
## 26911 15-1199 151199 Computer, Math
## 26912 25-1032 251032 Education, Training
## 26913 11-3021 113021 Management
## 26914 15-1132 151132 Computer, Math
## 26915 15-1132 151132 Computer, Math
## 26916 15-1132 151132 Computer, Math
## 26917 15-1132 151132 Computer, Math
## 26918 13-1161 131161 Business, Finance
## 26919 15-1132 151132 Computer, Math
## 26920 13-1111 131111 Business, Finance
## 26921 15-1121 151121 Computer, Math
## 26922 15-1121 151121 Computer, Math
## 26923 13-1081 131081 Business, Finance
## 26924 15-1132 151132 Computer, Math
## 26925 17-2072 172072 Architecture, Engineer
## 26926 15-2041 152041 Computer, Math
## 26927 29-1069 291069 Healthcare Practitioner
## 26928 15-1132 151132 Computer, Math
## 26929 15-1121 151121 Computer, Math
## 26930 13-2051 132051 Business, Finance
## 26931 15-1133 151133 Computer, Math
## 26932 15-1132 151132 Computer, Math
## 26933 13-1081 131081 Business, Finance
## 26934 13-1161 131161 Business, Finance
## 26935 25-1072 251072 Education, Training
## 26936 15-1121 151121 Computer, Math
## 26937 15-1132 151132 Computer, Math
## 26938 19-1029 191029 Life, Physcial, Social Science
## 26939 15-1199 151199 Computer, Math
## 26940 15-1132 151132 Computer, Math
## 26941 17-2051 172051 Architecture, Engineer
## 26942 15-1132 151132 Computer, Math
## 26943 15-1132 151132 Computer, Math
## 26944 15-1142 151142 Computer, Math
## 26945 15-1121 151121 Computer, Math
## 26946 41-9031 419031 Sales
## 26947 15-1199 151199 Computer, Math
## 26948 15-1132 151132 Computer, Math
## 26949 15-1132 151132 Computer, Math
## 26950 15-1121 151121 Computer, Math
## 26951 11-9021 119021 Management
## 26952 15-1199 151199 Computer, Math
## 26953 15-1132 151132 Computer, Math
## 26954 15-1132 151132 Computer, Math
## 26955 13-1151 131151 Business, Finance
## 26956 23-1011 231011 Legal
## 26957 15-1132 151132 Computer, Math
## 26958 19-2031 192031 Life, Physcial, Social Science
## 26959 15-1141 151141 Computer, Math
## 26960 13-1161 131161 Business, Finance
## 26961 11-3021 113021 Management
## 26962 13-2011 132011 Business, Finance
## 26963 15-1132 151132 Computer, Math
## 26964 15-1133 151133 Computer, Math
## 26965 15-1199 151199 Computer, Math
## 26966 13-1111 131111 Business, Finance
## 26967 15-1132 151132 Computer, Math
## 26968 15-1132 151132 Computer, Math
## 26969 19-1042 191042 Life, Physcial, Social Science
## 26970 15-1132 151132 Computer, Math
## 26971 15-1121 151121 Computer, Math
## 26972 15-1133 151133 Computer, Math
## 26973 29-1069 291069 Healthcare Practitioner
## 26974 29-1123 291123 Healthcare Practitioner
## 26975 15-1121 151121 Computer, Math
## 26976 15-1122 151122 Computer, Math
## 26977 29-1063 291063 Healthcare Practitioner
## 26978 15-1133 151133 Computer, Math
## 26979 17-2072 172072 Architecture, Engineer
## 26980 15-1121 151121 Computer, Math
## 26981 15-1141 151141 Computer, Math
## 26982 13-1161 131161 Business, Finance
## 26983 29-1123 291123 Healthcare Practitioner
## 26984 15-1132 151132 Computer, Math
## 26985 15-1132 151132 Computer, Math
## 26986 19-3011 193011 Life, Physcial, Social Science
## 26987 15-1132 151132 Computer, Math
## 26988 15-1199 151199 Computer, Math
## 26989 15-1141 151141 Computer, Math
## 26990 27-1024 271024 Media, Design
## 26991 27-1014 271014 Media, Design
## 26992 15-1132 151132 Computer, Math
## 26993 15-1131 151131 Computer, Math
## 26994 15-1121 151121 Computer, Math
## 26995 15-1132 151132 Computer, Math
## 26996 15-1121 151121 Computer, Math
## 26997 13-2011 132011 Business, Finance
## 26998 15-1121 151121 Computer, Math
## 26999 15-1132 151132 Computer, Math
## 27000 13-1161 131161 Business, Finance
## 27001 17-2131 172131 Architecture, Engineer
## 27002 15-1121 151121 Computer, Math
## 27003 13-2011 132011 Business, Finance
## 27004 15-1143 151143 Computer, Math
## 27005 29-1062 291062 Healthcare Practitioner
## 27006 15-1121 151121 Computer, Math
## 27007 15-1121 151121 Computer, Math
## 27008 11-9021 119021 Management
## 27009 15-1133 151133 Computer, Math
## 27010 27-1024 271024 Media, Design
## 27011 25-2021 252021 Education, Training
## 27012 15-2041 152041 Computer, Math
## 27013 19-1029 191029 Life, Physcial, Social Science
## 27014 15-1121 151121 Computer, Math
## 27015 13-2099 132099 Business, Finance
## 27016 13-1111 131111 Business, Finance
## 27017 13-2011 132011 Business, Finance
## 27018 17-2141 172141 Architecture, Engineer
## 27019 15-1134 151134 Computer, Math
## 27020 15-1133 151133 Computer, Math
## 27021 15-1121 151121 Computer, Math
## 27022 15-1132 151132 Computer, Math
## 27023 15-1132 151132 Computer, Math
## 27024 15-1132 151132 Computer, Math
## 27025 17-2071 172071 Architecture, Engineer
## 27026 15-1132 151132 Computer, Math
## 27027 15-1132 151132 Computer, Math
## 27028 17-2072 172072 Architecture, Engineer
## 27029 29-1069 291069 Healthcare Practitioner
## 27030 15-1131 151131 Computer, Math
## 27031 13-1111 131111 Business, Finance
## 27032 15-2031 152031 Computer, Math
## 27033 25-1065 251065 Education, Training
## 27034 15-1132 151132 Computer, Math
## 27035 15-2041 152041 Computer, Math
## 27036 15-1132 151132 Computer, Math
## 27037 15-1132 151132 Computer, Math
## 27038 15-1132 151132 Computer, Math
## 27039 17-2199 172199 Architecture, Engineer
## 27040 15-1132 151132 Computer, Math
## 27041 13-1161 131161 Business, Finance
## 27042 11-3021 113021 Management
## 27043 11-3021 113021 Management
## 27044 15-1132 151132 Computer, Math
## 27045 15-1132 151132 Computer, Math
## 27046 15-1132 151132 Computer, Math
## 27047 15-1143 151143 Computer, Math
## 27048 17-2071 172071 Architecture, Engineer
## 27049 15-1132 151132 Computer, Math
## 27050 15-1132 151132 Computer, Math
## 27051 15-1121 151121 Computer, Math
## 27052 15-1132 151132 Computer, Math
## 27053 15-1132 151132 Computer, Math
## 27054 15-1199 151199 Computer, Math
## 27055 15-1132 151132 Computer, Math
## 27056 15-1132 151132 Computer, Math
## 27057 15-1132 151132 Computer, Math
## 27058 15-1121 151121 Computer, Math
## 27059 15-1131 151131 Computer, Math
## 27060 27-4021 274021 Media, Design
## 27061 15-1132 151132 Computer, Math
## 27062 15-1131 151131 Computer, Math
## 27063 17-2072 172072 Architecture, Engineer
## 27064 15-1132 151132 Computer, Math
## 27065 13-2051 132051 Business, Finance
## 27066 15-1132 151132 Computer, Math
## 27067 15-1133 151133 Computer, Math
## 27068 17-2072 172072 Architecture, Engineer
## 27069 15-1132 151132 Computer, Math
## 27070 15-1121 151121 Computer, Math
## 27071 15-1132 151132 Computer, Math
## 27072 27-3031 273031 Media, Design
## 27073 15-1199 151199 Computer, Math
## 27074 11-3071 113071 Management
## 27075 15-1121 151121 Computer, Math
## 27076 13-2099 132099 Business, Finance
## 27077 15-1141 151141 Computer, Math
## 27078 13-1161 131161 Business, Finance
## 27079 17-2031 172031 Architecture, Engineer
## 27080 15-1132 151132 Computer, Math
## 27081 15-1132 151132 Computer, Math
## 27082 13-2051 132051 Business, Finance
## 27083 27-3031 273031 Media, Design
## 27084 15-1122 151122 Computer, Math
## 27085 15-1132 151132 Computer, Math
## 27086 15-1132 151132 Computer, Math
## 27087 15-1121 151121 Computer, Math
## 27088 15-1131 151131 Computer, Math
## 27089 13-2051 132051 Business, Finance
## 27090 15-1132 151132 Computer, Math
## 27091 15-1199 151199 Computer, Math
## 27092 19-1042 191042 Life, Physcial, Social Science
## 27093 15-1121 151121 Computer, Math
## 27094 15-1131 151131 Computer, Math
## 27095 15-1121 151121 Computer, Math
## 27096 15-1132 151132 Computer, Math
## 27097 15-1132 151132 Computer, Math
## 27098 17-2141 172141 Architecture, Engineer
## 27099 13-1111 131111 Business, Finance
## 27100 15-1131 151131 Computer, Math
## 27101 15-1134 151134 Computer, Math
## 27102 11-3021 113021 Management
## 27103 15-1199 151199 Computer, Math
## 27104 15-1121 151121 Computer, Math
## 27105 17-2112 172112 Architecture, Engineer
## 27106 15-1134 151134 Computer, Math
## 27107 13-1081 131081 Business, Finance
## 27108 15-1121 151121 Computer, Math
## 27109 15-1121 151121 Computer, Math
## 27110 15-1132 151132 Computer, Math
## 27111 19-1021 191021 Life, Physcial, Social Science
## 27112 15-1199 151199 Computer, Math
## 27113 13-1199 131199 Business, Finance
## 27114 15-2041 152041 Computer, Math
## 27115 15-1131 151131 Computer, Math
## 27116 15-1132 151132 Computer, Math
## 27117 15-1132 151132 Computer, Math
## 27118 15-1142 151142 Computer, Math
## 27119 15-1132 151132 Computer, Math
## 27120 15-1132 151132 Computer, Math
## 27121 17-2141 172141 Architecture, Engineer
## 27122 15-1199 151199 Computer, Math
## 27123 15-1121 151121 Computer, Math
## 27124 29-1123 291123 Healthcare Practitioner
## 27125 19-1013 191013 Life, Physcial, Social Science
## 27126 15-1199 151199 Computer, Math
## 27127 15-1132 151132 Computer, Math
## 27128 11-1021 111021 Management
## 27129 25-4013 254013 Education, Training
## 27130 15-1134 151134 Computer, Math
## 27131 15-1122 151122 Computer, Math
## 27132 15-1121 151121 Computer, Math
## 27133 29-1065 291065 Healthcare Practitioner
## 27134 15-1121 151121 Computer, Math
## 27135 15-1121 151121 Computer, Math
## 27136 29-9099 299099 Healthcare Practitioner
## 27137 15-1199 151199 Computer, Math
## 27138 19-1042 191042 Life, Physcial, Social Science
## 27139 15-1133 151133 Computer, Math
## 27140 15-1199 151199 Computer, Math
## 27141 15-1132 151132 Computer, Math
## 27142 13-1111 131111 Business, Finance
## 27143 15-1121 151121 Computer, Math
## 27144 15-1131 151131 Computer, Math
## 27145 15-1132 151132 Computer, Math
## 27146 15-1132 151132 Computer, Math
## 27147 15-1132 151132 Computer, Math
## 27148 15-1199 151199 Computer, Math
## 27149 15-1199 151199 Computer, Math
## 27150 15-1121 151121 Computer, Math
## 27151 15-1132 151132 Computer, Math
## 27152 15-1133 151133 Computer, Math
## 27153 29-1122 291122 Healthcare Practitioner
## 27154 15-1132 151132 Computer, Math
## 27155 15-1132 151132 Computer, Math
## 27156 17-2072 172072 Architecture, Engineer
## 27157 13-2051 132051 Business, Finance
## 27158 13-2011 132011 Business, Finance
## 27159 15-1133 151133 Computer, Math
## 27160 15-1199 151199 Computer, Math
## 27161 15-1132 151132 Computer, Math
## 27162 11-3021 113021 Management
## 27163 27-1029 271029 Media, Design
## 27164 15-1132 151132 Computer, Math
## 27165 15-1141 151141 Computer, Math
## 27166 15-1132 151132 Computer, Math
## 27167 15-1132 151132 Computer, Math
## 27168 15-1132 151132 Computer, Math
## 27169 11-3061 113061 Management
## 27170 15-1132 151132 Computer, Math
## 27171 15-1134 151134 Computer, Math
## 27172 15-1122 151122 Computer, Math
## 27173 15-1132 151132 Computer, Math
## 27174 15-1132 151132 Computer, Math
## 27175 15-1131 151131 Computer, Math
## 27176 25-2021 252021 Education, Training
## 27177 15-1131 151131 Computer, Math
## 27178 17-2031 172031 Architecture, Engineer
## 27179 15-1132 151132 Computer, Math
## 27180 13-1161 131161 Business, Finance
## 27181 17-2071 172071 Architecture, Engineer
## 27182 15-2041 152041 Computer, Math
## 27183 15-1132 151132 Computer, Math
## 27184 15-1143 151143 Computer, Math
## 27185 15-1131 151131 Computer, Math
## 27186 15-1141 151141 Computer, Math
## 27187 15-1132 151132 Computer, Math
## 27188 15-1121 151121 Computer, Math
## 27189 11-3021 113021 Management
## 27190 11-3021 113021 Management
## 27191 15-1111 151111 Computer, Math
## 27192 17-2131 172131 Architecture, Engineer
## 27193 15-1121 151121 Computer, Math
## 27194 15-1132 151132 Computer, Math
## 27195 15-1199 151199 Computer, Math
## 27196 15-1132 151132 Computer, Math
## 27197 15-1199 151199 Computer, Math
## 27198 11-1021 111021 Management
## 27199 13-1111 131111 Business, Finance
## 27200 15-1121 151121 Computer, Math
## 27201 11-3031 113031 Management
## 27202 17-1011 171011 Architecture, Engineer
## 27203 15-1132 151132 Computer, Math
## 27204 15-1199 151199 Computer, Math
## 27205 15-1132 151132 Computer, Math
## 27206 15-1132 151132 Computer, Math
## 27207 15-1133 151133 Computer, Math
## 27208 15-1143 151143 Computer, Math
## 27209 15-1132 151132 Computer, Math
## 27210 13-2099 132099 Business, Finance
## 27211 15-1121 151121 Computer, Math
## 27212 15-1121 151121 Computer, Math
## 27213 17-2051 172051 Architecture, Engineer
## 27214 15-1132 151132 Computer, Math
## 27215 15-1199 151199 Computer, Math
## 27216 15-1132 151132 Computer, Math
## 27217 15-1132 151132 Computer, Math
## 27218 15-1121 151121 Computer, Math
## 27219 15-1132 151132 Computer, Math
## 27220 15-1132 151132 Computer, Math
## 27221 13-2051 132051 Business, Finance
## 27222 15-1132 151132 Computer, Math
## 27223 15-1132 151132 Computer, Math
## 27224 15-1142 151142 Computer, Math
## 27225 15-2031 152031 Computer, Math
## 27226 17-2131 172131 Architecture, Engineer
## 27227 15-2041 152041 Computer, Math
## 27228 15-1132 151132 Computer, Math
## 27229 13-1161 131161 Business, Finance
## 27230 15-1132 151132 Computer, Math
## 27231 15-1132 151132 Computer, Math
## 27232 19-2031 192031 Life, Physcial, Social Science
## 27233 15-1132 151132 Computer, Math
## 27234 15-1121 151121 Computer, Math
## 27235 15-1199 151199 Computer, Math
## 27236 13-2011 132011 Business, Finance
## 27237 15-1132 151132 Computer, Math
## 27238 15-1132 151132 Computer, Math
## 27239 15-1121 151121 Computer, Math
## 27240 15-2031 152031 Computer, Math
## 27241 15-1121 151121 Computer, Math
## 27242 15-1121 151121 Computer, Math
## 27243 15-1121 151121 Computer, Math
## 27244 15-1132 151132 Computer, Math
## 27245 15-2031 152031 Computer, Math
## 27246 15-1132 151132 Computer, Math
## 27247 11-3051 113051 Management
## 27248 15-1199 151199 Computer, Math
## 27249 15-1141 151141 Computer, Math
## 27250 15-1132 151132 Computer, Math
## 27251 15-1132 151132 Computer, Math
## 27252 15-1133 151133 Computer, Math
## 27253 15-1132 151132 Computer, Math
## 27254 19-1022 191022 Life, Physcial, Social Science
## 27255 15-1199 151199 Computer, Math
## 27256 13-1071 131071 Business, Finance
## 27257 17-2199 172199 Architecture, Engineer
## 27258 15-1199 151199 Computer, Math
## 27259 17-2141 172141 Architecture, Engineer
## 27260 19-4091 194091 Life, Physcial, Social Science
## 27261 15-1132 151132 Computer, Math
## 27262 15-1132 151132 Computer, Math
## 27263 15-1132 151132 Computer, Math
## 27264 15-1132 151132 Computer, Math
## 27265 15-1133 151133 Computer, Math
## 27266 11-3021 113021 Management
## 27267 15-1199 151199 Computer, Math
## 27268 25-3099 253099 Education, Training
## 27269 13-2011 132011 Business, Finance
## 27270 19-1029 191029 Life, Physcial, Social Science
## 27271 17-2141 172141 Architecture, Engineer
## 27272 15-2031 152031 Computer, Math
## 27273 11-3021 113021 Management
## 27274 15-1133 151133 Computer, Math
## 27275 15-1133 151133 Computer, Math
## 27276 15-1132 151132 Computer, Math
## 27277 15-1132 151132 Computer, Math
## 27278 15-1132 151132 Computer, Math
## 27279 19-2031 192031 Life, Physcial, Social Science
## 27280 15-1132 151132 Computer, Math
## 27281 13-2011 132011 Business, Finance
## 27282 15-1132 151132 Computer, Math
## 27283 15-1132 151132 Computer, Math
## 27284 19-2021 192021 Life, Physcial, Social Science
## 27285 19-2031 192031 Life, Physcial, Social Science
## 27286 15-1132 151132 Computer, Math
## 27287 15-1121 151121 Computer, Math
## 27288 15-1132 151132 Computer, Math
## 27289 13-2051 132051 Business, Finance
## 27290 19-1029 191029 Life, Physcial, Social Science
## 27291 15-1199 151199 Computer, Math
## 27292 15-2041 152041 Computer, Math
## 27293 15-2041 152041 Computer, Math
## 27294 15-1199 151199 Computer, Math
## 27295 15-1132 151132 Computer, Math
## 27296 15-1121 151121 Computer, Math
## 27297 15-1199 151199 Computer, Math
## 27298 17-2071 172071 Architecture, Engineer
## 27299 15-1132 151132 Computer, Math
## 27300 17-2071 172071 Architecture, Engineer
## 27301 15-1132 151132 Computer, Math
## 27302 15-1131 151131 Computer, Math
## 27303 29-1065 291065 Healthcare Practitioner
## 27304 15-1132 151132 Computer, Math
## 27305 15-1199 151199 Computer, Math
## 27306 15-1132 151132 Computer, Math
## 27307 29-1063 291063 Healthcare Practitioner
## 27308 15-1133 151133 Computer, Math
## 27309 29-1199 291199 Healthcare Practitioner
## 27310 15-1133 151133 Computer, Math
## 27311 15-1199 151199 Computer, Math
## 27312 15-1121 151121 Computer, Math
## 27313 27-3022 273022 Media, Design
## 27314 11-3021 113021 Management
## 27315 19-2012 192012 Life, Physcial, Social Science
## 27316 15-1132 151132 Computer, Math
## 27317 13-2099 132099 Business, Finance
## 27318 15-1133 151133 Computer, Math
## 27319 15-1142 151142 Computer, Math
## 27320 15-1132 151132 Computer, Math
## 27321 15-1132 151132 Computer, Math
## 27322 15-1132 151132 Computer, Math
## 27323 13-2051 132051 Business, Finance
## 27324 17-2199 172199 Architecture, Engineer
## 27325 17-3029 173029 Architecture, Engineer
## 27326 15-1142 151142 Computer, Math
## 27327 15-1132 151132 Computer, Math
## 27328 15-1143 151143 Computer, Math
## 27329 15-1143 151143 Computer, Math
## 27330 29-1051 291051 Healthcare Practitioner
## 27331 15-1133 151133 Computer, Math
## 27332 15-1142 151142 Computer, Math
## 27333 15-1199 151199 Computer, Math
## 27334 15-1133 151133 Computer, Math
## 27335 15-1132 151132 Computer, Math
## 27336 19-1021 191021 Life, Physcial, Social Science
## 27337 15-1133 151133 Computer, Math
## 27338 15-1132 151132 Computer, Math
## 27339 15-1199 151199 Computer, Math
## 27340 15-1132 151132 Computer, Math
## 27341 11-2021 112021 Management
## 27342 17-2071 172071 Architecture, Engineer
## 27343 15-1121 151121 Computer, Math
## 27344 15-1132 151132 Computer, Math
## 27345 15-1132 151132 Computer, Math
## 27346 13-1081 131081 Business, Finance
## 27347 15-1133 151133 Computer, Math
## 27348 15-1199 151199 Computer, Math
## 27349 15-1132 151132 Computer, Math
## 27350 29-1128 291128 Healthcare Practitioner
## 27351 15-1121 151121 Computer, Math
## 27352 13-2011 132011 Business, Finance
## 27353 15-2041 152041 Computer, Math
## 27354 15-1121 151121 Computer, Math
## 27355 15-1133 151133 Computer, Math
## 27356 13-2099 132099 Business, Finance
## 27357 15-1199 151199 Computer, Math
## 27358 15-1199 151199 Computer, Math
## 27359 17-2112 172112 Architecture, Engineer
## 27360 11-3021 113021 Management
## 27361 17-2031 172031 Architecture, Engineer
## 27362 15-1134 151134 Computer, Math
## 27363 15-1132 151132 Computer, Math
## 27364 15-1132 151132 Computer, Math
## 27365 15-1132 151132 Computer, Math
## 27366 11-3021 113021 Management
## 27367 15-1132 151132 Computer, Math
## 27368 15-1132 151132 Computer, Math
## 27369 15-1132 151132 Computer, Math
## 27370 27-1024 271024 Media, Design
## 27371 15-1131 151131 Computer, Math
## 27372 17-2199 172199 Architecture, Engineer
## 27373 19-2042 192042 Life, Physcial, Social Science
## 27374 15-1199 151199 Computer, Math
## 27375 15-1133 151133 Computer, Math
## 27376 15-1132 151132 Computer, Math
## 27377 13-2051 132051 Business, Finance
## 27378 15-1121 151121 Computer, Math
## 27379 15-1199 151199 Computer, Math
## 27380 15-1132 151132 Computer, Math
## 27381 15-1199 151199 Computer, Math
## 27382 15-1132 151132 Computer, Math
## 27383 15-1132 151132 Computer, Math
## 27384 15-1132 151132 Computer, Math
## 27385 15-1121 151121 Computer, Math
## 27386 15-1121 151121 Computer, Math
## 27387 17-2112 172112 Architecture, Engineer
## 27388 15-1199 151199 Computer, Math
## 27389 17-2072 172072 Architecture, Engineer
## 27390 13-1071 131071 Business, Finance
## 27391 15-1132 151132 Computer, Math
## 27392 15-1132 151132 Computer, Math
## 27393 17-2141 172141 Architecture, Engineer
## 27394 15-1121 151121 Computer, Math
## 27395 15-1133 151133 Computer, Math
## 27396 15-1132 151132 Computer, Math
## 27397 15-1121 151121 Computer, Math
## 27398 19-1021 191021 Life, Physcial, Social Science
## 27399 15-1132 151132 Computer, Math
## 27400 15-1199 151199 Computer, Math
## 27401 17-2071 172071 Architecture, Engineer
## 27402 29-1069 291069 Healthcare Practitioner
## 27403 15-1132 151132 Computer, Math
## 27404 15-1132 151132 Computer, Math
## 27405 15-1131 151131 Computer, Math
## 27406 15-1132 151132 Computer, Math
## 27407 15-1121 151121 Computer, Math
## 27408 15-1131 151131 Computer, Math
## 27409 15-1132 151132 Computer, Math
## 27410 15-1131 151131 Computer, Math
## 27411 19-1013 191013 Life, Physcial, Social Science
## 27412 11-3071 113071 Management
## 27413 15-1132 151132 Computer, Math
## 27414 15-1134 151134 Computer, Math
## 27415 15-1132 151132 Computer, Math
## 27416 15-1132 151132 Computer, Math
## 27417 15-1132 151132 Computer, Math
## 27418 15-1133 151133 Computer, Math
## 27419 15-1132 151132 Computer, Math
## 27420 15-1132 151132 Computer, Math
## 27421 17-3029 173029 Architecture, Engineer
## 27422 15-1132 151132 Computer, Math
## 27423 19-2042 192042 Life, Physcial, Social Science
## 27424 15-1121 151121 Computer, Math
## 27425 15-1132 151132 Computer, Math
## 27426 15-1121 151121 Computer, Math
## 27427 15-1199 151199 Computer, Math
## 27428 15-1132 151132 Computer, Math
## 27429 15-1132 151132 Computer, Math
## 27430 15-1121 151121 Computer, Math
## 27431 15-1132 151132 Computer, Math
## 27432 15-1132 151132 Computer, Math
## 27433 15-1199 151199 Computer, Math
## 27434 15-1132 151132 Computer, Math
## 27435 15-1132 151132 Computer, Math
## 27436 19-1021 191021 Life, Physcial, Social Science
## 27437 15-1121 151121 Computer, Math
## 27438 15-1121 151121 Computer, Math
## 27439 15-1199 151199 Computer, Math
## 27440 15-1121 151121 Computer, Math
## 27441 15-1199 151199 Computer, Math
## 27442 17-2141 172141 Architecture, Engineer
## 27443 13-1111 131111 Business, Finance
## 27444 15-1132 151132 Computer, Math
## 27445 11-3051 113051 Management
## 27446 15-1199 151199 Computer, Math
## 27447 15-1132 151132 Computer, Math
## 27448 15-1132 151132 Computer, Math
## 27449 15-1199 151199 Computer, Math
## 27450 15-1132 151132 Computer, Math
## 27451 15-1132 151132 Computer, Math
## 27452 15-1121 151121 Computer, Math
## 27453 15-1132 151132 Computer, Math
## 27454 15-1132 151132 Computer, Math
## 27455 15-1132 151132 Computer, Math
## 27456 15-1142 151142 Computer, Math
## 27457 15-1132 151132 Computer, Math
## 27458 15-2031 152031 Computer, Math
## 27459 15-1132 151132 Computer, Math
## 27460 15-1121 151121 Computer, Math
## 27461 15-1134 151134 Computer, Math
## 27462 29-1123 291123 Healthcare Practitioner
## 27463 13-1111 131111 Business, Finance
## 27464 15-1132 151132 Computer, Math
## 27465 11-3031 113031 Management
## 27466 15-1132 151132 Computer, Math
## 27467 15-1131 151131 Computer, Math
## 27468 15-1141 151141 Computer, Math
## 27469 15-1199 151199 Computer, Math
## 27470 15-1132 151132 Computer, Math
## 27471 15-1141 151141 Computer, Math
## 27472 15-1132 151132 Computer, Math
## 27473 15-1132 151132 Computer, Math
## 27474 17-2071 172071 Architecture, Engineer
## 27475 15-1121 151121 Computer, Math
## 27476 15-1132 151132 Computer, Math
## 27477 15-1132 151132 Computer, Math
## 27478 15-1132 151132 Computer, Math
## 27479 17-2141 172141 Architecture, Engineer
## 27480 15-1132 151132 Computer, Math
## 27481 17-2072 172072 Architecture, Engineer
## 27482 15-1133 151133 Computer, Math
## 27483 15-1199 151199 Computer, Math
## 27484 15-1199 151199 Computer, Math
## 27485 19-3099 193099 Life, Physcial, Social Science
## 27486 15-1132 151132 Computer, Math
## 27487 15-1121 151121 Computer, Math
## 27488 15-1132 151132 Computer, Math
## 27489 19-1042 191042 Life, Physcial, Social Science
## 27490 19-1022 191022 Life, Physcial, Social Science
## 27491 13-1111 131111 Business, Finance
## 27492 15-1199 151199 Computer, Math
## 27493 15-1121 151121 Computer, Math
## 27494 15-1121 151121 Computer, Math
## 27495 17-2072 172072 Architecture, Engineer
## 27496 15-1133 151133 Computer, Math
## 27497 15-1121 151121 Computer, Math
## 27498 15-1121 151121 Computer, Math
## 27499 15-1131 151131 Computer, Math
## 27500 15-1199 151199 Computer, Math
## 27501 19-2031 192031 Life, Physcial, Social Science
## 27502 19-1029 191029 Life, Physcial, Social Science
## 27503 15-1132 151132 Computer, Math
## 27504 15-1132 151132 Computer, Math
## 27505 15-1199 151199 Computer, Math
## 27506 15-1132 151132 Computer, Math
## 27507 15-1199 151199 Computer, Math
## 27508 15-1141 151141 Computer, Math
## 27509 27-1025 271025 Media, Design
## 27510 13-2011 132011 Business, Finance
## 27511 15-1199 151199 Computer, Math
## 27512 15-1132 151132 Computer, Math
## 27513 13-1111 131111 Business, Finance
## 27514 15-1121 151121 Computer, Math
## 27515 15-1132 151132 Computer, Math
## 27516 15-1199 151199 Computer, Math
## 27517 15-1199 151199 Computer, Math
## 27518 17-2131 172131 Architecture, Engineer
## 27519 11-3021 113021 Management
## 27520 25-1032 251032 Education, Training
## 27521 13-2099 132099 Business, Finance
## 27522 15-1132 151132 Computer, Math
## 27523 11-1021 111021 Management
## 27524 11-3021 113021 Management
## 27525 15-1132 151132 Computer, Math
## 27526 25-1122 251122 Education, Training
## 27527 15-1132 151132 Computer, Math
## 27528 15-1199 151199 Computer, Math
## 27529 15-2031 152031 Computer, Math
## 27530 15-1142 151142 Computer, Math
## 27531 15-1132 151132 Computer, Math
## 27532 15-1132 151132 Computer, Math
## 27533 13-2061 132061 Business, Finance
## 27534 15-1199 151199 Computer, Math
## 27535 15-1132 151132 Computer, Math
## 27536 25-2052 252052 Education, Training
## 27537 15-1132 151132 Computer, Math
## 27538 15-1132 151132 Computer, Math
## 27539 15-1132 151132 Computer, Math
## 27540 15-1121 151121 Computer, Math
## 27541 15-1132 151132 Computer, Math
## 27542 15-1121 151121 Computer, Math
## 27543 25-1071 251071 Education, Training
## 27544 15-1132 151132 Computer, Math
## 27545 17-2071 172071 Architecture, Engineer
## 27546 15-1133 151133 Computer, Math
## 27547 15-1132 151132 Computer, Math
## 27548 17-2041 172041 Architecture, Engineer
## 27549 13-1111 131111 Business, Finance
## 27550 15-1199 151199 Computer, Math
## 27551 15-1132 151132 Computer, Math
## 27552 15-1121 151121 Computer, Math
## 27553 15-1133 151133 Computer, Math
## 27554 15-1199 151199 Computer, Math
## 27555 17-2061 172061 Architecture, Engineer
## 27556 29-1051 291051 Healthcare Practitioner
## 27557 19-1021 191021 Life, Physcial, Social Science
## 27558 15-1151 151151 Computer, Math
## 27559 15-1132 151132 Computer, Math
## 27560 17-2071 172071 Architecture, Engineer
## 27561 19-1021 191021 Life, Physcial, Social Science
## 27562 15-1131 151131 Computer, Math
## 27563 17-2072 172072 Architecture, Engineer
## 27564 15-1132 151132 Computer, Math
## 27565 15-1132 151132 Computer, Math
## 27566 13-2011 132011 Business, Finance
## 27567 15-1132 151132 Computer, Math
## 27568 29-1021 291021 Healthcare Practitioner
## 27569 15-1199 151199 Computer, Math
## 27570 15-1121 151121 Computer, Math
## 27571 13-2051 132051 Business, Finance
## 27572 15-1132 151132 Computer, Math
## 27573 15-1132 151132 Computer, Math
## 27574 15-1121 151121 Computer, Math
## 27575 15-1199 151199 Computer, Math
## 27576 15-1132 151132 Computer, Math
## 27577 15-1132 151132 Computer, Math
## 27578 17-2071 172071 Architecture, Engineer
## 27579 13-2051 132051 Business, Finance
## 27580 13-1161 131161 Business, Finance
## 27581 15-1121 151121 Computer, Math
## 27582 15-1199 151199 Computer, Math
## 27583 13-2011 132011 Business, Finance
## 27584 15-1141 151141 Computer, Math
## 27585 15-1132 151132 Computer, Math
## 27586 19-2032 192032 Life, Physcial, Social Science
## 27587 25-1021 251021 Education, Training
## 27588 15-1132 151132 Computer, Math
## 27589 15-1199 151199 Computer, Math
## 27590 13-1081 131081 Business, Finance
## 27591 15-1121 151121 Computer, Math
## 27592 15-1132 151132 Computer, Math
## 27593 15-1121 151121 Computer, Math
## 27594 15-1131 151131 Computer, Math
## 27595 13-1161 131161 Business, Finance
## 27596 15-1131 151131 Computer, Math
## 27597 15-2031 152031 Computer, Math
## 27598 15-1121 151121 Computer, Math
## 27599 15-1132 151132 Computer, Math
## 27600 15-1132 151132 Computer, Math
## 27601 15-1134 151134 Computer, Math
## 27602 15-2041 152041 Computer, Math
## 27603 15-1132 151132 Computer, Math
## 27604 15-1132 151132 Computer, Math
## 27605 15-1132 151132 Computer, Math
## 27606 15-1199 151199 Computer, Math
## 27607 15-2031 152031 Computer, Math
## 27608 19-1029 191029 Life, Physcial, Social Science
## 27609 19-1021 191021 Life, Physcial, Social Science
## 27610 15-1199 151199 Computer, Math
## 27611 13-1111 131111 Business, Finance
## 27612 15-1132 151132 Computer, Math
## 27613 15-2041 152041 Computer, Math
## 27614 13-2051 132051 Business, Finance
## 27615 15-1121 151121 Computer, Math
## 27616 17-2141 172141 Architecture, Engineer
## 27617 15-1132 151132 Computer, Math
## 27618 15-1131 151131 Computer, Math
## 27619 15-1199 151199 Computer, Math
## 27620 15-1134 151134 Computer, Math
## 27621 15-1132 151132 Computer, Math
## 27622 15-1132 151132 Computer, Math
## 27623 15-1121 151121 Computer, Math
## 27624 15-1133 151133 Computer, Math
## 27625 15-1132 151132 Computer, Math
## 27626 15-1199 151199 Computer, Math
## 27627 15-1132 151132 Computer, Math
## 27628 19-1042 191042 Life, Physcial, Social Science
## 27629 15-1132 151132 Computer, Math
## 27630 15-1199 151199 Computer, Math
## 27631 15-1199 151199 Computer, Math
## 27632 17-2072 172072 Architecture, Engineer
## 27633 15-1142 151142 Computer, Math
## 27634 15-1132 151132 Computer, Math
## 27635 15-1132 151132 Computer, Math
## 27636 15-1141 151141 Computer, Math
## 27637 15-1131 151131 Computer, Math
## 27638 15-2031 152031 Computer, Math
## 27639 29-1051 291051 Healthcare Practitioner
## 27640 15-1132 151132 Computer, Math
## 27641 19-1042 191042 Life, Physcial, Social Science
## 27642 15-1133 151133 Computer, Math
## 27643 15-1132 151132 Computer, Math
## 27644 15-1132 151132 Computer, Math
## 27645 15-1131 151131 Computer, Math
## 27646 19-1011 191011 Life, Physcial, Social Science
## 27647 15-1199 151199 Computer, Math
## 27648 15-1132 151132 Computer, Math
## 27649 15-1131 151131 Computer, Math
## 27650 15-2011 152011 Computer, Math
## 27651 15-1132 151132 Computer, Math
## 27652 15-2031 152031 Computer, Math
## 27653 15-1132 151132 Computer, Math
## 27654 15-1132 151132 Computer, Math
## 27655 13-2099 132099 Business, Finance
## 27656 15-2021 152021 Computer, Math
## 27657 27-1011 271011 Media, Design
## 27658 15-1132 151132 Computer, Math
## 27659 15-1121 151121 Computer, Math
## 27660 15-1199 151199 Computer, Math
## 27661 15-1132 151132 Computer, Math
## 27662 15-1142 151142 Computer, Math
## 27663 15-1132 151132 Computer, Math
## 27664 15-1132 151132 Computer, Math
## 27665 15-1133 151133 Computer, Math
## 27666 15-1132 151132 Computer, Math
## 27667 15-1132 151132 Computer, Math
## 27668 15-1132 151132 Computer, Math
## 27669 15-1131 151131 Computer, Math
## 27670 15-1132 151132 Computer, Math
## 27671 15-1132 151132 Computer, Math
## 27672 25-1032 251032 Education, Training
## 27673 15-1132 151132 Computer, Math
## 27674 15-1199 151199 Computer, Math
## 27675 13-2051 132051 Business, Finance
## 27676 15-1121 151121 Computer, Math
## 27677 15-1121 151121 Computer, Math
## 27678 15-1132 151132 Computer, Math
## 27679 15-1132 151132 Computer, Math
## 27680 15-1132 151132 Computer, Math
## 27681 17-2071.00 172071 Architecture, Engineer
## 27682 15-1132 151132 Computer, Math
## 27683 15-1132 151132 Computer, Math
## 27684 15-1199 151199 Computer, Math
## 27685 13-1111 131111 Business, Finance
## 27686 17-2141 172141 Architecture, Engineer
## 27687 15-1199 151199 Computer, Math
## 27688 15-1121 151121 Computer, Math
## 27689 15-1132 151132 Computer, Math
## 27690 15-1133 151133 Computer, Math
## 27691 15-1132 151132 Computer, Math
## 27692 15-1132 151132 Computer, Math
## 27693 13-2051 132051 Business, Finance
## 27694 15-1132 151132 Computer, Math
## 27695 15-1132 151132 Computer, Math
## 27696 25-1063 251063 Education, Training
## 27697 15-1121 151121 Computer, Math
## 27698 13-1161 131161 Business, Finance
## 27699 15-1199 151199 Computer, Math
## 27700 15-1141 151141 Computer, Math
## 27701 15-1121 151121 Computer, Math
## 27702 15-1132 151132 Computer, Math
## 27703 15-1133 151133 Computer, Math
## 27704 15-1133 151133 Computer, Math
## 27705 15-1199 151199 Computer, Math
## 27706 15-1142 151142 Computer, Math
## 27707 15-1199 151199 Computer, Math
## 27708 29-1122 291122 Healthcare Practitioner
## 27709 15-1132 151132 Computer, Math
## 27710 15-1132 151132 Computer, Math
## 27711 15-1199 151199 Computer, Math
## 27712 15-1133 151133 Computer, Math
## 27713 25-1124 251124 Education, Training
## 27714 15-1131 151131 Computer, Math
## 27715 15-1132 151132 Computer, Math
## 27716 11-2021 112021 Management
## 27717 15-1121 151121 Computer, Math
## 27718 15-1132 151132 Computer, Math
## 27719 15-1132 151132 Computer, Math
## 27720 15-1132 151132 Computer, Math
## 27721 15-1121 151121 Computer, Math
## 27722 15-1121 151121 Computer, Math
## 27723 15-1121 151121 Computer, Math
## 27724 15-1132 151132 Computer, Math
## 27725 15-1132 151132 Computer, Math
## 27726 15-2031 152031 Computer, Math
## 27727 13-1141 131141 Business, Finance
## 27728 15-1121 151121 Computer, Math
## 27729 15-1121 151121 Computer, Math
## 27730 13-1111 131111 Business, Finance
## 27731 15-1122 151122 Computer, Math
## 27732 15-1132 151132 Computer, Math
## 27733 15-1121 151121 Computer, Math
## 27734 15-1132 151132 Computer, Math
## 27735 15-1132 151132 Computer, Math
## 27736 25-2054 252054 Education, Training
## 27737 15-1132 151132 Computer, Math
## 27738 15-1132 151132 Computer, Math
## 27739 15-1131 151131 Computer, Math
## 27740 15-1199 151199 Computer, Math
## 27741 15-2031 152031 Computer, Math
## 27742 15-1121 151121 Computer, Math
## 27743 15-1121 151121 Computer, Math
## 27744 15-2031 152031 Computer, Math
## 27745 15-1132 151132 Computer, Math
## 27746 17-2072 172072 Architecture, Engineer
## 27747 17-2072 172072 Architecture, Engineer
## 27748 15-1121 151121 Computer, Math
## 27749 25-1011 251011 Education, Training
## 27750 15-1199 151199 Computer, Math
## 27751 25-1067 251067 Education, Training
## 27752 15-1133 151133 Computer, Math
## 27753 23-1011 231011 Legal
## 27754 15-1121 151121 Computer, Math
## 27755 17-2072 172072 Architecture, Engineer
## 27756 15-1132 151132 Computer, Math
## 27757 15-1132 151132 Computer, Math
## 27758 15-1199 151199 Computer, Math
## 27759 15-1132 151132 Computer, Math
## 27760 15-1121 151121 Computer, Math
## 27761 15-1132 151132 Computer, Math
## 27762 15-1199 151199 Computer, Math
## 27763 15-1199 151199 Computer, Math
## 27764 15-1199 151199 Computer, Math
## 27765 15-1132 151132 Computer, Math
## 27766 15-1121 151121 Computer, Math
## 27767 19-1011 191011 Life, Physcial, Social Science
## 27768 15-1132 151132 Computer, Math
## 27769 15-1132 151132 Computer, Math
## 27770 17-2141 172141 Architecture, Engineer
## 27771 15-1199 151199 Computer, Math
## 27772 15-1132 151132 Computer, Math
## 27773 15-1132 151132 Computer, Math
## 27774 19-1029 191029 Life, Physcial, Social Science
## 27775 15-1132 151132 Computer, Math
## 27776 15-1132 151132 Computer, Math
## 27777 17-2071 172071 Architecture, Engineer
## 27778 15-1133 151133 Computer, Math
## 27779 15-1121 151121 Computer, Math
## 27780 23-1011 231011 Legal
## 27781 13-2011 132011 Business, Finance
## 27782 15-1132 151132 Computer, Math
## 27783 15-1133 151133 Computer, Math
## 27784 15-1132 151132 Computer, Math
## 27785 15-1133 151133 Computer, Math
## 27786 15-1121 151121 Computer, Math
## 27787 15-1132 151132 Computer, Math
## 27788 25-1121 251121 Education, Training
## 27789 15-1132 151132 Computer, Math
## 27790 15-1132 151132 Computer, Math
## 27791 15-1142 151142 Computer, Math
## 27792 13-2011 132011 Business, Finance
## 27793 15-1132 151132 Computer, Math
## 27794 15-1199 151199 Computer, Math
## 27795 29-1127 291127 Healthcare Practitioner
## 27796 15-1121 151121 Computer, Math
## 27797 15-1199 151199 Computer, Math
## 27798 19-1021 191021 Life, Physcial, Social Science
## 27799 15-1132 151132 Computer, Math
## 27800 15-1199 151199 Computer, Math
## 27801 15-1121 151121 Computer, Math
## 27802 15-1132 151132 Computer, Math
## 27803 19-2031 192031 Life, Physcial, Social Science
## 27804 15-1199 151199 Computer, Math
## 27805 15-1121 151121 Computer, Math
## 27806 15-1132 151132 Computer, Math
## 27807 15-1132 151132 Computer, Math
## 27808 15-1121 151121 Computer, Math
## 27809 15-1132 151132 Computer, Math
## 27810 15-1132 151132 Computer, Math
## 27811 15-1151 151151 Computer, Math
## 27812 29-1066 291066 Healthcare Practitioner
## 27813 17-2141 172141 Architecture, Engineer
## 27814 11-9199 119199 Management
## 27815 15-1132 151132 Computer, Math
## 27816 15-1122 151122 Computer, Math
## 27817 29-2011 292011 Healthcare Practitioner
## 27818 15-1121 151121 Computer, Math
## 27819 15-1132 151132 Computer, Math
## 27820 15-1131 151131 Computer, Math
## 27821 15-1199 151199 Computer, Math
## 27822 15-1132 151132 Computer, Math
## 27823 15-1132 151132 Computer, Math
## 27824 15-2041 152041 Computer, Math
## 27825 15-1121 151121 Computer, Math
## 27826 15-1121 151121 Computer, Math
## 27827 17-2112 172112 Architecture, Engineer
## 27828 11-3031 113031 Management
## 27829 11-9051 119051 Management
## 27830 15-1132 151132 Computer, Math
## 27831 25-3099 253099 Education, Training
## 27832 13-2011 132011 Business, Finance
## 27833 11-3021 113021 Management
## 27834 15-1133 151133 Computer, Math
## 27835 15-1131 151131 Computer, Math
## 27836 15-1132 151132 Computer, Math
## 27837 15-1121 151121 Computer, Math
## 27838 17-2051 172051 Architecture, Engineer
## 27839 15-1121 151121 Computer, Math
## 27840 17-2071 172071 Architecture, Engineer
## 27841 15-1141 151141 Computer, Math
## 27842 15-1132 151132 Computer, Math
## 27843 15-1121 151121 Computer, Math
## 27844 13-2051 132051 Business, Finance
## 27845 17-2072 172072 Architecture, Engineer
## 27846 15-1132 151132 Computer, Math
## 27847 15-1199 151199 Computer, Math
## 27848 15-1132 151132 Computer, Math
## 27849 15-1132 151132 Computer, Math
## 27850 15-1121 151121 Computer, Math
## 27851 13-2011 132011 Business, Finance
## 27852 15-1132 151132 Computer, Math
## 27853 17-2112 172112 Architecture, Engineer
## 27854 15-1132 151132 Computer, Math
## 27855 15-1132 151132 Computer, Math
## 27856 15-2031 152031 Computer, Math
## 27857 17-2051 172051 Architecture, Engineer
## 27858 15-1132 151132 Computer, Math
## 27859 15-1131 151131 Computer, Math
## 27860 13-1111 131111 Business, Finance
## 27861 15-1131 151131 Computer, Math
## 27862 19-1042 191042 Life, Physcial, Social Science
## 27863 15-1199 151199 Computer, Math
## 27864 15-1121 151121 Computer, Math
## 27865 15-1199 151199 Computer, Math
## 27866 29-1062 291062 Healthcare Practitioner
## 27867 15-1121 151121 Computer, Math
## 27868 15-1132 151132 Computer, Math
## 27869 15-1132 151132 Computer, Math
## 27870 15-1133 151133 Computer, Math
## 27871 15-1132 151132 Computer, Math
## 27872 25-2031 252031 Education, Training
## 27873 15-1141 151141 Computer, Math
## 27874 11-1011 111011 Management
## 27875 15-1199 151199 Computer, Math
## 27876 15-1121 151121 Computer, Math
## 27877 25-1071 251071 Education, Training
## 27878 17-2199 172199 Architecture, Engineer
## 27879 15-1132 151132 Computer, Math
## 27880 11-3021 113021 Management
## 27881 15-1132 151132 Computer, Math
## 27882 25-1071 251071 Education, Training
## 27883 17-2072 172072 Architecture, Engineer
## 27884 15-1131 151131 Computer, Math
## 27885 15-1122 151122 Computer, Math
## 27886 29-1069 291069 Healthcare Practitioner
## 27887 15-1132 151132 Computer, Math
## 27888 17-2041 172041 Architecture, Engineer
## 27889 15-1131 151131 Computer, Math
## 27890 13-1111 131111 Business, Finance
## 27891 17-2061 172061 Architecture, Engineer
## 27892 15-1131 151131 Computer, Math
## 27893 17-2199 172199 Architecture, Engineer
## 27894 15-1121 151121 Computer, Math
## 27895 15-1134 151134 Computer, Math
## 27896 15-1142 151142 Computer, Math
## 27897 29-1063 291063 Healthcare Practitioner
## 27898 17-2112 172112 Architecture, Engineer
## 27899 15-1132 151132 Computer, Math
## 27900 17-2199 172199 Architecture, Engineer
## 27901 15-1199 151199 Computer, Math
## 27902 23-1011 231011 Legal
## 27903 15-1121 151121 Computer, Math
## 27904 15-1133 151133 Computer, Math
## 27905 15-1199 151199 Computer, Math
## 27906 17-2072 172072 Architecture, Engineer
## 27907 29-2011 292011 Healthcare Practitioner
## 27908 15-1131 151131 Computer, Math
## 27909 17-2071 172071 Architecture, Engineer
## 27910 15-1131 151131 Computer, Math
## 27911 13-2071 132071 Business, Finance
## 27912 17-1011 171011 Architecture, Engineer
## 27913 15-1199 151199 Computer, Math
## 27914 15-1199 151199 Computer, Math
## 27915 17-2141 172141 Architecture, Engineer
## 27916 15-1141 151141 Computer, Math
## 27917 15-1121 151121 Computer, Math
## 27918 15-1132 151132 Computer, Math
## 27919 15-1132 151132 Computer, Math
## 27920 15-1132 151132 Computer, Math
## 27921 15-1141 151141 Computer, Math
## 27922 25-1053 251053 Education, Training
## 27923 15-1133 151133 Computer, Math
## 27924 15-1199 151199 Computer, Math
## 27925 11-3021 113021 Management
## 27926 15-1132 151132 Computer, Math
## 27927 15-1131 151131 Computer, Math
## 27928 15-1141 151141 Computer, Math
## 27929 13-2051 132051 Business, Finance
## 27930 15-1121 151121 Computer, Math
## 27931 15-1131 151131 Computer, Math
## 27932 15-1121 151121 Computer, Math
## 27933 15-1132 151132 Computer, Math
## 27934 15-1132 151132 Computer, Math
## 27935 15-1142 151142 Computer, Math
## 27936 19-1042 191042 Life, Physcial, Social Science
## 27937 15-1132 151132 Computer, Math
## 27938 11-3021 113021 Management
## 27939 15-1132 151132 Computer, Math
## 27940 15-1132 151132 Computer, Math
## 27941 15-1121 151121 Computer, Math
## 27942 15-1132 151132 Computer, Math
## 27943 11-3021 113021 Management
## 27944 15-1199 151199 Computer, Math
## 27945 11-3071 113071 Management
## 27946 15-1143 151143 Computer, Math
## 27947 15-1121 151121 Computer, Math
## 27948 17-2112 172112 Architecture, Engineer
## 27949 19-2042 192042 Life, Physcial, Social Science
## 27950 15-1141 151141 Computer, Math
## 27951 15-1131 151131 Computer, Math
## 27952 15-1132 151132 Computer, Math
## 27953 15-1132 151132 Computer, Math
## 27954 15-1199 151199 Computer, Math
## 27955 29-9099 299099 Healthcare Practitioner
## 27956 29-1123 291123 Healthcare Practitioner
## 27957 15-1132 151132 Computer, Math
## 27958 25-1011 251011 Education, Training
## 27959 15-1199 151199 Computer, Math
## 27960 17-2071 172071 Architecture, Engineer
## 27961 15-2031 152031 Computer, Math
## 27962 15-1132 151132 Computer, Math
## 27963 15-1132 151132 Computer, Math
## 27964 27-1024 271024 Media, Design
## 27965 15-1199 151199 Computer, Math
## 27966 15-1132 151132 Computer, Math
## 27967 15-1132 151132 Computer, Math
## 27968 15-1132 151132 Computer, Math
## 27969 19-2021 192021 Life, Physcial, Social Science
## 27970 15-1121 151121 Computer, Math
## 27971 15-1199 151199 Computer, Math
## 27972 15-1133 151133 Computer, Math
## 27973 15-1132 151132 Computer, Math
## 27974 15-1121 151121 Computer, Math
## 27975 15-1142 151142 Computer, Math
## 27976 15-1199 151199 Computer, Math
## 27977 15-1132 151132 Computer, Math
## 27978 15-1134 151134 Computer, Math
## 27979 13-2051 132051 Business, Finance
## 27980 41-9031 419031 Sales
## 27981 11-3031 113031 Management
## 27982 15-1133 151133 Computer, Math
## 27983 15-1199 151199 Computer, Math
## 27984 15-1132 151132 Computer, Math
## 27985 15-1134 151134 Computer, Math
## 27986 15-1199 151199 Computer, Math
## 27987 15-1199 151199 Computer, Math
## 27988 41-3031 413031 Sales
## 27989 15-1132 151132 Computer, Math
## 27990 15-1133 151133 Computer, Math
## 27991 25-1022 251022 Education, Training
## 27992 17-2199 172199 Architecture, Engineer
## 27993 15-1132 151132 Computer, Math
## 27994 15-1132 151132 Computer, Math
## 27995 15-1132 151132 Computer, Math
## 27996 15-1132 151132 Computer, Math
## 27997 15-1131 151131 Computer, Math
## 27998 15-1121 151121 Computer, Math
## 27999 15-2041 152041 Computer, Math
## 28000 15-1132 151132 Computer, Math
## 28001 19-1021 191021 Life, Physcial, Social Science
## 28002 13-1161 131161 Business, Finance
## 28003 21-1091 211091 Social Service
## 28004 19-1029 191029 Life, Physcial, Social Science
## 28005 15-1132 151132 Computer, Math
## 28006 15-2031 152031 Computer, Math
## 28007 15-1132 151132 Computer, Math
## 28008 15-1199 151199 Computer, Math
## 28009 15-1131 151131 Computer, Math
## 28010 15-2031 152031 Computer, Math
## 28011 15-1132 151132 Computer, Math
## 28012 15-1121 151121 Computer, Math
## 28013 15-1132 151132 Computer, Math
## 28014 15-1132 151132 Computer, Math
## 28015 15-1121 151121 Computer, Math
## 28016 15-1132 151132 Computer, Math
## 28017 15-1132 151132 Computer, Math
## 28018 13-2051 132051 Business, Finance
## 28019 15-1134 151134 Computer, Math
## 28020 15-1199 151199 Computer, Math
## 28021 19-1042 191042 Life, Physcial, Social Science
## 28022 15-1199 151199 Computer, Math
## 28023 15-1121 151121 Computer, Math
## 28024 13-1111 131111 Business, Finance
## 28025 15-1132 151132 Computer, Math
## 28026 17-2051 172051 Architecture, Engineer
## 28027 13-2051 132051 Business, Finance
## 28028 15-1199 151199 Computer, Math
## 28029 17-2131 172131 Architecture, Engineer
## 28030 41-9031 419031 Sales
## 28031 25-1042 251042 Education, Training
## 28032 15-1199 151199 Computer, Math
## 28033 15-1132 151132 Computer, Math
## 28034 15-1121 151121 Computer, Math
## 28035 27-1021 271021 Media, Design
## 28036 15-1131 151131 Computer, Math
## 28037 15-1121 151121 Computer, Math
## 28038 27-2042 272042 Media, Design
## 28039 17-1011 171011 Architecture, Engineer
## 28040 41-3031 413031 Sales
## 28041 15-2041 152041 Computer, Math
## 28042 17-2072 172072 Architecture, Engineer
## 28043 15-1121 151121 Computer, Math
## 28044 15-1132 151132 Computer, Math
## 28045 17-1011 171011 Architecture, Engineer
## 28046 13-1111 131111 Business, Finance
## 28047 17-2141 172141 Architecture, Engineer
## 28048 15-1132 151132 Computer, Math
## 28049 19-1029 191029 Life, Physcial, Social Science
## 28050 15-1132 151132 Computer, Math
## 28051 13-1111 131111 Business, Finance
## 28052 15-1132 151132 Computer, Math
## 28053 15-1199 151199 Computer, Math
## 28054 15-1132 151132 Computer, Math
## 28055 17-2112 172112 Architecture, Engineer
## 28056 15-1132 151132 Computer, Math
## 28057 15-1133 151133 Computer, Math
## 28058 25-1071 251071 Education, Training
## 28059 15-1132 151132 Computer, Math
## 28060 13-1199 131199 Business, Finance
## 28061 15-1121 151121 Computer, Math
## 28062 15-1131 151131 Computer, Math
## 28063 15-1131 151131 Computer, Math
## 28064 15-1132 151132 Computer, Math
## 28065 17-2011 172011 Architecture, Engineer
## 28066 15-1121 151121 Computer, Math
## 28067 15-1121 151121 Computer, Math
## 28068 15-1121 151121 Computer, Math
## 28069 15-1141 151141 Computer, Math
## 28070 15-1199 151199 Computer, Math
## 28071 15-1142 151142 Computer, Math
## 28072 41-9031 419031 Sales
## 28073 15-1132 151132 Computer, Math
## 28074 15-1133 151133 Computer, Math
## 28075 15-1132 151132 Computer, Math
## 28076 25-2022 252022 Education, Training
## 28077 15-1132 151132 Computer, Math
## 28078 15-1121 151121 Computer, Math
## 28079 15-1199 151199 Computer, Math
## 28080 15-1133 151133 Computer, Math
## 28081 15-1199 151199 Computer, Math
## 28082 17-2041 172041 Architecture, Engineer
## 28083 15-1121 151121 Computer, Math
## 28084 15-1121 151121 Computer, Math
## 28085 15-1132 151132 Computer, Math
## 28086 15-1121 151121 Computer, Math
## 28087 15-1132 151132 Computer, Math
## 28088 15-1134 151134 Computer, Math
## 28089 15-1132 151132 Computer, Math
## 28090 15-1141 151141 Computer, Math
## 28091 15-1199 151199 Computer, Math
## 28092 15-1132 151132 Computer, Math
## 28093 15-1132 151132 Computer, Math
## 28094 15-1132 151132 Computer, Math
## 28095 15-1199 151199 Computer, Math
## 28096 15-1132 151132 Computer, Math
## 28097 15-1121 151121 Computer, Math
## 28098 13-2011 132011 Business, Finance
## 28099 15-2031 152031 Computer, Math
## 28100 15-1121 151121 Computer, Math
## 28101 15-1132 151132 Computer, Math
## 28102 15-1132 151132 Computer, Math
## 28103 15-1132 151132 Computer, Math
## 28104 15-1199 151199 Computer, Math
## 28105 15-1132 151132 Computer, Math
## 28106 11-3021 113021 Management
## 28107 11-3021 113021 Management
## 28108 17-2112 172112 Architecture, Engineer
## 28109 13-1071 131071 Business, Finance
## 28110 15-1199 151199 Computer, Math
## 28111 15-1142 151142 Computer, Math
## 28112 17-2071 172071 Architecture, Engineer
## 28113 15-1132 151132 Computer, Math
## 28114 15-1199 151199 Computer, Math
## 28115 15-1132 151132 Computer, Math
## 28116 11-3021 113021 Management
## 28117 15-1199 151199 Computer, Math
## 28118 13-1161 131161 Business, Finance
## 28119 17-2041 172041 Architecture, Engineer
## 28120 13-1111 131111 Business, Finance
## 28121 15-1132 151132 Computer, Math
## 28122 15-1132 151132 Computer, Math
## 28123 13-2051 132051 Business, Finance
## 28124 15-1199 151199 Computer, Math
## 28125 13-2011 132011 Business, Finance
## 28126 15-2031 152031 Computer, Math
## 28127 15-1142 151142 Computer, Math
## 28128 15-1132 151132 Computer, Math
## 28129 15-1132 151132 Computer, Math
## 28130 15-1132 151132 Computer, Math
## 28131 15-1132 151132 Computer, Math
## 28132 27-1024 271024 Media, Design
## 28133 29-1062 291062 Healthcare Practitioner
## 28134 27-1025 271025 Media, Design
## 28135 15-1132 151132 Computer, Math
## 28136 15-1132 151132 Computer, Math
## 28137 19-1029 191029 Life, Physcial, Social Science
## 28138 15-1131 151131 Computer, Math
## 28139 13-1161 131161 Business, Finance
## 28140 15-1132 151132 Computer, Math
## 28141 19-2032 192032 Life, Physcial, Social Science
## 28142 15-1132 151132 Computer, Math
## 28143 11-9033 119033 Management
## 28144 15-1132 151132 Computer, Math
## 28145 17-2112 172112 Architecture, Engineer
## 28146 27-1024 271024 Media, Design
## 28147 15-1131 151131 Computer, Math
## 28148 15-1199 151199 Computer, Math
## 28149 15-2031 152031 Computer, Math
## 28150 15-1199 151199 Computer, Math
## 28151 15-1131 151131 Computer, Math
## 28152 15-1132 151132 Computer, Math
## 28153 15-1122 151122 Computer, Math
## 28154 13-1161 131161 Business, Finance
## 28155 15-1199 151199 Computer, Math
## 28156 13-2011 132011 Business, Finance
## 28157 15-1132 151132 Computer, Math
## 28158 25-1041 251041 Education, Training
## 28159 11-3021 113021 Management
## 28160 15-1132 151132 Computer, Math
## 28161 13-1141 131141 Business, Finance
## 28162 15-1132 151132 Computer, Math
## 28163 13-2011 132011 Business, Finance
## 28164 15-1133 151133 Computer, Math
## 28165 15-1132 151132 Computer, Math
## 28166 15-1132 151132 Computer, Math
## 28167 15-2041 152041 Computer, Math
## 28168 15-1141 151141 Computer, Math
## 28169 15-1199 151199 Computer, Math
## 28170 15-1131 151131 Computer, Math
## 28171 15-1121 151121 Computer, Math
## 28172 15-1132 151132 Computer, Math
## 28173 13-2051 132051 Business, Finance
## 28174 15-1132 151132 Computer, Math
## 28175 15-1121 151121 Computer, Math
## 28176 15-1133 151133 Computer, Math
## 28177 15-1121 151121 Computer, Math
## 28178 15-1121 151121 Computer, Math
## 28179 15-1141 151141 Computer, Math
## 28180 15-1132 151132 Computer, Math
## 28181 15-2031 152031 Computer, Math
## 28182 15-1132 151132 Computer, Math
## 28183 15-1121 151121 Computer, Math
## 28184 15-1133 151133 Computer, Math
## 28185 15-1121 151121 Computer, Math
## 28186 15-1142 151142 Computer, Math
## 28187 15-1121 151121 Computer, Math
## 28188 17-3011 173011 Architecture, Engineer
## 28189 13-2011 132011 Business, Finance
## 28190 17-2081 172081 Architecture, Engineer
## 28191 15-1121 151121 Computer, Math
## 28192 15-2041 152041 Computer, Math
## 28193 15-1132 151132 Computer, Math
## 28194 17-2051 172051 Architecture, Engineer
## 28195 15-1132 151132 Computer, Math
## 28196 15-1141 151141 Computer, Math
## 28197 15-1132 151132 Computer, Math
## 28198 23-2099 232099 Legal
## 28199 15-1132 151132 Computer, Math
## 28200 15-1131 151131 Computer, Math
## 28201 15-1132 151132 Computer, Math
## 28202 15-1111 151111 Computer, Math
## 28203 11-3021 113021 Management
## 28204 15-1132 151132 Computer, Math
## 28205 15-1121 151121 Computer, Math
## 28206 15-1132 151132 Computer, Math
## 28207 17-2071 172071 Architecture, Engineer
## 28208 25-2022 252022 Education, Training
## 28209 15-1132 151132 Computer, Math
## 28210 15-1132 151132 Computer, Math
## 28211 15-1132 151132 Computer, Math
## 28212 15-1132 151132 Computer, Math
## 28213 15-2031 152031 Computer, Math
## 28214 19-2032 192032 Life, Physcial, Social Science
## 28215 29-1123 291123 Healthcare Practitioner
## 28216 15-1121 151121 Computer, Math
## 28217 13-1161 131161 Business, Finance
## 28218 15-1199 151199 Computer, Math
## 28219 15-1121 151121 Computer, Math
## 28220 21-1012 211012 Social Service
## 28221 15-1122 151122 Computer, Math
## 28222 15-1121 151121 Computer, Math
## 28223 15-1132 151132 Computer, Math
## 28224 19-1021 191021 Life, Physcial, Social Science
## 28225 15-1132 151132 Computer, Math
## 28226 15-1132 151132 Computer, Math
## 28227 25-2031 252031 Education, Training
## 28228 13-1111 131111 Business, Finance
## 28229 13-1161 131161 Business, Finance
## 28230 15-1132 151132 Computer, Math
## 28231 17-2041 172041 Architecture, Engineer
## 28232 15-1132 151132 Computer, Math
## 28233 15-1132 151132 Computer, Math
## 28234 15-1132 151132 Computer, Math
## 28235 15-1132 151132 Computer, Math
## 28236 15-1132 151132 Computer, Math
## 28237 15-1199 151199 Computer, Math
## 28238 19-1042 191042 Life, Physcial, Social Science
## 28239 15-2031 152031 Computer, Math
## 28240 15-1133 151133 Computer, Math
## 28241 15-1143 151143 Computer, Math
## 28242 15-1132 151132 Computer, Math
## 28243 29-1069 291069 Healthcare Practitioner
## 28244 15-1199 151199 Computer, Math
## 28245 15-2041 152041 Computer, Math
## 28246 17-2051 172051 Architecture, Engineer
## 28247 15-1133 151133 Computer, Math
## 28248 17-2071 172071 Architecture, Engineer
## 28249 13-1111 131111 Business, Finance
## 28250 15-1133 151133 Computer, Math
## 28251 15-1132 151132 Computer, Math
## 28252 15-1121 151121 Computer, Math
## 28253 17-2041 172041 Architecture, Engineer
## 28254 15-1121 151121 Computer, Math
## 28255 15-1132 151132 Computer, Math
## 28256 15-1199 151199 Computer, Math
## 28257 15-1199 151199 Computer, Math
## 28258 15-1132 151132 Computer, Math
## 28259 15-1199 151199 Computer, Math
## 28260 15-1133 151133 Computer, Math
## 28261 17-2112 172112 Architecture, Engineer
## 28262 15-2031 152031 Computer, Math
## 28263 15-1121 151121 Computer, Math
## 28264 15-1121 151121 Computer, Math
## 28265 15-1199 151199 Computer, Math
## 28266 15-1121 151121 Computer, Math
## 28267 15-1133 151133 Computer, Math
## 28268 15-1121 151121 Computer, Math
## 28269 15-1132 151132 Computer, Math
## 28270 15-1199 151199 Computer, Math
## 28271 15-1142 151142 Computer, Math
## 28272 13-1041 131041 Business, Finance
## 28273 15-1121 151121 Computer, Math
## 28274 15-1132 151132 Computer, Math
## 28275 15-1142 151142 Computer, Math
## 28276 15-1134 151134 Computer, Math
## 28277 15-1199 151199 Computer, Math
## 28278 15-1121 151121 Computer, Math
## 28279 15-1133 151133 Computer, Math
## 28280 15-1121 151121 Computer, Math
## 28281 15-1121 151121 Computer, Math
## 28282 17-2141 172141 Architecture, Engineer
## 28283 15-1133 151133 Computer, Math
## 28284 17-2141 172141 Architecture, Engineer
## 28285 15-1132 151132 Computer, Math
## 28286 15-1121 151121 Computer, Math
## 28287 15-1133 151133 Computer, Math
## 28288 25-1021 251021 Education, Training
## 28289 15-1121 151121 Computer, Math
## 28290 15-1132 151132 Computer, Math
## 28291 15-2031 152031 Computer, Math
## 28292 15-2031 152031 Computer, Math
## 28293 17-2072 172072 Architecture, Engineer
## 28294 15-1121 151121 Computer, Math
## 28295 19-2031 192031 Life, Physcial, Social Science
## 28296 15-2041 152041 Computer, Math
## 28297 15-1132 151132 Computer, Math
## 28298 15-1199 151199 Computer, Math
## 28299 15-1121 151121 Computer, Math
## 28300 11-3031 113031 Management
## 28301 17-2112 172112 Architecture, Engineer
## 28302 15-1132 151132 Computer, Math
## 28303 15-1132 151132 Computer, Math
## 28304 15-1131 151131 Computer, Math
## 28305 15-1134 151134 Computer, Math
## 28306 13-2011 132011 Business, Finance
## 28307 15-1132 151132 Computer, Math
## 28308 19-3011 193011 Life, Physcial, Social Science
## 28309 25-1122 251122 Education, Training
## 28310 41-9031 419031 Sales
## 28311 15-1121 151121 Computer, Math
## 28312 15-2041 152041 Computer, Math
## 28313 15-1132 151132 Computer, Math
## 28314 15-1134 151134 Computer, Math
## 28315 15-1132 151132 Computer, Math
## 28316 15-1132 151132 Computer, Math
## 28317 13-2099 132099 Business, Finance
## 28318 15-1199 151199 Computer, Math
## 28319 15-2031 152031 Computer, Math
## 28320 15-2031 152031 Computer, Math
## 28321 15-1132 151132 Computer, Math
## 28322 15-1132 151132 Computer, Math
## 28323 15-1132 151132 Computer, Math
## 28324 11-2031 112031 Management
## 28325 11-1021 111021 Management
## 28326 15-1132 151132 Computer, Math
## 28327 17-2199 172199 Architecture, Engineer
## 28328 15-1131 151131 Computer, Math
## 28329 15-1132 151132 Computer, Math
## 28330 15-1132 151132 Computer, Math
## 28331 15-1131 151131 Computer, Math
## 28332 15-1141 151141 Computer, Math
## 28333 41-9031 419031 Sales
## 28334 15-1132 151132 Computer, Math
## 28335 15-1121 151121 Computer, Math
## 28336 11-9032 119032 Management
## 28337 15-1132 151132 Computer, Math
## 28338 15-1142 151142 Computer, Math
## 28339 15-2031 152031 Computer, Math
## 28340 13-2011 132011 Business, Finance
## 28341 15-1142 151142 Computer, Math
## 28342 15-1131 151131 Computer, Math
## 28343 15-1132 151132 Computer, Math
## 28344 15-1199 151199 Computer, Math
## 28345 13-1161 131161 Business, Finance
## 28346 15-2031 152031 Computer, Math
## 28347 15-1132 151132 Computer, Math
## 28348 15-1142 151142 Computer, Math
## 28349 15-1133 151133 Computer, Math
## 28350 15-2041 152041 Computer, Math
## 28351 27-3041 273041 Media, Design
## 28352 15-1199 151199 Computer, Math
## 28353 15-1199 151199 Computer, Math
## 28354 15-1122 151122 Computer, Math
## 28355 15-2031 152031 Computer, Math
## 28356 13-1199 131199 Business, Finance
## 28357 15-1121 151121 Computer, Math
## 28358 25-1031 251031 Education, Training
## 28359 17-2051 172051 Architecture, Engineer
## 28360 15-1132 151132 Computer, Math
## 28361 15-1133 151133 Computer, Math
## 28362 13-2011 132011 Business, Finance
## 28363 15-1132 151132 Computer, Math
## 28364 29-9099 299099 Healthcare Practitioner
## 28365 15-1132 151132 Computer, Math
## 28366 13-2051 132051 Business, Finance
## 28367 11-1021 111021 Management
## 28368 15-1132 151132 Computer, Math
## 28369 15-1132 151132 Computer, Math
## 28370 15-1121 151121 Computer, Math
## 28371 15-1132 151132 Computer, Math
## 28372 15-1132 151132 Computer, Math
## 28373 27-1025 271025 Media, Design
## 28374 15-1111 151111 Computer, Math
## 28375 15-1121 151121 Computer, Math
## 28376 15-1132 151132 Computer, Math
## 28377 29-1123 291123 Healthcare Practitioner
## 28378 15-1121 151121 Computer, Math
## 28379 15-1121 151121 Computer, Math
## 28380 15-1199 151199 Computer, Math
## 28381 15-1132 151132 Computer, Math
## 28382 13-2099 132099 Business, Finance
## 28383 27-1025 271025 Media, Design
## 28384 15-1133 151133 Computer, Math
## 28385 27-4011 274011 Media, Design
## 28386 15-2031 152031 Computer, Math
## 28387 11-9041 119041 Management
## 28388 15-2041 152041 Computer, Math
## 28389 15-1199 151199 Computer, Math
## 28390 15-1132 151132 Computer, Math
## 28391 15-1132 151132 Computer, Math
## 28392 15-1199 151199 Computer, Math
## 28393 15-1121 151121 Computer, Math
## 28394 15-1132 151132 Computer, Math
## 28395 15-1133 151133 Computer, Math
## 28396 15-1199 151199 Computer, Math
## 28397 17-2072 172072 Architecture, Engineer
## 28398 17-3011 173011 Architecture, Engineer
## 28399 15-1121 151121 Computer, Math
## 28400 13-2099 132099 Business, Finance
## 28401 15-1132 151132 Computer, Math
## 28402 15-1199 151199 Computer, Math
## 28403 15-1132 151132 Computer, Math
## 28404 15-1121 151121 Computer, Math
## 28405 29-9099 299099 Healthcare Practitioner
## 28406 15-1121 151121 Computer, Math
## 28407 15-1132 151132 Computer, Math
## 28408 15-1132 151132 Computer, Math
## 28409 15-1132 151132 Computer, Math
## 28410 15-1199 151199 Computer, Math
## 28411 17-2072 172072 Architecture, Engineer
## 28412 15-1131 151131 Computer, Math
## 28413 15-1132 151132 Computer, Math
## 28414 15-1121 151121 Computer, Math
## 28415 15-1132 151132 Computer, Math
## 28416 15-1132 151132 Computer, Math
## 28417 17-2112 172112 Architecture, Engineer
## 28418 19-1012 191012 Life, Physcial, Social Science
## 28419 15-1199 151199 Computer, Math
## 28420 19-4061 194061 Life, Physcial, Social Science
## 28421 15-1199 151199 Computer, Math
## 28422 15-1121 151121 Computer, Math
## 28423 41-4011 414011 Sales
## 28424 15-1132 151132 Computer, Math
## 28425 15-1132 151132 Computer, Math
## 28426 15-1121 151121 Computer, Math
## 28427 17-2061 172061 Architecture, Engineer
## 28428 15-1142 151142 Computer, Math
## 28429 15-1132 151132 Computer, Math
## 28430 15-1132 151132 Computer, Math
## 28431 15-1132 151132 Computer, Math
## 28432 15-1132 151132 Computer, Math
## 28433 15-1132 151132 Computer, Math
## 28434 15-1132 151132 Computer, Math
## 28435 15-1133 151133 Computer, Math
## 28436 15-1121 151121 Computer, Math
## 28437 15-1133 151133 Computer, Math
## 28438 15-1132 151132 Computer, Math
## 28439 19-1029 191029 Life, Physcial, Social Science
## 28440 11-3021 113021 Management
## 28441 15-1133 151133 Computer, Math
## 28442 13-2011 132011 Business, Finance
## 28443 15-1131 151131 Computer, Math
## 28444 19-1042 191042 Life, Physcial, Social Science
## 28445 15-1131 151131 Computer, Math
## 28446 15-1132 151132 Computer, Math
## 28447 15-1121 151121 Computer, Math
## 28448 15-1121 151121 Computer, Math
## 28449 11-3021 113021 Management
## 28450 13-1161 131161 Business, Finance
## 28451 15-1132 151132 Computer, Math
## 28452 15-1132 151132 Computer, Math
## 28453 15-1199 151199 Computer, Math
## 28454 15-1132 151132 Computer, Math
## 28455 15-1132 151132 Computer, Math
## 28456 15-1142 151142 Computer, Math
## 28457 15-1199 151199 Computer, Math
## 28458 15-1132 151132 Computer, Math
## 28459 17-2112 172112 Architecture, Engineer
## 28460 15-1121 151121 Computer, Math
## 28461 17-2141 172141 Architecture, Engineer
## 28462 15-1121 151121 Computer, Math
## 28463 15-1132 151132 Computer, Math
## 28464 15-1121 151121 Computer, Math
## 28465 15-2031 152031 Computer, Math
## 28466 15-1121 151121 Computer, Math
## 28467 15-1199 151199 Computer, Math
## 28468 15-1199.08 151199 Computer, Math
## 28469 15-1121 151121 Computer, Math
## 28470 15-1131 151131 Computer, Math
## 28471 15-1199 151199 Computer, Math
## 28472 15-1199 151199 Computer, Math
## 28473 29-1069 291069 Healthcare Practitioner
## 28474 13-1161 131161 Business, Finance
## 28475 15-1132 151132 Computer, Math
## 28476 15-1199 151199 Computer, Math
## 28477 15-1142 151142 Computer, Math
## 28478 15-1132 151132 Computer, Math
## 28479 15-1132 151132 Computer, Math
## 28480 15-1133 151133 Computer, Math
## 28481 29-1127 291127 Healthcare Practitioner
## 28482 13-1111 131111 Business, Finance
## 28483 15-1199 151199 Computer, Math
## 28484 15-1132 151132 Computer, Math
## 28485 13-2011 132011 Business, Finance
## 28486 15-1121 151121 Computer, Math
## 28487 15-1199 151199 Computer, Math
## 28488 19-1042 191042 Life, Physcial, Social Science
## 28489 15-1132 151132 Computer, Math
## 28490 13-1111 131111 Business, Finance
## 28491 15-1132 151132 Computer, Math
## 28492 25-1062 251062 Education, Training
## 28493 15-1199 151199 Computer, Math
## 28494 13-2099 132099 Business, Finance
## 28495 15-1141 151141 Computer, Math
## 28496 17-2199 172199 Architecture, Engineer
## 28497 15-1132 151132 Computer, Math
## 28498 15-1132 151132 Computer, Math
## 28499 15-1199 151199 Computer, Math
## 28500 15-2011 152011 Computer, Math
## 28501 15-2031 152031 Computer, Math
## 28502 17-2131 172131 Architecture, Engineer
## 28503 29-2011 292011 Healthcare Practitioner
## 28504 27-1024 271024 Media, Design
## 28505 15-1121 151121 Computer, Math
## 28506 15-1132 151132 Computer, Math
## 28507 27-1024 271024 Media, Design
## 28508 15-1132 151132 Computer, Math
## 28509 13-1161 131161 Business, Finance
## 28510 15-1199 151199 Computer, Math
## 28511 15-1121 151121 Computer, Math
## 28512 15-1132 151132 Computer, Math
## 28513 15-1132 151132 Computer, Math
## 28514 15-1132 151132 Computer, Math
## 28515 29-9099 299099 Healthcare Practitioner
## 28516 15-1132 151132 Computer, Math
## 28517 15-1132 151132 Computer, Math
## 28518 15-1132 151132 Computer, Math
## 28519 15-1133 151133 Computer, Math
## 28520 15-1133 151133 Computer, Math
## 28521 13-1161 131161 Business, Finance
## 28522 15-1121 151121 Computer, Math
## 28523 17-2051 172051 Architecture, Engineer
## 28524 15-1199 151199 Computer, Math
## 28525 15-1121 151121 Computer, Math
## 28526 15-1132 151132 Computer, Math
## 28527 15-1121 151121 Computer, Math
## 28528 19-2041 192041 Life, Physcial, Social Science
## 28529 15-1121 151121 Computer, Math
## 28530 15-1199 151199 Computer, Math
## 28531 27-3091 273091 Media, Design
## 28532 25-1066 251066 Education, Training
## 28533 15-1132 151132 Computer, Math
## 28534 15-1199 151199 Computer, Math
## 28535 15-1141 151141 Computer, Math
## 28536 15-1132 151132 Computer, Math
## 28537 15-1121 151121 Computer, Math
## 28538 15-2031 152031 Computer, Math
## 28539 17-2071 172071 Architecture, Engineer
## 28540 29-1021 291021 Healthcare Practitioner
## 28541 25-1032 251032 Education, Training
## 28542 15-1142 151142 Computer, Math
## 28543 19-1042 191042 Life, Physcial, Social Science
## 28544 15-1142 151142 Computer, Math
## 28545 15-1131 151131 Computer, Math
## 28546 15-1199 151199 Computer, Math
## 28547 17-2071 172071 Architecture, Engineer
## 28548 15-1199 151199 Computer, Math
## 28549 13-2051 132051 Business, Finance
## 28550 15-1121 151121 Computer, Math
## 28551 15-1132 151132 Computer, Math
## 28552 15-1199 151199 Computer, Math
## 28553 27-1014 271014 Media, Design
## 28554 11-2021 112021 Management
## 28555 15-1132 151132 Computer, Math
## 28556 11-9111 119111 Management
## 28557 15-1199 151199 Computer, Math
## 28558 15-1132 151132 Computer, Math
## 28559 15-1133 151133 Computer, Math
## 28560 17-2041 172041 Architecture, Engineer
## 28561 15-1132 151132 Computer, Math
## 28562 15-1199 151199 Computer, Math
## 28563 15-1199 151199 Computer, Math
## 28564 15-1132 151132 Computer, Math
## 28565 19-3022 193022 Life, Physcial, Social Science
## 28566 15-1132 151132 Computer, Math
## 28567 15-1143 151143 Computer, Math
## 28568 15-1142 151142 Computer, Math
## 28569 15-1132 151132 Computer, Math
## 28570 15-1199 151199 Computer, Math
## 28571 15-1132 151132 Computer, Math
## 28572 15-1121 151121 Computer, Math
## 28573 15-1132 151132 Computer, Math
## 28574 15-1121 151121 Computer, Math
## 28575 15-1132 151132 Computer, Math
## 28576 15-2041 152041 Computer, Math
## 28577 15-1132 151132 Computer, Math
## 28578 15-1131 151131 Computer, Math
## 28579 15-1121 151121 Computer, Math
## 28580 15-1132 151132 Computer, Math
## 28581 19-4021 194021 Life, Physcial, Social Science
## 28582 27-3042 273042 Media, Design
## 28583 15-1132 151132 Computer, Math
## 28584 15-1133 151133 Computer, Math
## 28585 15-1199 151199 Computer, Math
## 28586 15-1131 151131 Computer, Math
## 28587 13-2099 132099 Business, Finance
## 28588 15-1132 151132 Computer, Math
## 28589 15-1132 151132 Computer, Math
## 28590 11-2021 112021 Management
## 28591 15-1121 151121 Computer, Math
## 28592 15-1132 151132 Computer, Math
## 28593 15-1199 151199 Computer, Math
## 28594 15-1131 151131 Computer, Math
## 28595 29-1051 291051 Healthcare Practitioner
## 28596 29-1069 291069 Healthcare Practitioner
## 28597 15-1132 151132 Computer, Math
## 28598 15-1132 151132 Computer, Math
## 28599 15-1132 151132 Computer, Math
## 28600 15-1132 151132 Computer, Math
## 28601 13-2041 132041 Business, Finance
## 28602 15-1132 151132 Computer, Math
## 28603 15-1121 151121 Computer, Math
## 28604 15-1121 151121 Computer, Math
## 28605 11-9041 119041 Management
## 28606 17-2051 172051 Architecture, Engineer
## 28607 15-1133 151133 Computer, Math
## 28608 15-1132 151132 Computer, Math
## 28609 15-1199 151199 Computer, Math
## 28610 17-2112 172112 Architecture, Engineer
## 28611 19-1029 191029 Life, Physcial, Social Science
## 28612 41-9031 419031 Sales
## 28613 15-1132 151132 Computer, Math
## 28614 15-1132 151132 Computer, Math
## 28615 15-1133 151133 Computer, Math
## 28616 15-1121 151121 Computer, Math
## 28617 17-2199 172199 Architecture, Engineer
## 28618 15-1132 151132 Computer, Math
## 28619 15-1199 151199 Computer, Math
## 28620 25-1042 251042 Education, Training
## 28621 15-1121 151121 Computer, Math
## 28622 11-1021 111021 Management
## 28623 15-1132 151132 Computer, Math
## 28624 29-1122 291122 Healthcare Practitioner
## 28625 15-1131 151131 Computer, Math
## 28626 15-1134 151134 Computer, Math
## 28627 11-2011 112011 Management
## 28628 15-1121 151121 Computer, Math
## 28629 13-2011 132011 Business, Finance
## 28630 15-1199 151199 Computer, Math
## 28631 15-1121 151121 Computer, Math
## 28632 15-1131 151131 Computer, Math
## 28633 15-1132 151132 Computer, Math
## 28634 15-2041 152041 Computer, Math
## 28635 15-1199 151199 Computer, Math
## 28636 17-2051 172051 Architecture, Engineer
## 28637 11-3021 113021 Management
## 28638 15-1199 151199 Computer, Math
## 28639 15-1121 151121 Computer, Math
## 28640 15-1143 151143 Computer, Math
## 28641 15-1141 151141 Computer, Math
## 28642 15-1199 151199 Computer, Math
## 28643 15-1132 151132 Computer, Math
## 28644 17-1011 171011 Architecture, Engineer
## 28645 15-1131 151131 Computer, Math
## 28646 13-2099 132099 Business, Finance
## 28647 15-1199 151199 Computer, Math
## 28648 13-1161 131161 Business, Finance
## 28649 15-1132 151132 Computer, Math
## 28650 15-1121 151121 Computer, Math
## 28651 25-1124 251124 Education, Training
## 28652 15-1132 151132 Computer, Math
## 28653 13-2031 132031 Business, Finance
## 28654 11-3021 113021 Management
## 28655 25-1011 251011 Education, Training
## 28656 15-1199 151199 Computer, Math
## 28657 13-2011 132011 Business, Finance
## 28658 25-1022 251022 Education, Training
## 28659 15-1142 151142 Computer, Math
## 28660 15-1133 151133 Computer, Math
## 28661 25-3099 253099 Education, Training
## 28662 15-1121 151121 Computer, Math
## 28663 15-1132 151132 Computer, Math
## 28664 15-1132 151132 Computer, Math
## 28665 25-1032 251032 Education, Training
## 28666 13-2031 132031 Business, Finance
## 28667 13-1199 131199 Business, Finance
## 28668 15-1121 151121 Computer, Math
## 28669 15-1132 151132 Computer, Math
## 28670 15-1121 151121 Computer, Math
## 28671 15-1132 151132 Computer, Math
## 28672 15-1121 151121 Computer, Math
## 28673 15-1199 151199 Computer, Math
## 28674 15-1143 151143 Computer, Math
## 28675 15-1121 151121 Computer, Math
## 28676 15-1132 151132 Computer, Math
## 28677 15-1132 151132 Computer, Math
## 28678 11-3031 113031 Management
## 28679 15-1132 151132 Computer, Math
## 28680 15-1111 151111 Computer, Math
## 28681 15-1132 151132 Computer, Math
## 28682 11-3021 113021 Management
## 28683 15-1121 151121 Computer, Math
## 28684 15-1132 151132 Computer, Math
## 28685 15-1199 151199 Computer, Math
## 28686 15-1133 151133 Computer, Math
## 28687 19-2032 192032 Life, Physcial, Social Science
## 28688 17-1012 171012 Architecture, Engineer
## 28689 15-1133 151133 Computer, Math
## 28690 25-1032 251032 Education, Training
## 28691 15-1132 151132 Computer, Math
## 28692 15-1121 151121 Computer, Math
## 28693 15-1132 151132 Computer, Math
## 28694 15-1132 151132 Computer, Math
## 28695 15-1134 151134 Computer, Math
## 28696 15-2041 152041 Computer, Math
## 28697 13-1111 131111 Business, Finance
## 28698 13-1111 131111 Business, Finance
## 28699 11-3021 113021 Management
## 28700 15-1131 151131 Computer, Math
## 28701 15-1132 151132 Computer, Math
## 28702 29-1122 291122 Healthcare Practitioner
## 28703 15-1132 151132 Computer, Math
## 28704 15-1132 151132 Computer, Math
## 28705 15-2031 152031 Computer, Math
## 28706 15-1132 151132 Computer, Math
## 28707 15-1133 151133 Computer, Math
## 28708 15-1141 151141 Computer, Math
## 28709 15-1199 151199 Computer, Math
## 28710 15-1132 151132 Computer, Math
## 28711 15-1132 151132 Computer, Math
## 28712 15-2041 152041 Computer, Math
## 28713 15-1199 151199 Computer, Math
## 28714 17-2112 172112 Architecture, Engineer
## 28715 15-1132 151132 Computer, Math
## 28716 13-1111 131111 Business, Finance
## 28717 15-1122 151122 Computer, Math
## 28718 15-1121 151121 Computer, Math
## 28719 15-1132 151132 Computer, Math
## 28720 15-1121 151121 Computer, Math
## 28721 15-1131 151131 Computer, Math
## 28722 15-1132 151132 Computer, Math
## 28723 15-2041 152041 Computer, Math
## 28724 13-1111 131111 Business, Finance
## 28725 15-1121 151121 Computer, Math
## 28726 15-1133 151133 Computer, Math
## 28727 15-1132 151132 Computer, Math
## 28728 11-3021 113021 Management
## 28729 13-2011 132011 Business, Finance
## 28730 15-1132 151132 Computer, Math
## 28731 29-1065 291065 Healthcare Practitioner
## 28732 15-2041 152041 Computer, Math
## 28733 15-1121 151121 Computer, Math
## 28734 15-1132 151132 Computer, Math
## 28735 15-1131 151131 Computer, Math
## 28736 15-1199 151199 Computer, Math
## 28737 15-1132 151132 Computer, Math
## 28738 15-2041 152041 Computer, Math
## 28739 15-1122 151122 Computer, Math
## 28740 15-1121 151121 Computer, Math
## 28741 15-1132 151132 Computer, Math
## 28742 15-1141 151141 Computer, Math
## 28743 17-2071 172071 Architecture, Engineer
## 28744 17-2141 172141 Architecture, Engineer
## 28745 19-1021 191021 Life, Physcial, Social Science
## 28746 15-1132 151132 Computer, Math
## 28747 17-2141 172141 Architecture, Engineer
## 28748 17-2071 172071 Architecture, Engineer
## 28749 13-2011 132011 Business, Finance
## 28750 17-2131 172131 Architecture, Engineer
## 28751 11-3021 113021 Management
## 28752 17-2199 172199 Architecture, Engineer
## 28753 17-2071 172071 Architecture, Engineer
## 28754 15-1199 151199 Computer, Math
## 28755 15-1132 151132 Computer, Math
## 28756 15-1132 151132 Computer, Math
## 28757 15-1132 151132 Computer, Math
## 28758 15-1131 151131 Computer, Math
## 28759 15-1132 151132 Computer, Math
## 28760 15-2041 152041 Computer, Math
## 28761 13-2099 132099 Business, Finance
## 28762 15-1199 151199 Computer, Math
## 28763 15-1131 151131 Computer, Math
## 28764 17-2072 172072 Architecture, Engineer
## 28765 15-1121 151121 Computer, Math
## 28766 15-1132 151132 Computer, Math
## 28767 15-2031 152031 Computer, Math
## 28768 17-2031 172031 Architecture, Engineer
## 28769 15-2031 152031 Computer, Math
## 28770 15-1132 151132 Computer, Math
## 28771 15-1134 151134 Computer, Math
## 28772 13-2011 132011 Business, Finance
## 28773 13-2011 132011 Business, Finance
## 28774 15-1131 151131 Computer, Math
## 28775 15-1199 151199 Computer, Math
## 28776 13-1081 131081 Business, Finance
## 28777 15-1132 151132 Computer, Math
## 28778 15-1132 151132 Computer, Math
## 28779 13-1111 131111 Business, Finance
## 28780 19-3051 193051 Life, Physcial, Social Science
## 28781 15-1132 151132 Computer, Math
## 28782 15-1132 151132 Computer, Math
## 28783 15-1199 151199 Computer, Math
## 28784 29-2011 292011 Healthcare Practitioner
## 28785 15-1134 151134 Computer, Math
## 28786 15-1199 151199 Computer, Math
## 28787 15-1121 151121 Computer, Math
## 28788 15-1132 151132 Computer, Math
## 28789 15-1132 151132 Computer, Math
## 28790 13-2011 132011 Business, Finance
## 28791 41-9031 419031 Sales
## 28792 15-2031 152031 Computer, Math
## 28793 15-1132 151132 Computer, Math
## 28794 11-9021 119021 Management
## 28795 15-1132 151132 Computer, Math
## 28796 17-2061 172061 Architecture, Engineer
## 28797 15-1132 151132 Computer, Math
## 28798 13-1161 131161 Business, Finance
## 28799 15-1132 151132 Computer, Math
## 28800 11-3021 113021 Management
## 28801 15-1132 151132 Computer, Math
## 28802 15-1132 151132 Computer, Math
## 28803 15-1133 151133 Computer, Math
## 28804 15-1121 151121 Computer, Math
## 28805 19-2031 192031 Life, Physcial, Social Science
## 28806 15-1132 151132 Computer, Math
## 28807 15-1132 151132 Computer, Math
## 28808 15-1199 151199 Computer, Math
## 28809 15-1131 151131 Computer, Math
## 28810 17-2072 172072 Architecture, Engineer
## 28811 25-1071 251071 Education, Training
## 28812 15-1133 151133 Computer, Math
## 28813 13-1161 131161 Business, Finance
## 28814 15-1199 151199 Computer, Math
## 28815 15-1132 151132 Computer, Math
## 28816 15-1121 151121 Computer, Math
## 28817 15-1132 151132 Computer, Math
## 28818 15-1132 151132 Computer, Math
## 28819 15-1132 151132 Computer, Math
## 28820 25-1011 251011 Education, Training
## 28821 15-1143 151143 Computer, Math
## 28822 15-1132 151132 Computer, Math
## 28823 15-1199 151199 Computer, Math
## 28824 15-1132 151132 Computer, Math
## 28825 13-1161 131161 Business, Finance
## 28826 15-1132 151132 Computer, Math
## 28827 15-1199 151199 Computer, Math
## 28828 15-1121 151121 Computer, Math
## 28829 15-1131 151131 Computer, Math
## 28830 17-2072 172072 Architecture, Engineer
## 28831 15-1133 151133 Computer, Math
## 28832 15-1199 151199 Computer, Math
## 28833 13-2011 132011 Business, Finance
## 28834 15-2031 152031 Computer, Math
## 28835 15-1121 151121 Computer, Math
## 28836 15-2031 152031 Computer, Math
## 28837 15-1132 151132 Computer, Math
## 28838 15-1121 151121 Computer, Math
## 28839 15-1133 151133 Computer, Math
## 28840 29-1021 291021 Healthcare Practitioner
## 28841 15-2031 152031 Computer, Math
## 28842 15-1132 151132 Computer, Math
## 28843 15-1199 151199 Computer, Math
## 28844 23-2011 232011 Legal
## 28845 15-1121 151121 Computer, Math
## 28846 11-3021 113021 Management
## 28847 15-1132 151132 Computer, Math
## 28848 29-1069 291069 Healthcare Practitioner
## 28849 15-1132 151132 Computer, Math
## 28850 17-2141 172141 Architecture, Engineer
## 28851 15-1142 151142 Computer, Math
## 28852 15-1111 151111 Computer, Math
## 28853 15-1199 151199 Computer, Math
## 28854 15-1132 151132 Computer, Math
## 28855 15-1199 151199 Computer, Math
## 28856 15-1122 151122 Computer, Math
## 28857 15-1199 151199 Computer, Math
## 28858 13-1111 131111 Business, Finance
## 28859 15-1121 151121 Computer, Math
## 28860 15-1199 151199 Computer, Math
## 28861 15-1132 151132 Computer, Math
## 28862 19-1012 191012 Life, Physcial, Social Science
## 28863 15-1132 151132 Computer, Math
## 28864 13-1161 131161 Business, Finance
## 28865 15-1132 151132 Computer, Math
## 28866 15-1134 151134 Computer, Math
## 28867 13-1041 131041 Business, Finance
## 28868 15-1142 151142 Computer, Math
## 28869 17-2141 172141 Architecture, Engineer
## 28870 15-1131 151131 Computer, Math
## 28871 15-1133 151133 Computer, Math
## 28872 15-1132 151132 Computer, Math
## 28873 15-1132 151132 Computer, Math
## 28874 15-1132 151132 Computer, Math
## 28875 15-1132 151132 Computer, Math
## 28876 15-1121 151121 Computer, Math
## 28877 25-1052 251052 Education, Training
## 28878 19-1012 191012 Life, Physcial, Social Science
## 28879 15-1132 151132 Computer, Math
## 28880 15-1121 151121 Computer, Math
## 28881 15-1132 151132 Computer, Math
## 28882 15-1132 151132 Computer, Math
## 28883 15-1121 151121 Computer, Math
## 28884 15-1132 151132 Computer, Math
## 28885 23-1011 231011 Legal
## 28886 15-1132 151132 Computer, Math
## 28887 13-1041 131041 Business, Finance
## 28888 15-1132 151132 Computer, Math
## 28889 13-1081 131081 Business, Finance
## 28890 13-2051 132051 Business, Finance
## 28891 29-9099 299099 Healthcare Practitioner
## 28892 15-1132 151132 Computer, Math
## 28893 15-1132 151132 Computer, Math
## 28894 15-1121 151121 Computer, Math
## 28895 15-1131 151131 Computer, Math
## 28896 15-1199 151199 Computer, Math
## 28897 29-1069 291069 Healthcare Practitioner
## 28898 15-1132 151132 Computer, Math
## 28899 15-1131 151131 Computer, Math
## 28900 17-1011 171011 Architecture, Engineer
## 28901 15-1132 151132 Computer, Math
## 28902 13-2011 132011 Business, Finance
## 28903 15-2031 152031 Computer, Math
## 28904 29-1127 291127 Healthcare Practitioner
## 28905 15-1131 151131 Computer, Math
## 28906 29-1199 291199 Healthcare Practitioner
## 28907 15-1121 151121 Computer, Math
## 28908 15-1199 151199 Computer, Math
## 28909 15-1132 151132 Computer, Math
## 28910 27-1024 271024 Media, Design
## 28911 17-2199 172199 Architecture, Engineer
## 28912 15-1121 151121 Computer, Math
## 28913 13-1141 131141 Business, Finance
## 28914 15-1132 151132 Computer, Math
## 28915 29-1069 291069 Healthcare Practitioner
## 28916 15-1199 151199 Computer, Math
## 28917 15-1132 151132 Computer, Math
## 28918 15-1151 151151 Computer, Math
## 28919 15-1132 151132 Computer, Math
## 28920 29-1123 291123 Healthcare Practitioner
## 28921 15-2031 152031 Computer, Math
## 28922 15-1121 151121 Computer, Math
## 28923 15-1132 151132 Computer, Math
## 28924 29-1123 291123 Healthcare Practitioner
## 28925 15-1199 151199 Computer, Math
## 28926 13-1081 131081 Business, Finance
## 28927 15-1199 151199 Computer, Math
## 28928 15-1132 151132 Computer, Math
## 28929 15-1131 151131 Computer, Math
## 28930 13-1071 131071 Business, Finance
## 28931 15-1132 151132 Computer, Math
## 28932 15-1132 151132 Computer, Math
## 28933 15-1131 151131 Computer, Math
## 28934 15-1121 151121 Computer, Math
## 28935 15-1132 151132 Computer, Math
## 28936 27-1022 271022 Media, Design
## 28937 15-1132 151132 Computer, Math
## 28938 25-1124 251124 Education, Training
## 28939 15-1141 151141 Computer, Math
## 28940 17-2072 172072 Architecture, Engineer
## 28941 15-1132 151132 Computer, Math
## 28942 15-1132 151132 Computer, Math
## 28943 15-1121 151121 Computer, Math
## 28944 15-1132 151132 Computer, Math
## 28945 15-1199 151199 Computer, Math
## 28946 15-1121 151121 Computer, Math
## 28947 15-1199 151199 Computer, Math
## 28948 15-1121 151121 Computer, Math
## 28949 15-2011 152011 Computer, Math
## 28950 15-2031 152031 Computer, Math
## 28951 15-1141 151141 Computer, Math
## 28952 17-2112 172112 Architecture, Engineer
## 28953 15-1199 151199 Computer, Math
## 28954 25-2031 252031 Education, Training
## 28955 17-2141 172141 Architecture, Engineer
## 28956 15-1132 151132 Computer, Math
## 28957 15-1141 151141 Computer, Math
## 28958 15-1199 151199 Computer, Math
## 28959 27-3031 273031 Media, Design
## 28960 15-1132 151132 Computer, Math
## 28961 13-2011 132011 Business, Finance
## 28962 15-1133 151133 Computer, Math
## 28963 17-2141 172141 Architecture, Engineer
## 28964 13-1161 131161 Business, Finance
## 28965 15-1132 151132 Computer, Math
## 28966 13-1111 131111 Business, Finance
## 28967 15-1132 151132 Computer, Math
## 28968 13-1041 131041 Business, Finance
## 28969 11-2022 112022 Management
## 28970 15-1132 151132 Computer, Math
## 28971 27-1021 271021 Media, Design
## 28972 15-1132 151132 Computer, Math
## 28973 15-1199 151199 Computer, Math
## 28974 15-1132 151132 Computer, Math
## 28975 15-2031 152031 Computer, Math
## 28976 15-1131 151131 Computer, Math
## 28977 15-1133 151133 Computer, Math
## 28978 19-2031 192031 Life, Physcial, Social Science
## 28979 25-1071 251071 Education, Training
## 28980 17-2141 172141 Architecture, Engineer
## 28981 15-1199 151199 Computer, Math
## 28982 15-1132 151132 Computer, Math
## 28983 17-2072 172072 Architecture, Engineer
## 28984 15-1132 151132 Computer, Math
## 28985 15-2041 152041 Computer, Math
## 28986 15-1132 151132 Computer, Math
## 28987 15-1132 151132 Computer, Math
## 28988 11-3021 113021 Management
## 28989 15-1141 151141 Computer, Math
## 28990 15-1133 151133 Computer, Math
## 28991 17-2141 172141 Architecture, Engineer
## 28992 15-1132 151132 Computer, Math
## 28993 15-1132 151132 Computer, Math
## 28994 15-1131 151131 Computer, Math
## 28995 15-1132 151132 Computer, Math
## 28996 15-1131 151131 Computer, Math
## 28997 15-1132 151132 Computer, Math
## 28998 15-1133 151133 Computer, Math
## 28999 15-2031 152031 Computer, Math
## 29000 13-2051 132051 Business, Finance
## 29001 25-3099 253099 Education, Training
## 29002 15-1122 151122 Computer, Math
## 29003 25-1032 251032 Education, Training
## 29004 15-1131 151131 Computer, Math
## 29005 29-1021 291021 Healthcare Practitioner
## 29006 15-2031 152031 Computer, Math
## 29007 15-1132 151132 Computer, Math
## 29008 11-2021 112021 Management
## 29009 15-1142 151142 Computer, Math
## 29010 25-1021 251021 Education, Training
## 29011 25-1032 251032 Education, Training
## 29012 15-1199 151199 Computer, Math
## 29013 19-2031 192031 Life, Physcial, Social Science
## 29014 25-2012 252012 Education, Training
## 29015 15-1199 151199 Computer, Math
## 29016 15-1199 151199 Computer, Math
## 29017 27-1014 271014 Media, Design
## 29018 17-2061 172061 Architecture, Engineer
## 29019 15-1199 151199 Computer, Math
## 29020 15-1131 151131 Computer, Math
## 29021 15-1132 151132 Computer, Math
## 29022 15-1132 151132 Computer, Math
## 29023 15-1132 151132 Computer, Math
## 29024 15-1121 151121 Computer, Math
## 29025 15-1199 151199 Computer, Math
## 29026 15-1132 151132 Computer, Math
## 29027 11-9041 119041 Management
## 29028 15-2031 152031 Computer, Math
## 29029 15-1132 151132 Computer, Math
## 29030 15-1131 151131 Computer, Math
## 29031 15-1132 151132 Computer, Math
## 29032 15-1199 151199 Computer, Math
## 29033 17-2072 172072 Architecture, Engineer
## 29034 13-1111 131111 Business, Finance
## 29035 15-1121 151121 Computer, Math
## 29036 15-1121 151121 Computer, Math
## 29037 15-1121 151121 Computer, Math
## 29038 15-1199 151199 Computer, Math
## 29039 15-1132 151132 Computer, Math
## 29040 23-2011 232011 Legal
## 29041 15-1132 151132 Computer, Math
## 29042 15-1132 151132 Computer, Math
## 29043 15-1133 151133 Computer, Math
## 29044 15-1199 151199 Computer, Math
## 29045 15-1132 151132 Computer, Math
## 29046 17-2072 172072 Architecture, Engineer
## 29047 15-1132 151132 Computer, Math
## 29048 15-1199 151199 Computer, Math
## 29049 15-1199.09 151199 Computer, Math
## 29050 29-1063 291063 Healthcare Practitioner
## 29051 11-3021 113021 Management
## 29052 15-1133 151133 Computer, Math
## 29053 15-1132 151132 Computer, Math
## 29054 15-1121 151121 Computer, Math
## 29055 15-1132 151132 Computer, Math
## 29056 15-1132 151132 Computer, Math
## 29057 15-1132 151132 Computer, Math
## 29058 15-1199 151199 Computer, Math
## 29059 23-1011 231011 Legal
## 29060 15-1132 151132 Computer, Math
## 29061 15-1199 151199 Computer, Math
## 29062 15-1132 151132 Computer, Math
## 29063 15-2031 152031 Computer, Math
## 29064 15-1199 151199 Computer, Math
## 29065 17-2051 172051 Architecture, Engineer
## 29066 25-2032 252032 Education, Training
## 29067 25-1071 251071 Education, Training
## 29068 15-1132 151132 Computer, Math
## 29069 15-1132 151132 Computer, Math
## 29070 13-1111 131111 Business, Finance
## 29071 15-1132 151132 Computer, Math
## 29072 15-1132 151132 Computer, Math
## 29073 15-1132 151132 Computer, Math
## 29074 15-1121 151121 Computer, Math
## 29075 15-1132 151132 Computer, Math
## 29076 15-1132 151132 Computer, Math
## 29077 15-1132 151132 Computer, Math
## 29078 15-1132 151132 Computer, Math
## 29079 15-1132 151132 Computer, Math
## 29080 15-1132 151132 Computer, Math
## 29081 15-1132 151132 Computer, Math
## 29082 19-1021 191021 Life, Physcial, Social Science
## 29083 15-1132 151132 Computer, Math
## 29084 15-1132 151132 Computer, Math
## 29085 15-1132 151132 Computer, Math
## 29086 15-1121 151121 Computer, Math
## 29087 15-1111 151111 Computer, Math
## 29088 15-1132 151132 Computer, Math
## 29089 15-1142 151142 Computer, Math
## 29090 15-1199 151199 Computer, Math
## 29091 15-1132 151132 Computer, Math
## 29092 15-1121 151121 Computer, Math
## 29093 15-1199 151199 Computer, Math
## 29094 15-1132 151132 Computer, Math
## 29095 15-1121 151121 Computer, Math
## 29096 15-2011 152011 Computer, Math
## 29097 19-1042 191042 Life, Physcial, Social Science
## 29098 15-1121 151121 Computer, Math
## 29099 29-1081 291081 Healthcare Practitioner
## 29100 15-1132 151132 Computer, Math
## 29101 15-1199 151199 Computer, Math
## 29102 15-1132 151132 Computer, Math
## 29103 15-1132 151132 Computer, Math
## 29104 15-1121 151121 Computer, Math
## 29105 13-2099 132099 Business, Finance
## 29106 15-1132 151132 Computer, Math
## 29107 13-2011 132011 Business, Finance
## 29108 15-1141 151141 Computer, Math
## 29109 15-1132 151132 Computer, Math
## 29110 17-2111 172111 Architecture, Engineer
## 29111 15-1132 151132 Computer, Math
## 29112 17-2112 172112 Architecture, Engineer
## 29113 15-1121 151121 Computer, Math
## 29114 15-2041 152041 Computer, Math
## 29115 11-2021 112021 Management
## 29116 15-1131 151131 Computer, Math
## 29117 15-1132 151132 Computer, Math
## 29118 15-1132 151132 Computer, Math
## 29119 15-1132 151132 Computer, Math
## 29120 15-1133 151133 Computer, Math
## 29121 11-3051 113051 Management
## 29122 23-1011 231011 Legal
## 29123 15-1132 151132 Computer, Math
## 29124 13-1111 131111 Business, Finance
## 29125 15-1131 151131 Computer, Math
## 29126 15-1132 151132 Computer, Math
## 29127 15-1199 151199 Computer, Math
## 29128 15-1111 151111 Computer, Math
## 29129 15-1132 151132 Computer, Math
## 29130 13-1161 131161 Business, Finance
## 29131 15-1132 151132 Computer, Math
## 29132 15-1132 151132 Computer, Math
## 29133 15-1132 151132 Computer, Math
## 29134 19-2031 192031 Life, Physcial, Social Science
## 29135 15-1131 151131 Computer, Math
## 29136 15-1132 151132 Computer, Math
## 29137 19-4021 194021 Life, Physcial, Social Science
## 29138 15-1132 151132 Computer, Math
## 29139 11-9013 119013 Management
## 29140 15-1143 151143 Computer, Math
## 29141 15-1132 151132 Computer, Math
## 29142 17-2031 172031 Architecture, Engineer
## 29143 25-2031 252031 Education, Training
## 29144 15-1199 151199 Computer, Math
## 29145 15-1132 151132 Computer, Math
## 29146 15-1132 151132 Computer, Math
## 29147 13-1161 131161 Business, Finance
## 29148 15-1199 151199 Computer, Math
## 29149 15-1199 151199 Computer, Math
## 29150 15-1131 151131 Computer, Math
## 29151 29-1122 291122 Healthcare Practitioner
## 29152 11-3021 113021 Management
## 29153 25-1123 251123 Education, Training
## 29154 17-2071 172071 Architecture, Engineer
## 29155 15-1133 151133 Computer, Math
## 29156 19-1021 191021 Life, Physcial, Social Science
## 29157 13-1111 131111 Business, Finance
## 29158 13-2011 132011 Business, Finance
## 29159 15-1141 151141 Computer, Math
## 29160 15-1132 151132 Computer, Math
## 29161 15-1132 151132 Computer, Math
## 29162 15-1131 151131 Computer, Math
## 29163 15-1122 151122 Computer, Math
## 29164 15-1132 151132 Computer, Math
## 29165 15-1132 151132 Computer, Math
## 29166 19-1021 191021 Life, Physcial, Social Science
## 29167 15-1121 151121 Computer, Math
## 29168 15-1142 151142 Computer, Math
## 29169 15-1132 151132 Computer, Math
## 29170 15-1121 151121 Computer, Math
## 29171 15-2041 152041 Computer, Math
## 29172 25-1071 251071 Education, Training
## 29173 17-3011 173011 Architecture, Engineer
## 29174 13-1121 131121 Business, Finance
## 29175 15-1132 151132 Computer, Math
## 29176 27-1011 271011 Media, Design
## 29177 15-1132 151132 Computer, Math
## 29178 15-1133 151133 Computer, Math
## 29179 13-1031 131031 Business, Finance
## 29180 29-9099 299099 Healthcare Practitioner
## 29181 15-2011 152011 Computer, Math
## 29182 15-1121 151121 Computer, Math
## 29183 15-1131 151131 Computer, Math
## 29184 17-1012 171012 Architecture, Engineer
## 29185 15-1132 151132 Computer, Math
## 29186 15-1133 151133 Computer, Math
## 29187 17-2112 172112 Architecture, Engineer
## 29188 15-1121 151121 Computer, Math
## 29189 13-1111 131111 Business, Finance
## 29190 15-1199 151199 Computer, Math
## 29191 15-1121 151121 Computer, Math
## 29192 15-1121 151121 Computer, Math
## 29193 15-1132 151132 Computer, Math
## 29194 15-1199 151199 Computer, Math
## 29195 15-1132 151132 Computer, Math
## 29196 13-2099 132099 Business, Finance
## 29197 15-1121 151121 Computer, Math
## 29198 15-1132 151132 Computer, Math
## 29199 25-2031 252031 Education, Training
## 29200 15-1132 151132 Computer, Math
## 29201 15-1132 151132 Computer, Math
## 29202 29-1123 291123 Healthcare Practitioner
## 29203 15-1132 151132 Computer, Math
## 29204 29-2011 292011 Healthcare Practitioner
## 29205 13-2041 132041 Business, Finance
## 29206 15-1121 151121 Computer, Math
## 29207 15-1132 151132 Computer, Math
## 29208 15-1132 151132 Computer, Math
## 29209 17-2199 172199 Architecture, Engineer
## 29210 15-1132 151132 Computer, Math
## 29211 15-1121 151121 Computer, Math
## 29212 15-1132 151132 Computer, Math
## 29213 11-9199 119199 Management
## 29214 17-2199 172199 Architecture, Engineer
## 29215 15-1132 151132 Computer, Math
## 29216 15-1131 151131 Computer, Math
## 29217 13-1161 131161 Business, Finance
## 29218 15-1121 151121 Computer, Math
## 29219 15-1132 151132 Computer, Math
## 29220 29-1063 291063 Healthcare Practitioner
## 29221 17-2112 172112 Architecture, Engineer
## 29222 15-1121 151121 Computer, Math
## 29223 15-1132 151132 Computer, Math
## 29224 15-1131 151131 Computer, Math
## 29225 15-1141 151141 Computer, Math
## 29226 15-1199 151199 Computer, Math
## 29227 15-1141 151141 Computer, Math
## 29228 15-1122 151122 Computer, Math
## 29229 15-1132 151132 Computer, Math
## 29230 15-1132 151132 Computer, Math
## 29231 17-2051 172051 Architecture, Engineer
## 29232 15-1199.09 151199 Computer, Math
## 29233 15-1132 151132 Computer, Math
## 29234 15-1133 151133 Computer, Math
## 29235 15-1132 151132 Computer, Math
## 29236 15-1132 151132 Computer, Math
## 29237 25-1032 251032 Education, Training
## 29238 15-1199 151199 Computer, Math
## 29239 13-2099 132099 Business, Finance
## 29240 15-1121 151121 Computer, Math
## 29241 15-1132 151132 Computer, Math
## 29242 17-2112 172112 Architecture, Engineer
## 29243 15-1131 151131 Computer, Math
## 29244 29-2011 292011 Healthcare Practitioner
## 29245 15-1132 151132 Computer, Math
## 29246 15-1132 151132 Computer, Math
## 29247 15-1132 151132 Computer, Math
## 29248 15-1132 151132 Computer, Math
## 29249 15-1142 151142 Computer, Math
## 29250 15-1121 151121 Computer, Math
## 29251 15-1132 151132 Computer, Math
## 29252 15-1132 151132 Computer, Math
## 29253 15-1199 151199 Computer, Math
## 29254 15-1121 151121 Computer, Math
## 29255 15-1199 151199 Computer, Math
## 29256 17-2199 172199 Architecture, Engineer
## 29257 15-1199 151199 Computer, Math
## 29258 29-1041 291041 Healthcare Practitioner
## 29259 15-1132 151132 Computer, Math
## 29260 15-1132 151132 Computer, Math
## 29261 15-1132 151132 Computer, Math
## 29262 15-1132 151132 Computer, Math
## 29263 15-2031 152031 Computer, Math
## 29264 15-1132 151132 Computer, Math
## 29265 29-1127 291127 Healthcare Practitioner
## 29266 19-1042 191042 Life, Physcial, Social Science
## 29267 15-1199 151199 Computer, Math
## 29268 15-1121 151121 Computer, Math
## 29269 15-1132 151132 Computer, Math
## 29270 15-1121 151121 Computer, Math
## 29271 15-1131 151131 Computer, Math
## 29272 13-1051 131051 Business, Finance
## 29273 15-2041 152041 Computer, Math
## 29274 15-1199 151199 Computer, Math
## 29275 15-1133 151133 Computer, Math
## 29276 11-1011 111011 Management
## 29277 15-1199 151199 Computer, Math
## 29278 17-2041 172041 Architecture, Engineer
## 29279 15-1122 151122 Computer, Math
## 29280 29-1069 291069 Healthcare Practitioner
## 29281 11-3021 113021 Management
## 29282 25-1011 251011 Education, Training
## 29283 17-2072 172072 Architecture, Engineer
## 29284 13-2099 132099 Business, Finance
## 29285 29-1051 291051 Healthcare Practitioner
## 29286 15-1199 151199 Computer, Math
## 29287 17-2061 172061 Architecture, Engineer
## 29288 13-1051 131051 Business, Finance
## 29289 15-1132 151132 Computer, Math
## 29290 15-1132 151132 Computer, Math
## 29291 15-1132 151132 Computer, Math
## 29292 15-1121 151121 Computer, Math
## 29293 17-2141 172141 Architecture, Engineer
## 29294 27-3041 273041 Media, Design
## 29295 11-3021 113021 Management
## 29296 15-1121 151121 Computer, Math
## 29297 15-1141 151141 Computer, Math
## 29298 15-1132 151132 Computer, Math
## 29299 13-1081 131081 Business, Finance
## 29300 15-1132 151132 Computer, Math
## 29301 19-1042 191042 Life, Physcial, Social Science
## 29302 15-1111 151111 Computer, Math
## 29303 15-1132 151132 Computer, Math
## 29304 15-1133 151133 Computer, Math
## 29305 17-2131 172131 Architecture, Engineer
## 29306 11-2031 112031 Management
## 29307 15-1121 151121 Computer, Math
## 29308 15-1132 151132 Computer, Math
## 29309 19-3011 193011 Life, Physcial, Social Science
## 29310 15-2041 152041 Computer, Math
## 29311 15-1132 151132 Computer, Math
## 29312 17-2141 172141 Architecture, Engineer
## 29313 15-1141 151141 Computer, Math
## 29314 27-1024 271024 Media, Design
## 29315 19-2042 192042 Life, Physcial, Social Science
## 29316 19-2031 192031 Life, Physcial, Social Science
## 29317 15-1132 151132 Computer, Math
## 29318 15-1121 151121 Computer, Math
## 29319 25-1011 251011 Education, Training
## 29320 15-1132 151132 Computer, Math
## 29321 15-1199 151199 Computer, Math
## 29322 15-1132 151132 Computer, Math
## 29323 15-2041 152041 Computer, Math
## 29324 15-1199 151199 Computer, Math
## 29325 15-1199 151199 Computer, Math
## 29326 13-2011 132011 Business, Finance
## 29327 17-2199 172199 Architecture, Engineer
## 29328 15-1133 151133 Computer, Math
## 29329 15-2031 152031 Computer, Math
## 29330 15-1132 151132 Computer, Math
## 29331 11-3021 113021 Management
## 29332 15-1051.00 151051 Computer, Math
## 29333 15-1121 151121 Computer, Math
## 29334 15-1141 151141 Computer, Math
## 29335 15-1132 151132 Computer, Math
## 29336 17-2141 172141 Architecture, Engineer
## 29337 17-2072 172072 Architecture, Engineer
## 29338 15-1131 151131 Computer, Math
## 29339 15-1131 151131 Computer, Math
## 29340 15-1133 151133 Computer, Math
## 29341 15-1132 151132 Computer, Math
## 29342 17-2072 172072 Architecture, Engineer
## 29343 15-1121 151121 Computer, Math
## 29344 15-1132 151132 Computer, Math
## 29345 15-1132 151132 Computer, Math
## 29346 15-1199 151199 Computer, Math
## 29347 15-1121 151121 Computer, Math
## 29348 15-1132 151132 Computer, Math
## 29349 15-1132 151132 Computer, Math
## 29350 11-3021 113021 Management
## 29351 15-1199 151199 Computer, Math
## 29352 19-1021 191021 Life, Physcial, Social Science
## 29353 13-1111 131111 Business, Finance
## 29354 15-1132 151132 Computer, Math
## 29355 15-1132 151132 Computer, Math
## 29356 15-1132 151132 Computer, Math
## 29357 15-1131 151131 Computer, Math
## 29358 15-1133 151133 Computer, Math
## 29359 15-1121 151121 Computer, Math
## 29360 15-1121 151121 Computer, Math
## 29361 15-1132 151132 Computer, Math
## 29362 15-1121 151121 Computer, Math
## 29363 15-1132 151132 Computer, Math
## 29364 11-2021 112021 Management
## 29365 15-1199 151199 Computer, Math
## 29366 17-2071 172071 Architecture, Engineer
## 29367 15-1132 151132 Computer, Math
## 29368 15-1132 151132 Computer, Math
## 29369 15-1132 151132 Computer, Math
## 29370 15-1199 151199 Computer, Math
## 29371 15-1132 151132 Computer, Math
## 29372 15-1199 151199 Computer, Math
## 29373 15-1121 151121 Computer, Math
## 29374 15-1132 151132 Computer, Math
## 29375 15-1132 151132 Computer, Math
## 29376 15-1142 151142 Computer, Math
## 29377 15-1121 151121 Computer, Math
## 29378 15-1132 151132 Computer, Math
## 29379 15-1132 151132 Computer, Math
## 29380 13-1111 131111 Business, Finance
## 29381 19-2031 192031 Life, Physcial, Social Science
## 29382 17-2199 172199 Architecture, Engineer
## 29383 15-1132 151132 Computer, Math
## 29384 15-1132 151132 Computer, Math
## 29385 15-1133 151133 Computer, Math
## 29386 15-1199 151199 Computer, Math
## 29387 15-1132 151132 Computer, Math
## 29388 15-1132 151132 Computer, Math
## 29389 15-1141 151141 Computer, Math
## 29390 15-1132 151132 Computer, Math
## 29391 15-1132 151132 Computer, Math
## 29392 13-2051 132051 Business, Finance
## 29393 17-2051 172051 Architecture, Engineer
## 29394 15-1132 151132 Computer, Math
## 29395 27-1024 271024 Media, Design
## 29396 15-1199 151199 Computer, Math
## 29397 15-1132 151132 Computer, Math
## 29398 15-1132 151132 Computer, Math
## 29399 15-1133 151133 Computer, Math
## 29400 15-1121 151121 Computer, Math
## 29401 15-1132 151132 Computer, Math
## 29402 15-1132 151132 Computer, Math
## 29403 25-1125 251125 Education, Training
## 29404 15-1199 151199 Computer, Math
## 29405 15-1131 151131 Computer, Math
## 29406 15-1121 151121 Computer, Math
## 29407 15-1132 151132 Computer, Math
## 29408 19-2031 192031 Life, Physcial, Social Science
## 29409 17-2112 172112 Architecture, Engineer
## 29410 15-1131 151131 Computer, Math
## 29411 15-1132 151132 Computer, Math
## 29412 15-1199 151199 Computer, Math
## 29413 19-2021 192021 Life, Physcial, Social Science
## 29414 13-1071 131071 Business, Finance
## 29415 41-4011 414011 Sales
## 29416 15-1199 151199 Computer, Math
## 29417 13-1111 131111 Business, Finance
## 29418 17-2112 172112 Architecture, Engineer
## 29419 11-2022 112022 Management
## 29420 13-1161 131161 Business, Finance
## 29421 15-1133 151133 Computer, Math
## 29422 13-1151 131151 Business, Finance
## 29423 15-1132 151132 Computer, Math
## 29424 15-1199 151199 Computer, Math
## 29425 15-1132 151132 Computer, Math
## 29426 15-1132 151132 Computer, Math
## 29427 13-1111 131111 Business, Finance
## 29428 15-1142 151142 Computer, Math
## 29429 15-1121 151121 Computer, Math
## 29430 15-1132 151132 Computer, Math
## 29431 15-1121 151121 Computer, Math
## 29432 15-1132 151132 Computer, Math
## 29433 15-1121 151121 Computer, Math
## 29434 17-2071 172071 Architecture, Engineer
## 29435 17-2051 172051 Architecture, Engineer
## 29436 15-1121 151121 Computer, Math
## 29437 15-1131 151131 Computer, Math
## 29438 15-1132 151132 Computer, Math
## 29439 15-1132 151132 Computer, Math
## 29440 15-1199 151199 Computer, Math
## 29441 15-1131 151131 Computer, Math
## 29442 11-3051 113051 Management
## 29443 15-1121 151121 Computer, Math
## 29444 15-1132 151132 Computer, Math
## 29445 15-2041 152041 Computer, Math
## 29446 15-1199 151199 Computer, Math
## 29447 15-1143 151143 Computer, Math
## 29448 15-1132 151132 Computer, Math
## 29449 15-1132 151132 Computer, Math
## 29450 15-1121 151121 Computer, Math
## 29451 15-1131 151131 Computer, Math
## 29452 15-1121 151121 Computer, Math
## 29453 13-1161 131161 Business, Finance
## 29454 15-1199 151199 Computer, Math
## 29455 13-1081 131081 Business, Finance
## 29456 13-1071 131071 Business, Finance
## 29457 15-2031 152031 Computer, Math
## 29458 15-1121 151121 Computer, Math
## 29459 15-1132 151132 Computer, Math
## 29460 15-1132 151132 Computer, Math
## 29461 15-1121 151121 Computer, Math
## 29462 15-1132 151132 Computer, Math
## 29463 15-1132 151132 Computer, Math
## 29464 15-1134 151134 Computer, Math
## 29465 15-1132 151132 Computer, Math
## 29466 15-1199 151199 Computer, Math
## 29467 13-1161 131161 Business, Finance
## 29468 15-1199 151199 Computer, Math
## 29469 15-1132 151132 Computer, Math
## 29470 15-1141 151141 Computer, Math
## 29471 15-1121 151121 Computer, Math
## 29472 15-1121 151121 Computer, Math
## 29473 15-1132 151132 Computer, Math
## 29474 15-1132 151132 Computer, Math
## 29475 25-2022 252022 Education, Training
## 29476 15-1121 151121 Computer, Math
## 29477 15-1121 151121 Computer, Math
## 29478 17-2071 172071 Architecture, Engineer
## 29479 15-1022 151022 Computer, Math
## 29480 15-1199 151199 Computer, Math
## 29481 15-1132 151132 Computer, Math
## 29482 11-3021 113021 Management
## 29483 13-2099 132099 Business, Finance
## 29484 15-1199 151199 Computer, Math
## 29485 13-1111 131111 Business, Finance
## 29486 15-1131 151131 Computer, Math
## 29487 17-2061 172061 Architecture, Engineer
## 29488 15-1133 151133 Computer, Math
## 29489 15-1199 151199 Computer, Math
## 29490 13-1161 131161 Business, Finance
## 29491 13-2011 132011 Business, Finance
## 29492 15-1121 151121 Computer, Math
## 29493 13-2051 132051 Business, Finance
## 29494 15-1132 151132 Computer, Math
## 29495 15-2041 152041 Computer, Math
## 29496 15-1132 151132 Computer, Math
## 29497 15-1121 151121 Computer, Math
## 29498 15-1121 151121 Computer, Math
## 29499 15-1121 151121 Computer, Math
## 29500 15-1132 151132 Computer, Math
## 29501 15-1131 151131 Computer, Math
## 29502 15-1133 151133 Computer, Math
## 29503 19-2041 192041 Life, Physcial, Social Science
## 29504 15-1121 151121 Computer, Math
## 29505 25-1032 251032 Education, Training
## 29506 15-1141 151141 Computer, Math
## 29507 15-1132 151132 Computer, Math
## 29508 15-1131 151131 Computer, Math
## 29509 15-1131 151131 Computer, Math
## 29510 15-1132 151132 Computer, Math
## 29511 15-1199 151199 Computer, Math
## 29512 13-2011 132011 Business, Finance
## 29513 15-1199 151199 Computer, Math
## 29514 13-2099 132099 Business, Finance
## 29515 15-1132 151132 Computer, Math
## 29516 15-1131 151131 Computer, Math
## 29517 17-2141 172141 Architecture, Engineer
## 29518 13-1111 131111 Business, Finance
## 29519 29-1069 291069 Healthcare Practitioner
## 29520 15-1199 151199 Computer, Math
## 29521 15-1134 151134 Computer, Math
## 29522 15-1132 151132 Computer, Math
## 29523 15-1132 151132 Computer, Math
## 29524 15-1121 151121 Computer, Math
## 29525 15-1199 151199 Computer, Math
## 29526 15-1121 151121 Computer, Math
## 29527 17-2141 172141 Architecture, Engineer
## 29528 15-1121 151121 Computer, Math
## 29529 15-1121 151121 Computer, Math
## 29530 15-1132 151132 Computer, Math
## 29531 15-1199 151199 Computer, Math
## 29532 15-1132 151132 Computer, Math
## 29533 17-2112 172112 Architecture, Engineer
## 29534 15-1132 151132 Computer, Math
## 29535 13-2051 132051 Business, Finance
## 29536 41-9031 419031 Sales
## 29537 15-1199 151199 Computer, Math
## 29538 29-1069 291069 Healthcare Practitioner
## 29539 15-1199 151199 Computer, Math
## 29540 15-1132 151132 Computer, Math
## 29541 15-1121 151121 Computer, Math
## 29542 13-1111 131111 Business, Finance
## 29543 15-1199 151199 Computer, Math
## 29544 17-2071 172071 Architecture, Engineer
## 29545 11-3021 113021 Management
## 29546 15-1199 151199 Computer, Math
## 29547 15-1121 151121 Computer, Math
## 29548 13-2031 132031 Business, Finance
## 29549 15-1142 151142 Computer, Math
## 29550 15-1199 151199 Computer, Math
## 29551 15-1132 151132 Computer, Math
## 29552 13-2051 132051 Business, Finance
## 29553 15-1199 151199 Computer, Math
## 29554 15-1133 151133 Computer, Math
## 29555 15-1121 151121 Computer, Math
## 29556 15-1121 151121 Computer, Math
## 29557 15-1132 151132 Computer, Math
## 29558 15-1121 151121 Computer, Math
## 29559 11-2021 112021 Management
## 29560 15-1132 151132 Computer, Math
## 29561 15-1131 151131 Computer, Math
## 29562 15-1132 151132 Computer, Math
## 29563 15-1132 151132 Computer, Math
## 29564 17-2071 172071 Architecture, Engineer
## 29565 29-1069 291069 Healthcare Practitioner
## 29566 13-2099 132099 Business, Finance
## 29567 15-1121 151121 Computer, Math
## 29568 15-1121 151121 Computer, Math
## 29569 15-1131 151131 Computer, Math
## 29570 15-1199 151199 Computer, Math
## 29571 15-1132 151132 Computer, Math
## 29572 29-1123 291123 Healthcare Practitioner
## 29573 15-1199 151199 Computer, Math
## 29574 17-2061 172061 Architecture, Engineer
## 29575 13-1111 131111 Business, Finance
## 29576 19-1029 191029 Life, Physcial, Social Science
## 29577 15-1121 151121 Computer, Math
## 29578 15-1133 151133 Computer, Math
## 29579 19-3011 193011 Life, Physcial, Social Science
## 29580 17-2071 172071 Architecture, Engineer
## 29581 15-1133 151133 Computer, Math
## 29582 15-1121 151121 Computer, Math
## 29583 15-1132 151132 Computer, Math
## 29584 17-2199 172199 Architecture, Engineer
## 29585 15-1131 151131 Computer, Math
## 29586 15-1121 151121 Computer, Math
## 29587 15-1199 151199 Computer, Math
## 29588 15-1132 151132 Computer, Math
## 29589 15-1199 151199 Computer, Math
## 29590 11-3021 113021 Management
## 29591 15-1132 151132 Computer, Math
## 29592 15-1132 151132 Computer, Math
## 29593 15-1199 151199 Computer, Math
## 29594 17-2031 172031 Architecture, Engineer
## 29595 15-1199 151199 Computer, Math
## 29596 15-1199 151199 Computer, Math
## 29597 15-1199 151199 Computer, Math
## 29598 15-1199 151199 Computer, Math
## 29599 15-1133 151133 Computer, Math
## 29600 15-1121 151121 Computer, Math
## 29601 15-2041 152041 Computer, Math
## 29602 15-1199 151199 Computer, Math
## 29603 15-1132 151132 Computer, Math
## 29604 15-1199 151199 Computer, Math
## 29605 15-1132 151132 Computer, Math
## 29606 15-1132 151132 Computer, Math
## 29607 17-2071 172071 Architecture, Engineer
## 29608 15-1122 151122 Computer, Math
## 29609 15-1132 151132 Computer, Math
## 29610 15-1199 151199 Computer, Math
## 29611 15-1132 151132 Computer, Math
## 29612 15-1199 151199 Computer, Math
## 29613 15-1121 151121 Computer, Math
## 29614 15-1121 151121 Computer, Math
## 29615 15-1199 151199 Computer, Math
## 29616 11-3021 113021 Management
## 29617 15-1143 151143 Computer, Math
## 29618 15-1132 151132 Computer, Math
## 29619 15-1132 151132 Computer, Math
## 29620 15-1131 151131 Computer, Math
## 29621 15-1132 151132 Computer, Math
## 29622 15-1121 151121 Computer, Math
## 29623 15-1132 151132 Computer, Math
## 29624 17-2071 172071 Architecture, Engineer
## 29625 15-1132 151132 Computer, Math
## 29626 15-1132 151132 Computer, Math
## 29627 15-1121 151121 Computer, Math
## 29628 25-1011 251011 Education, Training
## 29629 15-1132 151132 Computer, Math
## 29630 11-3021 113021 Management
## 29631 15-1141 151141 Computer, Math
## 29632 19-1029 191029 Life, Physcial, Social Science
## 29633 15-1199 151199 Computer, Math
## 29634 15-1132 151132 Computer, Math
## 29635 15-1132 151132 Computer, Math
## 29636 15-1132 151132 Computer, Math
## 29637 17-2051 172051 Architecture, Engineer
## 29638 13-2099 132099 Business, Finance
## 29639 15-1132 151132 Computer, Math
## 29640 15-1199 151199 Computer, Math
## 29641 15-1121 151121 Computer, Math
## 29642 29-1051 291051 Healthcare Practitioner
## 29643 15-1121 151121 Computer, Math
## 29644 15-1132 151132 Computer, Math
## 29645 15-1131 151131 Computer, Math
## 29646 15-1132 151132 Computer, Math
## 29647 21-1023 211023 Social Service
## 29648 15-1199 151199 Computer, Math
## 29649 29-9011 299011 Healthcare Practitioner
## 29650 17-2199 172199 Architecture, Engineer
## 29651 15-1121 151121 Computer, Math
## 29652 15-1132 151132 Computer, Math
## 29653 15-1133 151133 Computer, Math
## 29654 15-2041 152041 Computer, Math
## 29655 15-2031 152031 Computer, Math
## 29656 17-2112 172112 Architecture, Engineer
## 29657 19-1013 191013 Life, Physcial, Social Science
## 29658 15-1121 151121 Computer, Math
## 29659 15-1132 151132 Computer, Math
## 29660 13-1071 131071 Business, Finance
## 29661 15-1121 151121 Computer, Math
## 29662 15-1199 151199 Computer, Math
## 29663 19-2031 192031 Life, Physcial, Social Science
## 29664 15-1121 151121 Computer, Math
## 29665 15-1133 151133 Computer, Math
## 29666 15-1199 151199 Computer, Math
## 29667 11-3051 113051 Management
## 29668 15-1121 151121 Computer, Math
## 29669 15-1132 151132 Computer, Math
## 29670 15-1199 151199 Computer, Math
## 29671 15-1133 151133 Computer, Math
## 29672 25-1032 251032 Education, Training
## 29673 15-1121 151121 Computer, Math
## 29674 11-1021 111021 Management
## 29675 15-1121 151121 Computer, Math
## 29676 15-1132 151132 Computer, Math
## 29677 15-2041 152041 Computer, Math
## 29678 15-1132 151132 Computer, Math
## 29679 15-1122 151122 Computer, Math
## 29680 15-1132 151132 Computer, Math
## 29681 15-1133 151133 Computer, Math
## 29682 17-1011 171011 Architecture, Engineer
## 29683 19-3092 193092 Life, Physcial, Social Science
## 29684 15-1131 151131 Computer, Math
## 29685 15-1132 151132 Computer, Math
## 29686 13-2011 132011 Business, Finance
## 29687 13-1199 131199 Business, Finance
## 29688 15-1132 151132 Computer, Math
## 29689 15-1132 151132 Computer, Math
## 29690 19-1029 191029 Life, Physcial, Social Science
## 29691 15-1132 151132 Computer, Math
## 29692 15-1199 151199 Computer, Math
## 29693 15-1132 151132 Computer, Math
## 29694 15-1121 151121 Computer, Math
## 29695 15-2031 152031 Computer, Math
## 29696 15-1132 151132 Computer, Math
## 29697 11-3021 113021 Management
## 29698 29-1199 291199 Healthcare Practitioner
## 29699 15-1132 151132 Computer, Math
## 29700 15-1141 151141 Computer, Math
## 29701 15-2031 152031 Computer, Math
## 29702 19-1021 191021 Life, Physcial, Social Science
## 29703 15-1121 151121 Computer, Math
## 29704 13-2051 132051 Business, Finance
## 29705 15-1121 151121 Computer, Math
## 29706 15-1141 151141 Computer, Math
## 29707 15-1121 151121 Computer, Math
## 29708 19-3011 193011 Life, Physcial, Social Science
## 29709 15-1199 151199 Computer, Math
## 29710 15-1132 151132 Computer, Math
## 29711 15-1121 151121 Computer, Math
## 29712 15-1131 151131 Computer, Math
## 29713 15-1132 151132 Computer, Math
## 29714 13-1161 131161 Business, Finance
## 29715 27-3042 273042 Media, Design
## 29716 15-1133 151133 Computer, Math
## 29717 13-1161 131161 Business, Finance
## 29718 15-1132 151132 Computer, Math
## 29719 15-1121 151121 Computer, Math
## 29720 15-1121 151121 Computer, Math
## 29721 15-1132 151132 Computer, Math
## 29722 15-1132 151132 Computer, Math
## 29723 15-2031 152031 Computer, Math
## 29724 15-1132 151132 Computer, Math
## 29725 15-1132 151132 Computer, Math
## 29726 15-1133 151133 Computer, Math
## 29727 15-1141 151141 Computer, Math
## 29728 15-1131 151131 Computer, Math
## 29729 15-1132 151132 Computer, Math
## 29730 15-1199 151199 Computer, Math
## 29731 11-2011 112011 Management
## 29732 15-1132 151132 Computer, Math
## 29733 15-1132 151132 Computer, Math
## 29734 15-1141 151141 Computer, Math
## 29735 15-1132 151132 Computer, Math
## 29736 15-1132 151132 Computer, Math
## 29737 17-2072 172072 Architecture, Engineer
## 29738 15-1132 151132 Computer, Math
## 29739 11-9021 119021 Management
## 29740 17-2031 172031 Architecture, Engineer
## 29741 11-9199 119199 Management
## 29742 19-2031 192031 Life, Physcial, Social Science
## 29743 15-1121 151121 Computer, Math
## 29744 15-1132 151132 Computer, Math
## 29745 15-2041 152041 Computer, Math
## 29746 13-2011 132011 Business, Finance
## 29747 15-1132 151132 Computer, Math
## 29748 15-1132 151132 Computer, Math
## 29749 25-2021 252021 Education, Training
## 29750 29-9091 299091 Healthcare Practitioner
## 29751 15-1132 151132 Computer, Math
## 29752 15-1142 151142 Computer, Math
## 29753 17-2072 172072 Architecture, Engineer
## 29754 15-1132 151132 Computer, Math
## 29755 15-1141 151141 Computer, Math
## 29756 15-1132 151132 Computer, Math
## 29757 13-1111 131111 Business, Finance
## 29758 15-1199 151199 Computer, Math
## 29759 17-2199 172199 Architecture, Engineer
## 29760 15-1132 151132 Computer, Math
## 29761 15-1132 151132 Computer, Math
## 29762 15-1121 151121 Computer, Math
## 29763 15-1132 151132 Computer, Math
## 29764 17-2051 172051 Architecture, Engineer
## 29765 15-1132 151132 Computer, Math
## 29766 15-1132 151132 Computer, Math
## 29767 11-9199 119199 Management
## 29768 29-1131 291131 Healthcare Practitioner
## 29769 15-2041 152041 Computer, Math
## 29770 15-1132 151132 Computer, Math
## 29771 15-1132 151132 Computer, Math
## 29772 17-2051 172051 Architecture, Engineer
## 29773 15-1121 151121 Computer, Math
## 29774 15-1132 151132 Computer, Math
## 29775 11-9199 119199 Management
## 29776 15-1132 151132 Computer, Math
## 29777 15-1199 151199 Computer, Math
## 29778 15-1199 151199 Computer, Math
## 29779 15-1121 151121 Computer, Math
## 29780 17-2141 172141 Architecture, Engineer
## 29781 15-1142 151142 Computer, Math
## 29782 13-1111 131111 Business, Finance
## 29783 11-3031 113031 Management
## 29784 15-1121 151121 Computer, Math
## 29785 15-1133 151133 Computer, Math
## 29786 15-1132 151132 Computer, Math
## 29787 15-1199 151199 Computer, Math
## 29788 15-1132 151132 Computer, Math
## 29789 15-1132 151132 Computer, Math
## 29790 19-1029 191029 Life, Physcial, Social Science
## 29791 11-9081 119081 Management
## 29792 15-1199 151199 Computer, Math
## 29793 19-1029 191029 Life, Physcial, Social Science
## 29794 15-1132 151132 Computer, Math
## 29795 15-1132 151132 Computer, Math
## 29796 15-1132 151132 Computer, Math
## 29797 15-1133 151133 Computer, Math
## 29798 17-2072 172072 Architecture, Engineer
## 29799 15-1132 151132 Computer, Math
## 29800 15-2031 152031 Computer, Math
## 29801 17-1011 171011 Architecture, Engineer
## 29802 19-1042 191042 Life, Physcial, Social Science
## 29803 15-1132 151132 Computer, Math
## 29804 15-1199 151199 Computer, Math
## 29805 13-2041 132041 Business, Finance
## 29806 15-1131 151131 Computer, Math
## 29807 25-1071 251071 Education, Training
## 29808 15-1132 151132 Computer, Math
## 29809 15-2031 152031 Computer, Math
## 29810 15-1132 151132 Computer, Math
## 29811 15-1199 151199 Computer, Math
## 29812 15-1121 151121 Computer, Math
## 29813 15-1132 151132 Computer, Math
## 29814 15-1121 151121 Computer, Math
## 29815 17-2051 172051 Architecture, Engineer
## 29816 11-3021 113021 Management
## 29817 15-1132 151132 Computer, Math
## 29818 15-1132 151132 Computer, Math
## 29819 15-1199 151199 Computer, Math
## 29820 15-1121 151121 Computer, Math
## 29821 15-1121 151121 Computer, Math
## 29822 17-2141 172141 Architecture, Engineer
## 29823 15-1199 151199 Computer, Math
## 29824 15-1132 151132 Computer, Math
## 29825 15-1133 151133 Computer, Math
## 29826 29-1051 291051 Healthcare Practitioner
## 29827 15-2031 152031 Computer, Math
## 29828 15-1199 151199 Computer, Math
## 29829 15-1132 151132 Computer, Math
## 29830 15-1132 151132 Computer, Math
## 29831 13-2011 132011 Business, Finance
## 29832 15-1132 151132 Computer, Math
## 29833 15-1121 151121 Computer, Math
## 29834 17-2112 172112 Architecture, Engineer
## 29835 15-1199 151199 Computer, Math
## 29836 15-1133 151133 Computer, Math
## 29837 15-2031 152031 Computer, Math
## 29838 23-1012 231012 Legal
## 29839 15-1132 151132 Computer, Math
## 29840 15-1199 151199 Computer, Math
## 29841 25-1071 251071 Education, Training
## 29842 15-1141 151141 Computer, Math
## 29843 17-2071 172071 Architecture, Engineer
## 29844 15-1199 151199 Computer, Math
## 29845 15-1133 151133 Computer, Math
## 29846 15-1134 151134 Computer, Math
## 29847 15-1199 151199 Computer, Math
## 29848 13-1051 131051 Business, Finance
## 29849 15-1199 151199 Computer, Math
## 29850 13-2099 132099 Business, Finance
## 29851 15-1199 151199 Computer, Math
## 29852 15-1131 151131 Computer, Math
## 29853 15-1133 151133 Computer, Math
## 29854 15-1199 151199 Computer, Math
## 29855 15-1142 151142 Computer, Math
## 29856 15-1132 151132 Computer, Math
## 29857 15-1142 151142 Computer, Math
## 29858 15-1133 151133 Computer, Math
## 29859 15-1132 151132 Computer, Math
## 29860 15-1132 151132 Computer, Math
## 29861 15-1132 151132 Computer, Math
## 29862 13-2051 132051 Business, Finance
## 29863 17-2071 172071 Architecture, Engineer
## 29864 19-1042 191042 Life, Physcial, Social Science
## 29865 15-1134 151134 Computer, Math
## 29866 19-1042 191042 Life, Physcial, Social Science
## 29867 29-1122 291122 Healthcare Practitioner
## 29868 15-1132 151132 Computer, Math
## 29869 13-2099 132099 Business, Finance
## 29870 15-1121 151121 Computer, Math
## 29871 13-2011 132011 Business, Finance
## 29872 15-1132 151132 Computer, Math
## 29873 15-1199 151199 Computer, Math
## 29874 15-1132 151132 Computer, Math
## 29875 15-1132 151132 Computer, Math
## 29876 15-1199 151199 Computer, Math
## 29877 29-1123 291123 Healthcare Practitioner
## 29878 15-1132 151132 Computer, Math
## 29879 19-1029 191029 Life, Physcial, Social Science
## 29880 15-1132 151132 Computer, Math
## 29881 15-1132 151132 Computer, Math
## 29882 15-1132 151132 Computer, Math
## 29883 15-1132 151132 Computer, Math
## 29884 15-1132 151132 Computer, Math
## 29885 15-1121 151121 Computer, Math
## 29886 19-1023 191023 Life, Physcial, Social Science
## 29887 15-1132 151132 Computer, Math
## 29888 15-1132 151132 Computer, Math
## 29889 15-1121 151121 Computer, Math
## 29890 15-1121 151121 Computer, Math
## 29891 15-1131 151131 Computer, Math
## 29892 15-1199 151199 Computer, Math
## 29893 15-1132 151132 Computer, Math
## 29894 15-1132 151132 Computer, Math
## 29895 27-1014 271014 Media, Design
## 29896 19-2031 192031 Life, Physcial, Social Science
## 29897 15-1132 151132 Computer, Math
## 29898 19-2032 192032 Life, Physcial, Social Science
## 29899 13-1111 131111 Business, Finance
## 29900 13-2011 132011 Business, Finance
## 29901 19-1042 191042 Life, Physcial, Social Science
## 29902 15-1132 151132 Computer, Math
## 29903 15-1142 151142 Computer, Math
## 29904 15-1132 151132 Computer, Math
## 29905 13-2051 132051 Business, Finance
## 29906 15-2031 152031 Computer, Math
## 29907 15-1132 151132 Computer, Math
## 29908 15-1121 151121 Computer, Math
## 29909 11-9021 119021 Management
## 29910 15-1121 151121 Computer, Math
## 29911 17-2051 172051 Architecture, Engineer
## 29912 19-1042 191042 Life, Physcial, Social Science
## 29913 15-2031 152031 Computer, Math
## 29914 25-1052 251052 Education, Training
## 29915 15-2031 152031 Computer, Math
## 29916 15-1199 151199 Computer, Math
## 29917 15-1133 151133 Computer, Math
## 29918 11-3071 113071 Management
## 29919 15-1133 151133 Computer, Math
## 29920 15-1132 151132 Computer, Math
## 29921 15-1132 151132 Computer, Math
## 29922 25-1122 251122 Education, Training
## 29923 15-1199 151199 Computer, Math
## 29924 15-1131 151131 Computer, Math
## 29925 13-2051 132051 Business, Finance
## 29926 13-2051 132051 Business, Finance
## 29927 15-1132 151132 Computer, Math
## 29928 15-1121 151121 Computer, Math
## 29929 15-1141 151141 Computer, Math
## 29930 15-1132 151132 Computer, Math
## 29931 15-1132 151132 Computer, Math
## 29932 17-2141 172141 Architecture, Engineer
## 29933 15-1199 151199 Computer, Math
## 29934 15-1199 151199 Computer, Math
## 29935 17-2072 172072 Architecture, Engineer
## 29936 15-1121 151121 Computer, Math
## 29937 15-1121 151121 Computer, Math
## 29938 15-1134 151134 Computer, Math
## 29939 15-1133 151133 Computer, Math
## 29940 15-1134 151134 Computer, Math
## 29941 15-1132 151132 Computer, Math
## 29942 15-1121 151121 Computer, Math
## 29943 15-1132 151132 Computer, Math
## 29944 15-1132 151132 Computer, Math
## 29945 29-1062 291062 Healthcare Practitioner
## 29946 15-1132 151132 Computer, Math
## 29947 15-1121 151121 Computer, Math
## 29948 15-1121 151121 Computer, Math
## 29949 15-1132 151132 Computer, Math
## 29950 15-1121 151121 Computer, Math
## 29951 15-1132 151132 Computer, Math
## 29952 15-2031 152031 Computer, Math
## 29953 11-3121 113121 Management
## 29954 15-2041 152041 Computer, Math
## 29955 25-2021 252021 Education, Training
## 29956 15-1199 151199 Computer, Math
## 29957 15-1121 151121 Computer, Math
## 29958 15-1132 151132 Computer, Math
## 29959 15-2011 152011 Computer, Math
## 29960 15-1132 151132 Computer, Math
## 29961 15-1199 151199 Computer, Math
## 29962 15-1132 151132 Computer, Math
## 29963 15-1132 151132 Computer, Math
## 29964 15-1132 151132 Computer, Math
## 29965 39-9032 399032 Others
## 29966 15-1199 151199 Computer, Math
## 29967 13-1111 131111 Business, Finance
## 29968 15-1132 151132 Computer, Math
## 29969 15-1121 151121 Computer, Math
## 29970 15-1121 151121 Computer, Math
## 29971 13-1161 131161 Business, Finance
## 29972 15-1142 151142 Computer, Math
## 29973 15-2031 152031 Computer, Math
## 29974 19-1029 191029 Life, Physcial, Social Science
## 29975 15-1121 151121 Computer, Math
## 29976 15-2041 152041 Computer, Math
## 29977 19-1042 191042 Life, Physcial, Social Science
## 29978 13-2051 132051 Business, Finance
## 29979 17-2131 172131 Architecture, Engineer
## 29980 15-2041 152041 Computer, Math
## 29981 15-1199 151199 Computer, Math
## 29982 15-1132 151132 Computer, Math
## 29983 13-2011 132011 Business, Finance
## 29984 15-1111 151111 Computer, Math
## 29985 15-1121 151121 Computer, Math
## 29986 15-1121 151121 Computer, Math
## 29987 17-1011 171011 Architecture, Engineer
## 29988 15-1121 151121 Computer, Math
## 29989 15-1132 151132 Computer, Math
## 29990 15-1132 151132 Computer, Math
## 29991 15-1199 151199 Computer, Math
## 29992 15-1132 151132 Computer, Math
## 29993 15-1142 151142 Computer, Math
## 29994 15-1199 151199 Computer, Math
## 29995 15-1132 151132 Computer, Math
## 29996 15-1121 151121 Computer, Math
## 29997 15-1133 151133 Computer, Math
## 29998 15-1131 151131 Computer, Math
## 29999 15-1132 151132 Computer, Math
## 30000 17-2199 172199 Architecture, Engineer
## 30001 15-2031 152031 Computer, Math
## 30002 17-2072 172072 Architecture, Engineer
## 30003 15-1121 151121 Computer, Math
## 30004 15-1132 151132 Computer, Math
## 30005 13-1041 131041 Business, Finance
## 30006 15-1122 151122 Computer, Math
## 30007 25-3099 253099 Education, Training
## 30008 19-1021 191021 Life, Physcial, Social Science
## 30009 15-1132 151132 Computer, Math
## 30010 15-1142 151142 Computer, Math
## 30011 15-1199 151199 Computer, Math
## 30012 15-1199 151199 Computer, Math
## 30013 15-1132 151132 Computer, Math
## 30014 15-1132 151132 Computer, Math
## 30015 15-1121 151121 Computer, Math
## 30016 15-1132 151132 Computer, Math
## 30017 19-1042 191042 Life, Physcial, Social Science
## 30018 15-1199 151199 Computer, Math
## 30019 15-1199 151199 Computer, Math
## 30020 15-1199 151199 Computer, Math
## 30021 15-1132 151132 Computer, Math
## 30022 15-1199 151199 Computer, Math
## 30023 15-1131 151131 Computer, Math
## 30024 15-1132 151132 Computer, Math
## 30025 15-1132 151132 Computer, Math
## 30026 19-2012 192012 Life, Physcial, Social Science
## 30027 15-1121 151121 Computer, Math
## 30028 15-1132 151132 Computer, Math
## 30029 15-1121 151121 Computer, Math
## 30030 25-1066 251066 Education, Training
## 30031 41-9031 419031 Sales
## 30032 15-1199 151199 Computer, Math
## 30033 15-1132 151132 Computer, Math
## 30034 15-2031 152031 Computer, Math
## 30035 15-1132 151132 Computer, Math
## 30036 15-1121 151121 Computer, Math
## 30037 15-2031 152031 Computer, Math
## 30038 17-2112 172112 Architecture, Engineer
## 30039 15-1121 151121 Computer, Math
## 30040 15-1121 151121 Computer, Math
## 30041 15-1133 151133 Computer, Math
## 30042 15-1121 151121 Computer, Math
## 30043 17-2072 172072 Architecture, Engineer
## 30044 15-1132 151132 Computer, Math
## 30045 27-2022 272022 Media, Design
## 30046 15-1132 151132 Computer, Math
## 30047 15-1132 151132 Computer, Math
## 30048 15-1132 151132 Computer, Math
## 30049 15-1132 151132 Computer, Math
## 30050 15-2041 152041 Computer, Math
## 30051 15-1132 151132 Computer, Math
## 30052 15-1141 151141 Computer, Math
## 30053 15-1121 151121 Computer, Math
## 30054 15-1132 151132 Computer, Math
## 30055 15-2041 152041 Computer, Math
## 30056 19-2041 192041 Life, Physcial, Social Science
## 30057 15-1133 151133 Computer, Math
## 30058 15-1122 151122 Computer, Math
## 30059 15-1121 151121 Computer, Math
## 30060 15-1141 151141 Computer, Math
## 30061 15-1121 151121 Computer, Math
## 30062 13-1161 131161 Business, Finance
## 30063 15-1121 151121 Computer, Math
## 30064 19-1042 191042 Life, Physcial, Social Science
## 30065 15-2031 152031 Computer, Math
## 30066 13-1161 131161 Business, Finance
## 30067 15-1199 151199 Computer, Math
## 30068 15-1133 151133 Computer, Math
## 30069 15-2031 152031 Computer, Math
## 30070 15-1141 151141 Computer, Math
## 30071 15-2031 152031 Computer, Math
## 30072 15-1132 151132 Computer, Math
## 30073 15-1132 151132 Computer, Math
## 30074 15-1131 151131 Computer, Math
## 30075 29-1123 291123 Healthcare Practitioner
## 30076 15-1132 151132 Computer, Math
## 30077 13-1111 131111 Business, Finance
## 30078 15-1132 151132 Computer, Math
## 30079 25-1071 251071 Education, Training
## 30080 15-1132 151132 Computer, Math
## 30081 15-1132 151132 Computer, Math
## 30082 15-1199 151199 Computer, Math
## 30083 13-1161 131161 Business, Finance
## 30084 11-3031 113031 Management
## 30085 15-1199 151199 Computer, Math
## 30086 15-1199 151199 Computer, Math
## 30087 17-2141 172141 Architecture, Engineer
## 30088 15-1131 151131 Computer, Math
## 30089 27-1024 271024 Media, Design
## 30090 15-1132 151132 Computer, Math
## 30091 29-9099 299099 Healthcare Practitioner
## 30092 15-1121 151121 Computer, Math
## 30093 17-2144 172144 Architecture, Engineer
## 30094 15-1121 151121 Computer, Math
## 30095 15-1121 151121 Computer, Math
## 30096 15-1199 151199 Computer, Math
## 30097 15-1133 151133 Computer, Math
## 30098 15-1199 151199 Computer, Math
## 30099 25-2021 252021 Education, Training
## 30100 15-1133 151133 Computer, Math
## 30101 15-1142 151142 Computer, Math
## 30102 15-1133 151133 Computer, Math
## 30103 15-1132 151132 Computer, Math
## 30104 17-2071 172071 Architecture, Engineer
## 30105 15-1199 151199 Computer, Math
## 30106 15-1132 151132 Computer, Math
## 30107 11-3021 113021 Management
## 30108 15-1199 151199 Computer, Math
## 30109 21-1014 211014 Social Service
## 30110 15-1132 151132 Computer, Math
## 30111 15-1132 151132 Computer, Math
## 30112 13-2011 132011 Business, Finance
## 30113 15-1121 151121 Computer, Math
## 30114 15-1133 151133 Computer, Math
## 30115 17-2141 172141 Architecture, Engineer
## 30116 13-2011 132011 Business, Finance
## 30117 15-1121 151121 Computer, Math
## 30118 15-1132 151132 Computer, Math
## 30119 15-1132 151132 Computer, Math
## 30120 15-1121 151121 Computer, Math
## 30121 13-1121 131121 Business, Finance
## 30122 15-1111 151111 Computer, Math
## 30123 15-1121 151121 Computer, Math
## 30124 15-1121 151121 Computer, Math
## 30125 15-1121 151121 Computer, Math
## 30126 15-1199 151199 Computer, Math
## 30127 15-1199 151199 Computer, Math
## 30128 15-1132 151132 Computer, Math
## 30129 15-1199 151199 Computer, Math
## 30130 19-3011 193011 Life, Physcial, Social Science
## 30131 27-1025 271025 Media, Design
## 30132 15-1199 151199 Computer, Math
## 30133 15-1132 151132 Computer, Math
## 30134 25-9031 259031 Education, Training
## 30135 15-1132 151132 Computer, Math
## 30136 15-1132 151132 Computer, Math
## 30137 29-9099 299099 Healthcare Practitioner
## 30138 13-2011 132011 Business, Finance
## 30139 17-2072 172072 Architecture, Engineer
## 30140 15-1121 151121 Computer, Math
## 30141 13-2099 132099 Business, Finance
## 30142 15-1199 151199 Computer, Math
## 30143 15-1199 151199 Computer, Math
## 30144 15-1121 151121 Computer, Math
## 30145 15-1132 151132 Computer, Math
## 30146 15-1132 151132 Computer, Math
## 30147 15-1132 151132 Computer, Math
## 30148 13-2011 132011 Business, Finance
## 30149 15-2041 152041 Computer, Math
## 30150 15-1132 151132 Computer, Math
## 30151 15-1132 151132 Computer, Math
## 30152 15-1132 151132 Computer, Math
## 30153 13-2099 132099 Business, Finance
## 30154 15-1199 151199 Computer, Math
## 30155 15-1132 151132 Computer, Math
## 30156 17-2112 172112 Architecture, Engineer
## 30157 19-1022 191022 Life, Physcial, Social Science
## 30158 15-1199 151199 Computer, Math
## 30159 15-1121 151121 Computer, Math
## 30160 15-1121 151121 Computer, Math
## 30161 15-1199 151199 Computer, Math
## 30162 15-1132 151132 Computer, Math
## 30163 17-2141 172141 Architecture, Engineer
## 30164 15-1134 151134 Computer, Math
## 30165 15-1199 151199 Computer, Math
## 30166 15-1054 151054 Computer, Math
## 30167 15-1142 151142 Computer, Math
## 30168 29-2011 292011 Healthcare Practitioner
## 30169 19-3011 193011 Life, Physcial, Social Science
## 30170 15-1132 151132 Computer, Math
## 30171 25-1054 251054 Education, Training
## 30172 15-1132 151132 Computer, Math
## 30173 25-1066 251066 Education, Training
## 30174 17-2112 172112 Architecture, Engineer
## 30175 17-2051 172051 Architecture, Engineer
## 30176 15-1132 151132 Computer, Math
## 30177 15-1121 151121 Computer, Math
## 30178 17-2071 172071 Architecture, Engineer
## 30179 15-1133 151133 Computer, Math
## 30180 15-1131 151131 Computer, Math
## 30181 15-1121 151121 Computer, Math
## 30182 15-1141 151141 Computer, Math
## 30183 15-1121 151121 Computer, Math
## 30184 15-1121 151121 Computer, Math
## 30185 15-1199 151199 Computer, Math
## 30186 27-1024 271024 Media, Design
## 30187 19-3011 193011 Life, Physcial, Social Science
## 30188 15-1121 151121 Computer, Math
## 30189 15-1132 151132 Computer, Math
## 30190 15-1199 151199 Computer, Math
## 30191 15-1132 151132 Computer, Math
## 30192 15-1142 151142 Computer, Math
## 30193 13-2011 132011 Business, Finance
## 30194 15-1132 151132 Computer, Math
## 30195 15-1111 151111 Computer, Math
## 30196 13-2051 132051 Business, Finance
## 30197 15-1131 151131 Computer, Math
## 30198 15-1131 151131 Computer, Math
## 30199 15-1132 151132 Computer, Math
## 30200 11-9111 119111 Management
## 30201 15-1131 151131 Computer, Math
## 30202 15-1132 151132 Computer, Math
## 30203 15-1132 151132 Computer, Math
## 30204 15-1132 151132 Computer, Math
## 30205 15-1132 151132 Computer, Math
## 30206 15-1131 151131 Computer, Math
## 30207 15-1132 151132 Computer, Math
## 30208 15-1132 151132 Computer, Math
## 30209 15-1121 151121 Computer, Math
## 30210 15-1132 151132 Computer, Math
## 30211 15-1141 151141 Computer, Math
## 30212 17-2141 172141 Architecture, Engineer
## 30213 15-1133 151133 Computer, Math
## 30214 15-1134 151134 Computer, Math
## 30215 15-1132 151132 Computer, Math
## 30216 15-1132 151132 Computer, Math
## 30217 13-2051 132051 Business, Finance
## 30218 15-2041 152041 Computer, Math
## 30219 13-1161 131161 Business, Finance
## 30220 15-1199 151199 Computer, Math
## 30221 17-2071 172071 Architecture, Engineer
## 30222 15-1121 151121 Computer, Math
## 30223 29-1069 291069 Healthcare Practitioner
## 30224 15-1132 151132 Computer, Math
## 30225 19-1021 191021 Life, Physcial, Social Science
## 30226 15-2031 152031 Computer, Math
## 30227 15-1122 151122 Computer, Math
## 30228 15-1142 151142 Computer, Math
## 30229 15-1132 151132 Computer, Math
## 30230 15-1132 151132 Computer, Math
## 30231 15-1199 151199 Computer, Math
## 30232 15-1132 151132 Computer, Math
## 30233 15-1121 151121 Computer, Math
## 30234 11-3021 113021 Management
## 30235 15-1132 151132 Computer, Math
## 30236 15-1132 151132 Computer, Math
## 30237 15-1132 151132 Computer, Math
## 30238 15-1132 151132 Computer, Math
## 30239 11-3021 113021 Management
## 30240 17-2081 172081 Architecture, Engineer
## 30241 15-1132 151132 Computer, Math
## 30242 11-9199 119199 Management
## 30243 15-1132 151132 Computer, Math
## 30244 15-1132 151132 Computer, Math
## 30245 15-1132 151132 Computer, Math
## 30246 19-2032 192032 Life, Physcial, Social Science
## 30247 15-1132 151132 Computer, Math
## 30248 15-1132 151132 Computer, Math
## 30249 29-1063 291063 Healthcare Practitioner
## 30250 13-2099 132099 Business, Finance
## 30251 15-1132 151132 Computer, Math
## 30252 15-1121 151121 Computer, Math
## 30253 19-1042 191042 Life, Physcial, Social Science
## 30254 15-1199 151199 Computer, Math
## 30255 15-1132 151132 Computer, Math
## 30256 27-1021 271021 Media, Design
## 30257 15-1132 151132 Computer, Math
## 30258 19-2032 192032 Life, Physcial, Social Science
## 30259 15-1121 151121 Computer, Math
## 30260 15-1132 151132 Computer, Math
## 30261 15-1121 151121 Computer, Math
## 30262 15-2041 152041 Computer, Math
## 30263 15-1132 151132 Computer, Math
## 30264 11-9199 119199 Management
## 30265 11-3071 113071 Management
## 30266 15-2031 152031 Computer, Math
## 30267 15-1132 151132 Computer, Math
## 30268 15-1132 151132 Computer, Math
## 30269 15-1121 151121 Computer, Math
## 30270 15-1132 151132 Computer, Math
## 30271 13-2051 132051 Business, Finance
## 30272 15-1132 151132 Computer, Math
## 30273 15-2031 152031 Computer, Math
## 30274 15-1132 151132 Computer, Math
## 30275 17-2199 172199 Architecture, Engineer
## 30276 13-1161 131161 Business, Finance
## 30277 15-1121 151121 Computer, Math
## 30278 15-1141 151141 Computer, Math
## 30279 15-1132 151132 Computer, Math
## 30280 15-1199 151199 Computer, Math
## 30281 15-1199 151199 Computer, Math
## 30282 15-1131 151131 Computer, Math
## 30283 13-1111 131111 Business, Finance
## 30284 15-1121 151121 Computer, Math
## 30285 15-1111 151111 Computer, Math
## 30286 13-2011 132011 Business, Finance
## 30287 15-1133 151133 Computer, Math
## 30288 17-2072 172072 Architecture, Engineer
## 30289 15-1132 151132 Computer, Math
## 30290 15-1131 151131 Computer, Math
## 30291 15-1131 151131 Computer, Math
## 30292 13-2099 132099 Business, Finance
## 30293 15-1142 151142 Computer, Math
## 30294 15-1121 151121 Computer, Math
## 30295 25-1042 251042 Education, Training
## 30296 15-1132 151132 Computer, Math
## 30297 15-1132 151132 Computer, Math
## 30298 15-1199 151199 Computer, Math
## 30299 15-1132 151132 Computer, Math
## 30300 15-1132 151132 Computer, Math
## 30301 15-1132 151132 Computer, Math
## 30302 15-1199 151199 Computer, Math
## 30303 15-1133 151133 Computer, Math
## 30304 17-2071 172071 Architecture, Engineer
## 30305 15-1132 151132 Computer, Math
## 30306 15-1132 151132 Computer, Math
## 30307 15-1121 151121 Computer, Math
## 30308 13-1161 131161 Business, Finance
## 30309 19-1042 191042 Life, Physcial, Social Science
## 30310 15-1132 151132 Computer, Math
## 30311 15-1132 151132 Computer, Math
## 30312 15-1132 151132 Computer, Math
## 30313 15-1132 151132 Computer, Math
## 30314 15-1132 151132 Computer, Math
## 30315 15-1134 151134 Computer, Math
## 30316 15-1132 151132 Computer, Math
## 30317 15-1133 151133 Computer, Math
## 30318 15-1132 151132 Computer, Math
## 30319 15-1121 151121 Computer, Math
## 30320 13-1111 131111 Business, Finance
## 30321 15-1132 151132 Computer, Math
## 30322 15-1121 151121 Computer, Math
## 30323 15-1121 151121 Computer, Math
## 30324 17-2171 172171 Architecture, Engineer
## 30325 15-1132 151132 Computer, Math
## 30326 15-1143 151143 Computer, Math
## 30327 15-1133 151133 Computer, Math
## 30328 15-1121 151121 Computer, Math
## 30329 25-9031 259031 Education, Training
## 30330 15-1132 151132 Computer, Math
## 30331 15-1132 151132 Computer, Math
## 30332 29-1123 291123 Healthcare Practitioner
## 30333 15-1199 151199 Computer, Math
## 30334 13-2011 132011 Business, Finance
## 30335 15-1199 151199 Computer, Math
## 30336 15-1121 151121 Computer, Math
## 30337 15-1132 151132 Computer, Math
## 30338 13-2099 132099 Business, Finance
## 30339 19-1021 191021 Life, Physcial, Social Science
## 30340 15-1132 151132 Computer, Math
## 30341 15-1132 151132 Computer, Math
## 30342 15-1133 151133 Computer, Math
## 30343 11-3021 113021 Management
## 30344 15-1131 151131 Computer, Math
## 30345 15-1131 151131 Computer, Math
## 30346 15-1132 151132 Computer, Math
## 30347 15-1132 151132 Computer, Math
## 30348 17-3011 173011 Architecture, Engineer
## 30349 15-1131 151131 Computer, Math
## 30350 15-1199 151199 Computer, Math
## 30351 13-2041 132041 Business, Finance
## 30352 15-1199 151199 Computer, Math
## 30353 15-1131 151131 Computer, Math
## 30354 15-1131 151131 Computer, Math
## 30355 15-1132 151132 Computer, Math
## 30356 15-1132 151132 Computer, Math
## 30357 15-1199 151199 Computer, Math
## 30358 15-1132 151132 Computer, Math
## 30359 15-1121 151121 Computer, Math
## 30360 15-1131 151131 Computer, Math
## 30361 15-1132 151132 Computer, Math
## 30362 29-1065 291065 Healthcare Practitioner
## 30363 29-1029 291029 Healthcare Practitioner
## 30364 25-1071 251071 Education, Training
## 30365 15-1121 151121 Computer, Math
## 30366 15-1132 151132 Computer, Math
## 30367 15-1199 151199 Computer, Math
## 30368 15-1131 151131 Computer, Math
## 30369 15-1133 151133 Computer, Math
## 30370 15-1131 151131 Computer, Math
## 30371 15-1132 151132 Computer, Math
## 30372 15-1199 151199 Computer, Math
## 30373 19-1042 191042 Life, Physcial, Social Science
## 30374 15-1121 151121 Computer, Math
## 30375 15-1132 151132 Computer, Math
## 30376 15-1133 151133 Computer, Math
## 30377 15-1199 151199 Computer, Math
## 30378 15-1121 151121 Computer, Math
## 30379 15-1132 151132 Computer, Math
## 30380 15-1199 151199 Computer, Math
## 30381 15-2091 152091 Computer, Math
## 30382 15-1132 151132 Computer, Math
## 30383 15-1121 151121 Computer, Math
## 30384 13-2041 132041 Business, Finance
## 30385 15-1131 151131 Computer, Math
## 30386 15-1132 151132 Computer, Math
## 30387 15-1121 151121 Computer, Math
## 30388 17-2071 172071 Architecture, Engineer
## 30389 25-2021 252021 Education, Training
## 30390 15-1132 151132 Computer, Math
## 30391 25-1011 251011 Education, Training
## 30392 15-1132 151132 Computer, Math
## 30393 15-1121 151121 Computer, Math
## 30394 15-1121 151121 Computer, Math
## 30395 15-1122 151122 Computer, Math
## 30396 15-1141 151141 Computer, Math
## 30397 15-1132 151132 Computer, Math
## 30398 15-1132 151132 Computer, Math
## 30399 27-3031 273031 Media, Design
## 30400 15-1133 151133 Computer, Math
## 30401 15-1132 151132 Computer, Math
## 30402 15-1199 151199 Computer, Math
## 30403 15-1131 151131 Computer, Math
## 30404 15-1132 151132 Computer, Math
## 30405 15-1132 151132 Computer, Math
## 30406 29-2011 292011 Healthcare Practitioner
## 30407 13-1161 131161 Business, Finance
## 30408 15-1132 151132 Computer, Math
## 30409 13-1161 131161 Business, Finance
## 30410 17-2112 172112 Architecture, Engineer
## 30411 15-1132 151132 Computer, Math
## 30412 15-1131 151131 Computer, Math
## 30413 15-1132 151132 Computer, Math
## 30414 15-1121 151121 Computer, Math
## 30415 15-1132 151132 Computer, Math
## 30416 15-1121 151121 Computer, Math
## 30417 13-1111 131111 Business, Finance
## 30418 15-1142 151142 Computer, Math
## 30419 15-1132 151132 Computer, Math
## 30420 15-1132 151132 Computer, Math
## 30421 15-1121 151121 Computer, Math
## 30422 15-1132 151132 Computer, Math
## 30423 17-2141 172141 Architecture, Engineer
## 30424 15-1132 151132 Computer, Math
## 30425 41-9031 419031 Sales
## 30426 15-1199 151199 Computer, Math
## 30427 15-1121 151121 Computer, Math
## 30428 15-1199 151199 Computer, Math
## 30429 15-1121 151121 Computer, Math
## 30430 15-1121 151121 Computer, Math
## 30431 15-1199 151199 Computer, Math
## 30432 15-1121 151121 Computer, Math
## 30433 15-1121 151121 Computer, Math
## 30434 15-1132 151132 Computer, Math
## 30435 15-1132 151132 Computer, Math
## 30436 15-1132 151132 Computer, Math
## 30437 15-1199 151199 Computer, Math
## 30438 15-1132 151132 Computer, Math
## 30439 15-1121 151121 Computer, Math
## 30440 15-1199 151199 Computer, Math
## 30441 15-2041 152041 Computer, Math
## 30442 25-1032 251032 Education, Training
## 30443 15-1143 151143 Computer, Math
## 30444 15-1132 151132 Computer, Math
## 30445 15-1142 151142 Computer, Math
## 30446 15-1199 151199 Computer, Math
## 30447 15-1132 151132 Computer, Math
## 30448 15-1132 151132 Computer, Math
## 30449 15-1199 151199 Computer, Math
## 30450 17-2071 172071 Architecture, Engineer
## 30451 15-1132 151132 Computer, Math
## 30452 15-1132 151132 Computer, Math
## 30453 15-1132 151132 Computer, Math
## 30454 15-1132 151132 Computer, Math
## 30455 15-1132 151132 Computer, Math
## 30456 17-2072 172072 Architecture, Engineer
## 30457 15-1132 151132 Computer, Math
## 30458 15-1199 151199 Computer, Math
## 30459 15-1133 151133 Computer, Math
## 30460 15-1132 151132 Computer, Math
## 30461 15-1121 151121 Computer, Math
## 30462 17-2031 172031 Architecture, Engineer
## 30463 15-1132 151132 Computer, Math
## 30464 15-1142 151142 Computer, Math
## 30465 15-1132 151132 Computer, Math
## 30466 11-3021 113021 Management
## 30467 13-2011 132011 Business, Finance
## 30468 15-1121 151121 Computer, Math
## 30469 15-1132 151132 Computer, Math
## 30470 25-1032 251032 Education, Training
## 30471 15-1132 151132 Computer, Math
## 30472 19-4061 194061 Life, Physcial, Social Science
## 30473 15-2031 152031 Computer, Math
## 30474 13-2051 132051 Business, Finance
## 30475 15-1121 151121 Computer, Math
## 30476 15-1132 151132 Computer, Math
## 30477 15-1132 151132 Computer, Math
## 30478 15-1131 151131 Computer, Math
## 30479 15-1199 151199 Computer, Math
## 30480 15-1199 151199 Computer, Math
## 30481 17-2071 172071 Architecture, Engineer
## 30482 15-1132 151132 Computer, Math
## 30483 15-1132 151132 Computer, Math
## 30484 15-1132 151132 Computer, Math
## 30485 17-2141 172141 Architecture, Engineer
## 30486 21-1091 211091 Social Service
## 30487 15-1133 151133 Computer, Math
## 30488 15-1121 151121 Computer, Math
## 30489 13-1111 131111 Business, Finance
## 30490 11-9021 119021 Management
## 30491 15-1199 151199 Computer, Math
## 30492 15-1121 151121 Computer, Math
## 30493 19-1021 191021 Life, Physcial, Social Science
## 30494 15-1199 151199 Computer, Math
## 30495 15-1131 151131 Computer, Math
## 30496 15-1199 151199 Computer, Math
## 30497 19-1042 191042 Life, Physcial, Social Science
## 30498 15-1132 151132 Computer, Math
## 30499 15-1141 151141 Computer, Math
## 30500 15-1199 151199 Computer, Math
## 30501 27-3031 273031 Media, Design
## 30502 15-1199 151199 Computer, Math
## 30503 17-2112 172112 Architecture, Engineer
## 30504 15-1132 151132 Computer, Math
## 30505 15-1132 151132 Computer, Math
## 30506 15-1132 151132 Computer, Math
## 30507 15-1199 151199 Computer, Math
## 30508 19-1029 191029 Life, Physcial, Social Science
## 30509 17-2141 172141 Architecture, Engineer
## 30510 13-2011 132011 Business, Finance
## 30511 15-1132 151132 Computer, Math
## 30512 17-2081 172081 Architecture, Engineer
## 30513 17-2141 172141 Architecture, Engineer
## 30514 15-1131 151131 Computer, Math
## 30515 15-1141 151141 Computer, Math
## 30516 15-1121 151121 Computer, Math
## 30517 15-1132 151132 Computer, Math
## 30518 15-2031 152031 Computer, Math
## 30519 15-1133 151133 Computer, Math
## 30520 15-1141 151141 Computer, Math
## 30521 15-1132 151132 Computer, Math
## 30522 19-1042 191042 Life, Physcial, Social Science
## 30523 15-1199 151199 Computer, Math
## 30524 29-1069 291069 Healthcare Practitioner
## 30525 15-1121 151121 Computer, Math
## 30526 15-1131 151131 Computer, Math
## 30527 13-1161 131161 Business, Finance
## 30528 15-1199 151199 Computer, Math
## 30529 15-2021 152021 Computer, Math
## 30530 15-1132 151132 Computer, Math
## 30531 15-1132 151132 Computer, Math
## 30532 17-2071 172071 Architecture, Engineer
## 30533 15-2031 152031 Computer, Math
## 30534 13-1161 131161 Business, Finance
## 30535 13-2099 132099 Business, Finance
## 30536 15-2031 152031 Computer, Math
## 30537 15-1121 151121 Computer, Math
## 30538 13-1161 131161 Business, Finance
## 30539 15-1132 151132 Computer, Math
## 30540 15-1121 151121 Computer, Math
## 30541 15-1132 151132 Computer, Math
## 30542 15-1132 151132 Computer, Math
## 30543 15-1121 151121 Computer, Math
## 30544 25-1069 251069 Education, Training
## 30545 15-1199 151199 Computer, Math
## 30546 15-1132 151132 Computer, Math
## 30547 29-9099 299099 Healthcare Practitioner
## 30548 27-1021 271021 Media, Design
## 30549 17-2041 172041 Architecture, Engineer
## 30550 15-1132 151132 Computer, Math
## 30551 15-1132 151132 Computer, Math
## 30552 13-1041 131041 Business, Finance
## 30553 15-1121 151121 Computer, Math
## 30554 15-1132 151132 Computer, Math
## 30555 15-1131 151131 Computer, Math
## 30556 29-1021 291021 Healthcare Practitioner
## 30557 15-1131 151131 Computer, Math
## 30558 15-1132 151132 Computer, Math
## 30559 15-1121 151121 Computer, Math
## 30560 15-1132 151132 Computer, Math
## 30561 25-1022 251022 Education, Training
## 30562 15-1142 151142 Computer, Math
## 30563 29-2011 292011 Healthcare Practitioner
## 30564 15-1132 151132 Computer, Math
## 30565 13-1081 131081 Business, Finance
## 30566 19-1042 191042 Life, Physcial, Social Science
## 30567 11-3051 113051 Management
## 30568 15-1132 151132 Computer, Math
## 30569 17-2141 172141 Architecture, Engineer
## 30570 15-1132 151132 Computer, Math
## 30571 15-1133 151133 Computer, Math
## 30572 15-1121 151121 Computer, Math
## 30573 15-1199 151199 Computer, Math
## 30574 15-1132 151132 Computer, Math
## 30575 15-1132 151132 Computer, Math
## 30576 15-1199 151199 Computer, Math
## 30577 15-1131 151131 Computer, Math
## 30578 15-1132 151132 Computer, Math
## 30579 15-1132 151132 Computer, Math
## 30580 15-1199 151199 Computer, Math
## 30581 15-1132 151132 Computer, Math
## 30582 15-1134 151134 Computer, Math
## 30583 15-1199 151199 Computer, Math
## 30584 19-1021 191021 Life, Physcial, Social Science
## 30585 13-2011 132011 Business, Finance
## 30586 15-1121 151121 Computer, Math
## 30587 13-2011 132011 Business, Finance
## 30588 15-1141 151141 Computer, Math
## 30589 15-1121 151121 Computer, Math
## 30590 15-1132 151132 Computer, Math
## 30591 15-1141 151141 Computer, Math
## 30592 15-1199 151199 Computer, Math
## 30593 15-2031 152031 Computer, Math
## 30594 15-1121 151121 Computer, Math
## 30595 15-1141 151141 Computer, Math
## 30596 15-2031 152031 Computer, Math
## 30597 27-3042 273042 Media, Design
## 30598 19-1042 191042 Life, Physcial, Social Science
## 30599 15-1132 151132 Computer, Math
## 30600 13-2099 132099 Business, Finance
## 30601 13-2011 132011 Business, Finance
## 30602 15-1142 151142 Computer, Math
## 30603 15-1132 151132 Computer, Math
## 30604 15-1132 151132 Computer, Math
## 30605 15-1143 151143 Computer, Math
## 30606 19-1042 191042 Life, Physcial, Social Science
## 30607 13-2031 132031 Business, Finance
## 30608 11-1011 111011 Management
## 30609 15-1132 151132 Computer, Math
## 30610 13-2011 132011 Business, Finance
## 30611 17-2141 172141 Architecture, Engineer
## 30612 29-1063 291063 Healthcare Practitioner
## 30613 15-1134 151134 Computer, Math
## 30614 15-1132 151132 Computer, Math
## 30615 15-1132 151132 Computer, Math
## 30616 15-1132 151132 Computer, Math
## 30617 15-1133 151133 Computer, Math
## 30618 11-3021 113021 Management
## 30619 15-1132 151132 Computer, Math
## 30620 15-1132 151132 Computer, Math
## 30621 15-1133 151133 Computer, Math
## 30622 15-1121 151121 Computer, Math
## 30623 15-1132 151132 Computer, Math
## 30624 17-2072 172072 Architecture, Engineer
## 30625 15-1132 151132 Computer, Math
## 30626 17-2141 172141 Architecture, Engineer
## 30627 15-1132 151132 Computer, Math
## 30628 15-1133 151133 Computer, Math
## 30629 15-1121 151121 Computer, Math
## 30630 15-1199 151199 Computer, Math
## 30631 13-2011 132011 Business, Finance
## 30632 13-1161 131161 Business, Finance
## 30633 15-1132 151132 Computer, Math
## 30634 15-1132 151132 Computer, Math
## 30635 15-1199 151199 Computer, Math
## 30636 41-9031 419031 Sales
## 30637 11-3021 113021 Management
## 30638 23-1011 231011 Legal
## 30639 15-1199 151199 Computer, Math
## 30640 15-1132 151132 Computer, Math
## 30641 15-1132 151132 Computer, Math
## 30642 13-1111 131111 Business, Finance
## 30643 25-4012 254012 Education, Training
## 30644 15-1132 151132 Computer, Math
## 30645 15-1121 151121 Computer, Math
## 30646 15-1121 151121 Computer, Math
## 30647 17-2141 172141 Architecture, Engineer
## 30648 27-3031 273031 Media, Design
## 30649 15-2031 152031 Computer, Math
## 30650 17-2141 172141 Architecture, Engineer
## 30651 17-2071 172071 Architecture, Engineer
## 30652 15-1121 151121 Computer, Math
## 30653 15-1199 151199 Computer, Math
## 30654 15-1133 151133 Computer, Math
## 30655 29-2011 292011 Healthcare Practitioner
## 30656 17-2141 172141 Architecture, Engineer
## 30657 15-1121 151121 Computer, Math
## 30658 17-2031 172031 Architecture, Engineer
## 30659 15-1132 151132 Computer, Math
## 30660 15-1121 151121 Computer, Math
## 30661 15-1121 151121 Computer, Math
## 30662 15-1121 151121 Computer, Math
## 30663 27-1024 271024 Media, Design
## 30664 15-1142 151142 Computer, Math
## 30665 15-2041 152041 Computer, Math
## 30666 17-2031 172031 Architecture, Engineer
## 30667 13-1161 131161 Business, Finance
## 30668 11-2021 112021 Management
## 30669 13-1111 131111 Business, Finance
## 30670 13-1071 131071 Business, Finance
## 30671 15-1131 151131 Computer, Math
## 30672 15-1132 151132 Computer, Math
## 30673 15-1132 151132 Computer, Math
## 30674 29-1069 291069 Healthcare Practitioner
## 30675 15-1121 151121 Computer, Math
## 30676 15-1132 151132 Computer, Math
## 30677 15-1133 151133 Computer, Math
## 30678 13-2099 132099 Business, Finance
## 30679 15-1132 151132 Computer, Math
## 30680 15-1121 151121 Computer, Math
## 30681 15-1199 151199 Computer, Math
## 30682 13-1161 131161 Business, Finance
## 30683 15-1121 151121 Computer, Math
## 30684 13-2011 132011 Business, Finance
## 30685 15-1121 151121 Computer, Math
## 30686 15-1132 151132 Computer, Math
## 30687 15-1199 151199 Computer, Math
## 30688 15-1132 151132 Computer, Math
## 30689 15-1132 151132 Computer, Math
## 30690 15-1132 151132 Computer, Math
## 30691 15-1132 151132 Computer, Math
## 30692 15-1132 151132 Computer, Math
## 30693 13-2011 132011 Business, Finance
## 30694 15-1141 151141 Computer, Math
## 30695 15-1121 151121 Computer, Math
## 30696 15-1133 151133 Computer, Math
## 30697 15-1199 151199 Computer, Math
## 30698 15-1121 151121 Computer, Math
## 30699 15-1121 151121 Computer, Math
## 30700 15-1121 151121 Computer, Math
## 30701 17-2071 172071 Architecture, Engineer
## 30702 15-2041 152041 Computer, Math
## 30703 15-1132 151132 Computer, Math
## 30704 29-1051 291051 Healthcare Practitioner
## 30705 15-1121 151121 Computer, Math
## 30706 27-1024 271024 Media, Design
## 30707 15-1132 151132 Computer, Math
## 30708 15-1141 151141 Computer, Math
## 30709 13-2061 132061 Business, Finance
## 30710 15-1199 151199 Computer, Math
## 30711 15-1132 151132 Computer, Math
## 30712 15-1132 151132 Computer, Math
## 30713 19-1042 191042 Life, Physcial, Social Science
## 30714 11-3021 113021 Management
## 30715 15-1131 151131 Computer, Math
## 30716 19-1042 191042 Life, Physcial, Social Science
## 30717 15-1132 151132 Computer, Math
## 30718 25-1071 251071 Education, Training
## 30719 13-2099 132099 Business, Finance
## 30720 15-1132 151132 Computer, Math
## 30721 15-1131 151131 Computer, Math
## 30722 15-1141 151141 Computer, Math
## 30723 15-1132 151132 Computer, Math
## 30724 15-1132 151132 Computer, Math
## 30725 15-1132 151132 Computer, Math
## 30726 19-2012 192012 Life, Physcial, Social Science
## 30727 29-1063 291063 Healthcare Practitioner
## 30728 15-1199 151199 Computer, Math
## 30729 15-1134 151134 Computer, Math
## 30730 17-2072 172072 Architecture, Engineer
## 30731 15-1199 151199 Computer, Math
## 30732 13-2099 132099 Business, Finance
## 30733 15-1111 151111 Computer, Math
## 30734 15-1132 151132 Computer, Math
## 30735 15-1132 151132 Computer, Math
## 30736 15-1132 151132 Computer, Math
## 30737 17-2071 172071 Architecture, Engineer
## 30738 15-1132 151132 Computer, Math
## 30739 29-1021 291021 Healthcare Practitioner
## 30740 11-3021 113021 Management
## 30741 17-2199 172199 Architecture, Engineer
## 30742 15-1132 151132 Computer, Math
## 30743 17-2141 172141 Architecture, Engineer
## 30744 15-1133 151133 Computer, Math
## 30745 15-1121 151121 Computer, Math
## 30746 17-2199 172199 Architecture, Engineer
## 30747 15-1121 151121 Computer, Math
## 30748 15-1133 151133 Computer, Math
## 30749 27-1024 271024 Media, Design
## 30750 29-1021 291021 Healthcare Practitioner
## 30751 19-2031 192031 Life, Physcial, Social Science
## 30752 15-1199 151199 Computer, Math
## 30753 15-1199 151199 Computer, Math
## 30754 15-1121 151121 Computer, Math
## 30755 15-1121 151121 Computer, Math
## 30756 13-1161 131161 Business, Finance
## 30757 15-1132 151132 Computer, Math
## 30758 13-1081 131081 Business, Finance
## 30759 15-1132 151132 Computer, Math
## 30760 29-2011 292011 Healthcare Practitioner
## 30761 15-2031 152031 Computer, Math
## 30762 15-1199 151199 Computer, Math
## 30763 27-2022 272022 Media, Design
## 30764 15-1121 151121 Computer, Math
## 30765 15-1132 151132 Computer, Math
## 30766 19-1011 191011 Life, Physcial, Social Science
## 30767 15-1121 151121 Computer, Math
## 30768 15-1132 151132 Computer, Math
## 30769 15-1132 151132 Computer, Math
## 30770 15-1121 151121 Computer, Math
## 30771 15-1132 151132 Computer, Math
## 30772 13-1111 131111 Business, Finance
## 30773 17-2141 172141 Architecture, Engineer
## 30774 15-1121 151121 Computer, Math
## 30775 15-1134 151134 Computer, Math
## 30776 15-1131 151131 Computer, Math
## 30777 15-1121 151121 Computer, Math
## 30778 17-2199 172199 Architecture, Engineer
## 30779 15-1131 151131 Computer, Math
## 30780 17-2112 172112 Architecture, Engineer
## 30781 17-2141 172141 Architecture, Engineer
## 30782 15-1199 151199 Computer, Math
## 30783 15-1142 151142 Computer, Math
## 30784 15-1199 151199 Computer, Math
## 30785 17-2072 172072 Architecture, Engineer
## 30786 15-1121 151121 Computer, Math
## 30787 15-1121 151121 Computer, Math
## 30788 17-2071 172071 Architecture, Engineer
## 30789 15-1132 151132 Computer, Math
## 30790 15-1132 151132 Computer, Math
## 30791 15-1131 151131 Computer, Math
## 30792 15-1132 151132 Computer, Math
## 30793 25-1122 251122 Education, Training
## 30794 15-1132 151132 Computer, Math
## 30795 15-1121 151121 Computer, Math
## 30796 15-1121 151121 Computer, Math
## 30797 15-1132 151132 Computer, Math
## 30798 15-1141 151141 Computer, Math
## 30799 15-1142 151142 Computer, Math
## 30800 15-1131 151131 Computer, Math
## 30801 19-3011 193011 Life, Physcial, Social Science
## 30802 15-2031 152031 Computer, Math
## 30803 15-1132 151132 Computer, Math
## 30804 15-1131 151131 Computer, Math
## 30805 41-9031 419031 Sales
## 30806 15-1132 151132 Computer, Math
## 30807 15-1121 151121 Computer, Math
## 30808 15-1132 151132 Computer, Math
## 30809 11-9041 119041 Management
## 30810 15-1121 151121 Computer, Math
## 30811 15-1132 151132 Computer, Math
## 30812 15-1121 151121 Computer, Math
## 30813 15-1199 151199 Computer, Math
## 30814 15-1132 151132 Computer, Math
## 30815 15-1199 151199 Computer, Math
## 30816 15-1132 151132 Computer, Math
## 30817 15-1141 151141 Computer, Math
## 30818 13-1161 131161 Business, Finance
## 30819 15-1132 151132 Computer, Math
## 30820 13-2011 132011 Business, Finance
## 30821 15-1121 151121 Computer, Math
## 30822 15-1199 151199 Computer, Math
## 30823 15-1132 151132 Computer, Math
## 30824 15-1199 151199 Computer, Math
## 30825 15-1133 151133 Computer, Math
## 30826 19-2032 192032 Life, Physcial, Social Science
## 30827 15-1132 151132 Computer, Math
## 30828 15-1133 151133 Computer, Math
## 30829 13-1111 131111 Business, Finance
## 30830 19-1022 191022 Life, Physcial, Social Science
## 30831 15-1121 151121 Computer, Math
## 30832 19-2031 192031 Life, Physcial, Social Science
## 30833 11-1011 111011 Management
## 30834 15-1132 151132 Computer, Math
## 30835 15-1199 151199 Computer, Math
## 30836 15-1132 151132 Computer, Math
## 30837 17-2141 172141 Architecture, Engineer
## 30838 11-3021 113021 Management
## 30839 15-1132 151132 Computer, Math
## 30840 13-2031 132031 Business, Finance
## 30841 15-1121 151121 Computer, Math
## 30842 15-1121 151121 Computer, Math
## 30843 15-1199 151199 Computer, Math
## 30844 15-1121 151121 Computer, Math
## 30845 13-1111 131111 Business, Finance
## 30846 15-1132 151132 Computer, Math
## 30847 15-2041 152041 Computer, Math
## 30848 15-1121 151121 Computer, Math
## 30849 15-1121 151121 Computer, Math
## 30850 15-1199 151199 Computer, Math
## 30851 15-1133 151133 Computer, Math
## 30852 17-3011 173011 Architecture, Engineer
## 30853 15-2031 152031 Computer, Math
## 30854 15-1199 151199 Computer, Math
## 30855 15-1132 151132 Computer, Math
## 30856 15-1199 151199 Computer, Math
## 30857 15-1132 151132 Computer, Math
## 30858 25-1032 251032 Education, Training
## 30859 23-1012 231012 Legal
## 30860 17-2071 172071 Architecture, Engineer
## 30861 17-2074 172074 Architecture, Engineer
## 30862 13-1199 131199 Business, Finance
## 30863 11-3121 113121 Management
## 30864 15-1132 151132 Computer, Math
## 30865 15-1121 151121 Computer, Math
## 30866 17-2071 172071 Architecture, Engineer
## 30867 15-1132 151132 Computer, Math
## 30868 15-1132 151132 Computer, Math
## 30869 15-1133 151133 Computer, Math
## 30870 13-2051 132051 Business, Finance
## 30871 15-1131 151131 Computer, Math
## 30872 17-2112 172112 Architecture, Engineer
## 30873 15-1199 151199 Computer, Math
## 30874 15-1121 151121 Computer, Math
## 30875 15-1142 151142 Computer, Math
## 30876 15-1199 151199 Computer, Math
## 30877 15-1121 151121 Computer, Math
## 30878 19-1029 191029 Life, Physcial, Social Science
## 30879 29-1122 291122 Healthcare Practitioner
## 30880 29-1069 291069 Healthcare Practitioner
## 30881 15-1132 151132 Computer, Math
## 30882 15-1133 151133 Computer, Math
## 30883 15-1199 151199 Computer, Math
## 30884 15-1199 151199 Computer, Math
## 30885 15-1132 151132 Computer, Math
## 30886 15-1132 151132 Computer, Math
## 30887 15-1132 151132 Computer, Math
## 30888 19-1042 191042 Life, Physcial, Social Science
## 30889 17-2141 172141 Architecture, Engineer
## 30890 15-1199 151199 Computer, Math
## 30891 15-1133 151133 Computer, Math
## 30892 13-2051 132051 Business, Finance
## 30893 15-2031 152031 Computer, Math
## 30894 17-2141 172141 Architecture, Engineer
## 30895 25-1066 251066 Education, Training
## 30896 15-1132 151132 Computer, Math
## 30897 15-1121 151121 Computer, Math
## 30898 29-1031 291031 Healthcare Practitioner
## 30899 15-1132 151132 Computer, Math
## 30900 17-2112 172112 Architecture, Engineer
## 30901 29-2011 292011 Healthcare Practitioner
## 30902 15-1131 151131 Computer, Math
## 30903 15-1132 151132 Computer, Math
## 30904 15-1122 151122 Computer, Math
## 30905 11-3021 113021 Management
## 30906 15-2031 152031 Computer, Math
## 30907 15-1132 151132 Computer, Math
## 30908 15-1131 151131 Computer, Math
## 30909 15-1121 151121 Computer, Math
## 30910 15-1133 151133 Computer, Math
## 30911 15-1121 151121 Computer, Math
## 30912 15-1199 151199 Computer, Math
## 30913 13-1081 131081 Business, Finance
## 30914 17-2112 172112 Architecture, Engineer
## 30915 15-1121 151121 Computer, Math
## 30916 15-1132 151132 Computer, Math
## 30917 15-1122 151122 Computer, Math
## 30918 17-2141 172141 Architecture, Engineer
## 30919 15-1121 151121 Computer, Math
## 30920 15-1132 151132 Computer, Math
## 30921 15-1199 151199 Computer, Math
## 30922 15-1131 151131 Computer, Math
## 30923 15-1121 151121 Computer, Math
## 30924 15-1121 151121 Computer, Math
## 30925 15-1199 151199 Computer, Math
## 30926 15-1142 151142 Computer, Math
## 30927 15-1132 151132 Computer, Math
## 30928 15-1132 151132 Computer, Math
## 30929 15-1132 151132 Computer, Math
## 30930 15-1132 151132 Computer, Math
## 30931 15-1199 151199 Computer, Math
## 30932 15-1121 151121 Computer, Math
## 30933 15-1132 151132 Computer, Math
## 30934 15-1121 151121 Computer, Math
## 30935 29-1123 291123 Healthcare Practitioner
## 30936 17-2071 172071 Architecture, Engineer
## 30937 17-2141 172141 Architecture, Engineer
## 30938 15-1132 151132 Computer, Math
## 30939 13-1111 131111 Business, Finance
## 30940 15-1199 151199 Computer, Math
## 30941 15-1133 151133 Computer, Math
## 30942 15-1132 151132 Computer, Math
## 30943 15-1132 151132 Computer, Math
## 30944 17-2112 172112 Architecture, Engineer
## 30945 15-1143 151143 Computer, Math
## 30946 15-1131 151131 Computer, Math
## 30947 15-1132 151132 Computer, Math
## 30948 15-1199 151199 Computer, Math
## 30949 15-1199 151199 Computer, Math
## 30950 15-1121 151121 Computer, Math
## 30951 13-2051 132051 Business, Finance
## 30952 15-1132 151132 Computer, Math
## 30953 15-1121 151121 Computer, Math
## 30954 15-1132 151132 Computer, Math
## 30955 11-2021 112021 Management
## 30956 15-1131 151131 Computer, Math
## 30957 13-2099 132099 Business, Finance
## 30958 27-1024 271024 Media, Design
## 30959 15-1121 151121 Computer, Math
## 30960 15-1132 151132 Computer, Math
## 30961 15-1132 151132 Computer, Math
## 30962 15-1121 151121 Computer, Math
## 30963 15-1134 151134 Computer, Math
## 30964 27-3031 273031 Media, Design
## 30965 15-1132 151132 Computer, Math
## 30966 17-2071 172071 Architecture, Engineer
## 30967 15-1111 151111 Computer, Math
## 30968 29-1069 291069 Healthcare Practitioner
## 30969 17-2072 172072 Architecture, Engineer
## 30970 27-1024 271024 Media, Design
## 30971 15-1132 151132 Computer, Math
## 30972 15-1132 151132 Computer, Math
## 30973 15-1132 151132 Computer, Math
## 30974 13-2011 132011 Business, Finance
## 30975 17-2199 172199 Architecture, Engineer
## 30976 15-1121 151121 Computer, Math
## 30977 15-1199 151199 Computer, Math
## 30978 41-9031 419031 Sales
## 30979 13-1161 131161 Business, Finance
## 30980 15-1132 151132 Computer, Math
## 30981 15-1132 151132 Computer, Math
## 30982 11-2021 112021 Management
## 30983 15-1134 151134 Computer, Math
## 30984 15-1132 151132 Computer, Math
## 30985 15-1132 151132 Computer, Math
## 30986 15-1132 151132 Computer, Math
## 30987 25-1071 251071 Education, Training
## 30988 15-1141 151141 Computer, Math
## 30989 15-1132 151132 Computer, Math
## 30990 15-1132 151132 Computer, Math
## 30991 15-1132 151132 Computer, Math
## 30992 15-1133 151133 Computer, Math
## 30993 17-2141 172141 Architecture, Engineer
## 30994 15-1132 151132 Computer, Math
## 30995 15-1132 151132 Computer, Math
## 30996 15-1199 151199 Computer, Math
## 30997 15-1132 151132 Computer, Math
## 30998 15-1141 151141 Computer, Math
## 30999 15-1132 151132 Computer, Math
## 31000 15-1121 151121 Computer, Math
## 31001 15-1141 151141 Computer, Math
## 31002 15-1132 151132 Computer, Math
## 31003 15-1121 151121 Computer, Math
## 31004 15-1132 151132 Computer, Math
## 31005 15-1121 151121 Computer, Math
## 31006 15-1199 151199 Computer, Math
## 31007 13-1111 131111 Business, Finance
## 31008 17-2041 172041 Architecture, Engineer
## 31009 17-2141 172141 Architecture, Engineer
## 31010 15-1199 151199 Computer, Math
## 31011 15-2041 152041 Computer, Math
## 31012 15-1133 151133 Computer, Math
## 31013 15-1121 151121 Computer, Math
## 31014 15-1199 151199 Computer, Math
## 31015 15-1132 151132 Computer, Math
## 31016 17-2072 172072 Architecture, Engineer
## 31017 15-1132 151132 Computer, Math
## 31018 15-1142 151142 Computer, Math
## 31019 15-1121 151121 Computer, Math
## 31020 15-1132 151132 Computer, Math
## 31021 15-1132 151132 Computer, Math
## 31022 15-2031 152031 Computer, Math
## 31023 15-1132 151132 Computer, Math
## 31024 15-1132 151132 Computer, Math
## 31025 15-1121 151121 Computer, Math
## 31026 15-1121 151121 Computer, Math
## 31027 15-1132 151132 Computer, Math
## 31028 11-2022 112022 Management
## 31029 15-1132 151132 Computer, Math
## 31030 13-1111 131111 Business, Finance
## 31031 15-1134 151134 Computer, Math
## 31032 15-1121 151121 Computer, Math
## 31033 13-2011 132011 Business, Finance
## 31034 15-1132 151132 Computer, Math
## 31035 15-1132 151132 Computer, Math
## 31036 15-1199 151199 Computer, Math
## 31037 15-1141 151141 Computer, Math
## 31038 15-1132 151132 Computer, Math
## 31039 15-1121 151121 Computer, Math
## 31040 17-2141 172141 Architecture, Engineer
## 31041 11-2031 112031 Management
## 31042 15-2031 152031 Computer, Math
## 31043 15-1132 151132 Computer, Math
## 31044 15-1121 151121 Computer, Math
## 31045 15-1132 151132 Computer, Math
## 31046 15-1122 151122 Computer, Math
## 31047 15-1132 151132 Computer, Math
## 31048 15-1131 151131 Computer, Math
## 31049 15-1132 151132 Computer, Math
## 31050 15-1132 151132 Computer, Math
## 31051 15-1132 151132 Computer, Math
## 31052 15-1121 151121 Computer, Math
## 31053 13-2011 132011 Business, Finance
## 31054 15-1132 151132 Computer, Math
## 31055 15-1199 151199 Computer, Math
## 31056 15-1132 151132 Computer, Math
## 31057 15-1199 151199 Computer, Math
## 31058 15-1132 151132 Computer, Math
## 31059 15-1199 151199 Computer, Math
## 31060 15-1199 151199 Computer, Math
## 31061 15-1199 151199 Computer, Math
## 31062 15-1121 151121 Computer, Math
## 31063 13-1111 131111 Business, Finance
## 31064 15-1132 151132 Computer, Math
## 31065 15-1199 151199 Computer, Math
## 31066 15-1141 151141 Computer, Math
## 31067 15-1132 151132 Computer, Math
## 31068 15-1132 151132 Computer, Math
## 31069 15-1133 151133 Computer, Math
## 31070 15-1131 151131 Computer, Math
## 31071 25-1124 251124 Education, Training
## 31072 15-1121 151121 Computer, Math
## 31073 15-1121 151121 Computer, Math
## 31074 19-1041 191041 Life, Physcial, Social Science
## 31075 15-2031 152031 Computer, Math
## 31076 15-1121 151121 Computer, Math
## 31077 15-1132 151132 Computer, Math
## 31078 15-1121 151121 Computer, Math
## 31079 15-1121 151121 Computer, Math
## 31080 15-1121 151121 Computer, Math
## 31081 15-1132 151132 Computer, Math
## 31082 15-1132 151132 Computer, Math
## 31083 15-1132 151132 Computer, Math
## 31084 15-1132 151132 Computer, Math
## 31085 13-2051 132051 Business, Finance
## 31086 15-1132 151132 Computer, Math
## 31087 15-1132 151132 Computer, Math
## 31088 15-1132 151132 Computer, Math
## 31089 15-1132 151132 Computer, Math
## 31090 19-1029 191029 Life, Physcial, Social Science
## 31091 17-2071 172071 Architecture, Engineer
## 31092 17-2112 172112 Architecture, Engineer
## 31093 15-1121 151121 Computer, Math
## 31094 15-1132 151132 Computer, Math
## 31095 17-2141 172141 Architecture, Engineer
## 31096 15-1132 151132 Computer, Math
## 31097 27-1024 271024 Media, Design
## 31098 17-2072 172072 Architecture, Engineer
## 31099 15-1131 151131 Computer, Math
## 31100 15-1132 151132 Computer, Math
## 31101 15-1134 151134 Computer, Math
## 31102 15-1132 151132 Computer, Math
## 31103 15-1132 151132 Computer, Math
## 31104 15-1121 151121 Computer, Math
## 31105 15-1132 151132 Computer, Math
## 31106 15-1132 151132 Computer, Math
## 31107 15-1132 151132 Computer, Math
## 31108 15-1132 151132 Computer, Math
## 31109 15-1132 151132 Computer, Math
## 31110 15-1132 151132 Computer, Math
## 31111 15-1132 151132 Computer, Math
## 31112 11-1021 111021 Management
## 31113 15-2041 152041 Computer, Math
## 31114 15-1121 151121 Computer, Math
## 31115 17-2072 172072 Architecture, Engineer
## 31116 13-2011 132011 Business, Finance
## 31117 19-1042 191042 Life, Physcial, Social Science
## 31118 15-1132 151132 Computer, Math
## 31119 15-1199 151199 Computer, Math
## 31120 15-1133 151133 Computer, Math
## 31121 15-1199 151199 Computer, Math
## 31122 15-1132 151132 Computer, Math
## 31123 15-1132 151132 Computer, Math
## 31124 27-1021 271021 Media, Design
## 31125 15-1131 151131 Computer, Math
## 31126 29-1069 291069 Healthcare Practitioner
## 31127 15-1141 151141 Computer, Math
## 31128 19-1029 191029 Life, Physcial, Social Science
## 31129 15-1199 151199 Computer, Math
## 31130 15-1133 151133 Computer, Math
## 31131 15-1132 151132 Computer, Math
## 31132 15-1132 151132 Computer, Math
## 31133 15-1142 151142 Computer, Math
## 31134 15-1121 151121 Computer, Math
## 31135 15-1121 151121 Computer, Math
## 31136 15-1132 151132 Computer, Math
## 31137 15-1121 151121 Computer, Math
## 31138 19-1042 191042 Life, Physcial, Social Science
## 31139 15-1132 151132 Computer, Math
## 31140 15-1199 151199 Computer, Math
## 31141 15-1121 151121 Computer, Math
## 31142 15-1131 151131 Computer, Math
## 31143 15-1142 151142 Computer, Math
## 31144 11-9199 119199 Management
## 31145 15-1133 151133 Computer, Math
## 31146 15-1132 151132 Computer, Math
## 31147 15-1132 151132 Computer, Math
## 31148 15-1122 151122 Computer, Math
## 31149 13-1111 131111 Business, Finance
## 31150 29-1127 291127 Healthcare Practitioner
## 31151 15-1132 151132 Computer, Math
## 31152 15-1152 151152 Computer, Math
## 31153 15-1121 151121 Computer, Math
## 31154 17-2141 172141 Architecture, Engineer
## 31155 15-1133 151133 Computer, Math
## 31156 15-1141 151141 Computer, Math
## 31157 15-1132 151132 Computer, Math
## 31158 13-1111 131111 Business, Finance
## 31159 29-1021 291021 Healthcare Practitioner
## 31160 15-1121 151121 Computer, Math
## 31161 15-1132 151132 Computer, Math
## 31162 15-1121 151121 Computer, Math
## 31163 15-1132 151132 Computer, Math
## 31164 17-2131 172131 Architecture, Engineer
## 31165 15-1132 151132 Computer, Math
## 31166 15-1199 151199 Computer, Math
## 31167 13-2051 132051 Business, Finance
## 31168 11-3051 113051 Management
## 31169 15-1132 151132 Computer, Math
## 31170 13-1111 131111 Business, Finance
## 31171 15-1132 151132 Computer, Math
## 31172 15-1132 151132 Computer, Math
## 31173 19-2031 192031 Life, Physcial, Social Science
## 31174 29-2011 292011 Healthcare Practitioner
## 31175 27-1024 271024 Media, Design
## 31176 13-1111 131111 Business, Finance
## 31177 15-1121 151121 Computer, Math
## 31178 15-1132 151132 Computer, Math
## 31179 15-1133 151133 Computer, Math
## 31180 15-1122 151122 Computer, Math
## 31181 15-1132 151132 Computer, Math
## 31182 15-1132 151132 Computer, Math
## 31183 15-1131 151131 Computer, Math
## 31184 15-1132 151132 Computer, Math
## 31185 15-1132 151132 Computer, Math
## 31186 15-1132 151132 Computer, Math
## 31187 13-2099 132099 Business, Finance
## 31188 15-1133 151133 Computer, Math
## 31189 17-1011 171011 Architecture, Engineer
## 31190 15-1121 151121 Computer, Math
## 31191 17-2072 172072 Architecture, Engineer
## 31192 15-1132 151132 Computer, Math
## 31193 15-2031 152031 Computer, Math
## 31194 17-2112 172112 Architecture, Engineer
## 31195 15-1134 151134 Computer, Math
## 31196 15-1199 151199 Computer, Math
## 31197 19-3011 193011 Life, Physcial, Social Science
## 31198 15-1121 151121 Computer, Math
## 31199 13-1111 131111 Business, Finance
## 31200 27-1011 271011 Media, Design
## 31201 17-2112 172112 Architecture, Engineer
## 31202 13-1111 131111 Business, Finance
## 31203 15-1132 151132 Computer, Math
## 31204 15-1121 151121 Computer, Math
## 31205 15-2031 152031 Computer, Math
## 31206 11-9111 119111 Management
## 31207 15-1133 151133 Computer, Math
## 31208 15-1199 151199 Computer, Math
## 31209 15-1133 151133 Computer, Math
## 31210 15-1132 151132 Computer, Math
## 31211 17-2141 172141 Architecture, Engineer
## 31212 15-1134 151134 Computer, Math
## 31213 15-1199 151199 Computer, Math
## 31214 19-1012 191012 Life, Physcial, Social Science
## 31215 15-1132 151132 Computer, Math
## 31216 15-1132 151132 Computer, Math
## 31217 15-1131 151131 Computer, Math
## 31218 15-1132 151132 Computer, Math
## 31219 15-1133 151133 Computer, Math
## 31220 15-1199 151199 Computer, Math
## 31221 15-1131 151131 Computer, Math
## 31222 17-2071 172071 Architecture, Engineer
## 31223 19-3094 193094 Life, Physcial, Social Science
## 31224 27-2041 272041 Media, Design
## 31225 15-1132 151132 Computer, Math
## 31226 15-1132 151132 Computer, Math
## 31227 15-1132 151132 Computer, Math
## 31228 15-1132 151132 Computer, Math
## 31229 13-2011 132011 Business, Finance
## 31230 15-1132 151132 Computer, Math
## 31231 15-1199 151199 Computer, Math
## 31232 29-9099 299099 Healthcare Practitioner
## 31233 13-2051 132051 Business, Finance
## 31234 15-1131 151131 Computer, Math
## 31235 15-1131 151131 Computer, Math
## 31236 17-2072 172072 Architecture, Engineer
## 31237 15-1199 151199 Computer, Math
## 31238 27-1024 271024 Media, Design
## 31239 19-1042 191042 Life, Physcial, Social Science
## 31240 11-3021 113021 Management
## 31241 15-1121 151121 Computer, Math
## 31242 15-1132 151132 Computer, Math
## 31243 15-1141 151141 Computer, Math
## 31244 15-1199 151199 Computer, Math
## 31245 13-1111 131111 Business, Finance
## 31246 15-1132 151132 Computer, Math
## 31247 15-1121 151121 Computer, Math
## 31248 15-1199 151199 Computer, Math
## 31249 15-1132 151132 Computer, Math
## 31250 15-1121 151121 Computer, Math
## 31251 15-1132 151132 Computer, Math
## 31252 15-1199 151199 Computer, Math
## 31253 15-1132 151132 Computer, Math
## 31254 15-1132 151132 Computer, Math
## 31255 15-1141 151141 Computer, Math
## 31256 11-3021 113021 Management
## 31257 15-1132 151132 Computer, Math
## 31258 13-2099 132099 Business, Finance
## 31259 15-1132 151132 Computer, Math
## 31260 13-2011 132011 Business, Finance
## 31261 15-1132 151132 Computer, Math
## 31262 15-1131 151131 Computer, Math
## 31263 15-1132 151132 Computer, Math
## 31264 17-2112 172112 Architecture, Engineer
## 31265 13-1111 131111 Business, Finance
## 31266 15-1121 151121 Computer, Math
## 31267 15-1132 151132 Computer, Math
## 31268 15-1132 151132 Computer, Math
## 31269 15-1132 151132 Computer, Math
## 31270 15-1132 151132 Computer, Math
## 31271 15-1133 151133 Computer, Math
## 31272 15-1121 151121 Computer, Math
## 31273 15-1132 151132 Computer, Math
## 31274 15-1199 151199 Computer, Math
## 31275 15-1132 151132 Computer, Math
## 31276 17-2112 172112 Architecture, Engineer
## 31277 15-1134 151134 Computer, Math
## 31278 15-1121 151121 Computer, Math
## 31279 15-1133 151133 Computer, Math
## 31280 25-1054 251054 Education, Training
## 31281 15-1132 151132 Computer, Math
## 31282 25-1193 251193 Education, Training
## 31283 15-1121 151121 Computer, Math
## 31284 25-1011 251011 Education, Training
## 31285 15-1132 151132 Computer, Math
## 31286 11-3021 113021 Management
## 31287 15-1132 151132 Computer, Math
## 31288 11-1011 111011 Management
## 31289 29-1069 291069 Healthcare Practitioner
## 31290 15-1199 151199 Computer, Math
## 31291 15-1132 151132 Computer, Math
## 31292 15-1141 151141 Computer, Math
## 31293 19-3011 193011 Life, Physcial, Social Science
## 31294 15-1199 151199 Computer, Math
## 31295 15-1121 151121 Computer, Math
## 31296 13-2051 132051 Business, Finance
## 31297 15-1132 151132 Computer, Math
## 31298 15-1142 151142 Computer, Math
## 31299 15-1199 151199 Computer, Math
## 31300 41-9099 419099 Sales
## 31301 15-1132 151132 Computer, Math
## 31302 15-1132 151132 Computer, Math
## 31303 15-1132 151132 Computer, Math
## 31304 13-2011 132011 Business, Finance
## 31305 15-1132 151132 Computer, Math
## 31306 15-1133 151133 Computer, Math
## 31307 15-1132 151132 Computer, Math
## 31308 13-2051 132051 Business, Finance
## 31309 13-2051 132051 Business, Finance
## 31310 15-1133 151133 Computer, Math
## 31311 15-1132 151132 Computer, Math
## 31312 15-1132 151132 Computer, Math
## 31313 17-2131 172131 Architecture, Engineer
## 31314 15-1132 151132 Computer, Math
## 31315 29-1123 291123 Healthcare Practitioner
## 31316 15-1132 151132 Computer, Math
## 31317 19-1021 191021 Life, Physcial, Social Science
## 31318 15-1132 151132 Computer, Math
## 31319 15-1132 151132 Computer, Math
## 31320 15-1133 151133 Computer, Math
## 31321 15-1131 151131 Computer, Math
## 31322 15-1132 151132 Computer, Math
## 31323 15-1199 151199 Computer, Math
## 31324 15-1199 151199 Computer, Math
## 31325 15-1132 151132 Computer, Math
## 31326 15-1141 151141 Computer, Math
## 31327 15-1121 151121 Computer, Math
## 31328 15-1134 151134 Computer, Math
## 31329 11-3021 113021 Management
## 31330 15-1132 151132 Computer, Math
## 31331 15-1132 151132 Computer, Math
## 31332 13-2051 132051 Business, Finance
## 31333 17-2072 172072 Architecture, Engineer
## 31334 15-1132 151132 Computer, Math
## 31335 27-1021 271021 Media, Design
## 31336 15-1199 151199 Computer, Math
## 31337 17-2071 172071 Architecture, Engineer
## 31338 15-1121 151121 Computer, Math
## 31339 15-1199 151199 Computer, Math
## 31340 15-1121 151121 Computer, Math
## 31341 15-1121 151121 Computer, Math
## 31342 15-1199 151199 Computer, Math
## 31343 15-1121 151121 Computer, Math
## 31344 19-2041 192041 Life, Physcial, Social Science
## 31345 11-9041 119041 Management
## 31346 15-1132 151132 Computer, Math
## 31347 15-1132 151132 Computer, Math
## 31348 15-2041 152041 Computer, Math
## 31349 15-1121 151121 Computer, Math
## 31350 15-1121 151121 Computer, Math
## 31351 15-2031 152031 Computer, Math
## 31352 15-2041 152041 Computer, Math
## 31353 15-1141 151141 Computer, Math
## 31354 15-1132 151132 Computer, Math
## 31355 15-2041 152041 Computer, Math
## 31356 15-1121 151121 Computer, Math
## 31357 17-1011 171011 Architecture, Engineer
## 31358 15-1132 151132 Computer, Math
## 31359 15-1132 151132 Computer, Math
## 31360 15-2031 152031 Computer, Math
## 31361 15-1132 151132 Computer, Math
## 31362 15-1132 151132 Computer, Math
## 31363 17-2072 172072 Architecture, Engineer
## 31364 15-1132 151132 Computer, Math
## 31365 15-1132 151132 Computer, Math
## 31366 15-1131 151131 Computer, Math
## 31367 15-1131 151131 Computer, Math
## 31368 27-3031 273031 Media, Design
## 31369 19-1021 191021 Life, Physcial, Social Science
## 31370 15-1199 151199 Computer, Math
## 31371 15-1132 151132 Computer, Math
## 31372 17-2141 172141 Architecture, Engineer
## 31373 15-1133 151133 Computer, Math
## 31374 17-2051 172051 Architecture, Engineer
## 31375 15-1132 151132 Computer, Math
## 31376 17-2131 172131 Architecture, Engineer
## 31377 15-1132 151132 Computer, Math
## 31378 15-1132 151132 Computer, Math
## 31379 13-1161 131161 Business, Finance
## 31380 15-1121 151121 Computer, Math
## 31381 15-1121 151121 Computer, Math
## 31382 19-1021 191021 Life, Physcial, Social Science
## 31383 13-2011 132011 Business, Finance
## 31384 13-2099 132099 Business, Finance
## 31385 11-3021 113021 Management
## 31386 19-1042 191042 Life, Physcial, Social Science
## 31387 13-2051 132051 Business, Finance
## 31388 17-3011 173011 Architecture, Engineer
## 31389 15-1121 151121 Computer, Math
## 31390 25-1021 251021 Education, Training
## 31391 15-1121 151121 Computer, Math
## 31392 15-1199 151199 Computer, Math
## 31393 15-1132 151132 Computer, Math
## 31394 15-1121 151121 Computer, Math
## 31395 15-1121 151121 Computer, Math
## 31396 15-1122 151122 Computer, Math
## 31397 23-1011 231011 Legal
## 31398 15-1199 151199 Computer, Math
## 31399 15-1121 151121 Computer, Math
## 31400 15-1132 151132 Computer, Math
## 31401 15-1121 151121 Computer, Math
## 31402 15-1132 151132 Computer, Math
## 31403 11-2031 112031 Management
## 31404 17-2141 172141 Architecture, Engineer
## 31405 15-1132 151132 Computer, Math
## 31406 29-1021 291021 Healthcare Practitioner
## 31407 15-1133 151133 Computer, Math
## 31408 15-1121 151121 Computer, Math
## 31409 15-1121 151121 Computer, Math
## 31410 15-1143 151143 Computer, Math
## 31411 15-1121 151121 Computer, Math
## 31412 15-1132 151132 Computer, Math
## 31413 15-1132 151132 Computer, Math
## 31414 27-3031 273031 Media, Design
## 31415 15-1121 151121 Computer, Math
## 31416 15-1121 151121 Computer, Math
## 31417 17-2199 172199 Architecture, Engineer
## 31418 15-1199 151199 Computer, Math
## 31419 15-1121 151121 Computer, Math
## 31420 15-1132 151132 Computer, Math
## 31421 15-2031 152031 Computer, Math
## 31422 19-1022 191022 Life, Physcial, Social Science
## 31423 15-1131 151131 Computer, Math
## 31424 15-1121 151121 Computer, Math
## 31425 17-2141 172141 Architecture, Engineer
## 31426 15-1199 151199 Computer, Math
## 31427 15-1121 151121 Computer, Math
## 31428 17-2051 172051 Architecture, Engineer
## 31429 11-3031 113031 Management
## 31430 15-1132 151132 Computer, Math
## 31431 15-1199 151199 Computer, Math
## 31432 15-1121 151121 Computer, Math
## 31433 19-3011 193011 Life, Physcial, Social Science
## 31434 15-1133 151133 Computer, Math
## 31435 15-1132 151132 Computer, Math
## 31436 15-1132 151132 Computer, Math
## 31437 15-1132 151132 Computer, Math
## 31438 15-1132 151132 Computer, Math
## 31439 15-1133 151133 Computer, Math
## 31440 13-1111 131111 Business, Finance
## 31441 15-1133 151133 Computer, Math
## 31442 15-1199 151199 Computer, Math
## 31443 15-1133 151133 Computer, Math
## 31444 19-2031 192031 Life, Physcial, Social Science
## 31445 15-1132 151132 Computer, Math
## 31446 15-1132 151132 Computer, Math
## 31447 15-1132 151132 Computer, Math
## 31448 15-1141 151141 Computer, Math
## 31449 13-2011 132011 Business, Finance
## 31450 15-1131 151131 Computer, Math
## 31451 15-1132 151132 Computer, Math
## 31452 15-1199 151199 Computer, Math
## 31453 15-1132 151132 Computer, Math
## 31454 15-1132 151132 Computer, Math
## 31455 15-1131 151131 Computer, Math
## 31456 41-9031 419031 Sales
## 31457 15-1132 151132 Computer, Math
## 31458 15-1132 151132 Computer, Math
## 31459 13-1111 131111 Business, Finance
## 31460 15-1199 151199 Computer, Math
## 31461 17-2071 172071 Architecture, Engineer
## 31462 15-1111 151111 Computer, Math
## 31463 15-1142 151142 Computer, Math
## 31464 19-2031 192031 Life, Physcial, Social Science
## 31465 15-1121 151121 Computer, Math
## 31466 15-1131 151131 Computer, Math
## 31467 19-1029 191029 Life, Physcial, Social Science
## 31468 15-1132 151132 Computer, Math
## 31469 17-2131 172131 Architecture, Engineer
## 31470 29-1065 291065 Healthcare Practitioner
## 31471 15-1199 151199 Computer, Math
## 31472 15-1131 151131 Computer, Math
## 31473 15-1132 151132 Computer, Math
## 31474 15-1134 151134 Computer, Math
## 31475 15-1152 151152 Computer, Math
## 31476 13-2099 132099 Business, Finance
## 31477 15-1132 151132 Computer, Math
## 31478 15-1121 151121 Computer, Math
## 31479 41-4011 414011 Sales
## 31480 15-1132 151132 Computer, Math
## 31481 15-1199 151199 Computer, Math
## 31482 15-1121 151121 Computer, Math
## 31483 15-1121 151121 Computer, Math
## 31484 15-1199 151199 Computer, Math
## 31485 15-1199 151199 Computer, Math
## 31486 15-1133 151133 Computer, Math
## 31487 15-1132 151132 Computer, Math
## 31488 15-1132 151132 Computer, Math
## 31489 13-2011 132011 Business, Finance
## 31490 15-1132 151132 Computer, Math
## 31491 15-1132 151132 Computer, Math
## 31492 15-1199 151199 Computer, Math
## 31493 11-3021 113021 Management
## 31494 13-1111 131111 Business, Finance
## 31495 17-2199 172199 Architecture, Engineer
## 31496 15-1199 151199 Computer, Math
## 31497 15-1142 151142 Computer, Math
## 31498 15-1132 151132 Computer, Math
## 31499 13-2011 132011 Business, Finance
## 31500 15-1199 151199 Computer, Math
## 31501 15-1121 151121 Computer, Math
## 31502 15-1132 151132 Computer, Math
## 31503 15-1133 151133 Computer, Math
## 31504 15-1132 151132 Computer, Math
## 31505 15-1121 151121 Computer, Math
## 31506 15-1121 151121 Computer, Math
## 31507 17-2071 172071 Architecture, Engineer
## 31508 15-1199 151199 Computer, Math
## 31509 15-1132 151132 Computer, Math
## 31510 15-1131 151131 Computer, Math
## 31511 15-1132 151132 Computer, Math
## 31512 11-3021 113021 Management
## 31513 15-1132 151132 Computer, Math
## 31514 15-1132 151132 Computer, Math
## 31515 15-1199 151199 Computer, Math
## 31516 15-1199 151199 Computer, Math
## 31517 11-1021 111021 Management
## 31518 27-1024 271024 Media, Design
## 31519 27-1024 271024 Media, Design
## 31520 13-1161 131161 Business, Finance
## 31521 13-1111 131111 Business, Finance
## 31522 15-1121 151121 Computer, Math
## 31523 25-1011 251011 Education, Training
## 31524 15-1132 151132 Computer, Math
## 31525 13-1081 131081 Business, Finance
## 31526 15-1132 151132 Computer, Math
## 31527 15-1034 151034 Computer, Math
## 31528 27-1024 271024 Media, Design
## 31529 17-2141 172141 Architecture, Engineer
## 31530 15-1141 151141 Computer, Math
## 31531 15-1199 151199 Computer, Math
## 31532 15-1132 151132 Computer, Math
## 31533 15-1132 151132 Computer, Math
## 31534 13-2011 132011 Business, Finance
## 31535 15-1132 151132 Computer, Math
## 31536 41-9031 419031 Sales
## 31537 15-1132 151132 Computer, Math
## 31538 15-1121 151121 Computer, Math
## 31539 15-1132 151132 Computer, Math
## 31540 15-1141 151141 Computer, Math
## 31541 15-1132 151132 Computer, Math
## 31542 15-1132 151132 Computer, Math
## 31543 15-1132 151132 Computer, Math
## 31544 15-1132 151132 Computer, Math
## 31545 25-1071 251071 Education, Training
## 31546 11-1021 111021 Management
## 31547 15-1199 151199 Computer, Math
## 31548 15-1199 151199 Computer, Math
## 31549 15-1133 151133 Computer, Math
## 31550 15-1132 151132 Computer, Math
## 31551 15-1131 151131 Computer, Math
## 31552 15-1132 151132 Computer, Math
## 31553 15-1121 151121 Computer, Math
## 31554 15-1133 151133 Computer, Math
## 31555 15-1121 151121 Computer, Math
## 31556 15-1199 151199 Computer, Math
## 31557 15-1133 151133 Computer, Math
## 31558 15-1132 151132 Computer, Math
## 31559 15-1121 151121 Computer, Math
## 31560 17-2141 172141 Architecture, Engineer
## 31561 15-1132 151132 Computer, Math
## 31562 15-1199 151199 Computer, Math
## 31563 15-1199 151199 Computer, Math
## 31564 17-2072 172072 Architecture, Engineer
## 31565 15-1199 151199 Computer, Math
## 31566 15-1133 151133 Computer, Math
## 31567 41-9031 419031 Sales
## 31568 15-1132 151132 Computer, Math
## 31569 15-1132 151132 Computer, Math
## 31570 15-1132 151132 Computer, Math
## 31571 15-1132 151132 Computer, Math
## 31572 17-2071 172071 Architecture, Engineer
## 31573 15-1131 151131 Computer, Math
## 31574 15-1132 151132 Computer, Math
## 31575 25-1032 251032 Education, Training
## 31576 11-9111 119111 Management
## 31577 15-1121 151121 Computer, Math
## 31578 15-1132 151132 Computer, Math
## 31579 13-2011 132011 Business, Finance
## 31580 15-1132 151132 Computer, Math
## 31581 13-2051 132051 Business, Finance
## 31582 13-1041 131041 Business, Finance
## 31583 15-1199 151199 Computer, Math
## 31584 15-1132 151132 Computer, Math
## 31585 15-1132 151132 Computer, Math
## 31586 15-1121 151121 Computer, Math
## 31587 15-1132 151132 Computer, Math
## 31588 29-1069 291069 Healthcare Practitioner
## 31589 15-1132 151132 Computer, Math
## 31590 15-1132 151132 Computer, Math
## 31591 15-1132 151132 Computer, Math
## 31592 25-1071 251071 Education, Training
## 31593 41-9031 419031 Sales
## 31594 15-1121 151121 Computer, Math
## 31595 15-1199 151199 Computer, Math
## 31596 15-1132 151132 Computer, Math
## 31597 15-1132 151132 Computer, Math
## 31598 15-1132 151132 Computer, Math
## 31599 15-1132 151132 Computer, Math
## 31600 19-2032 192032 Life, Physcial, Social Science
## 31601 15-1132 151132 Computer, Math
## 31602 15-1132 151132 Computer, Math
## 31603 15-1199 151199 Computer, Math
## 31604 15-1199 151199 Computer, Math
## 31605 19-1021 191021 Life, Physcial, Social Science
## 31606 13-1111 131111 Business, Finance
## 31607 15-1132 151132 Computer, Math
## 31608 15-1133 151133 Computer, Math
## 31609 15-1132 151132 Computer, Math
## 31610 15-1133 151133 Computer, Math
## 31611 15-1132 151132 Computer, Math
## 31612 15-1142 151142 Computer, Math
## 31613 13-1111 131111 Business, Finance
## 31614 15-1121 151121 Computer, Math
## 31615 15-1131 151131 Computer, Math
## 31616 15-1132 151132 Computer, Math
## 31617 15-1132 151132 Computer, Math
## 31618 17-2141 172141 Architecture, Engineer
## 31619 15-1131 151131 Computer, Math
## 31620 15-1199 151199 Computer, Math
## 31621 15-2031 152031 Computer, Math
## 31622 11-3021 113021 Management
## 31623 25-2021 252021 Education, Training
## 31624 15-1132 151132 Computer, Math
## 31625 13-2099 132099 Business, Finance
## 31626 15-1121 151121 Computer, Math
## 31627 15-1121 151121 Computer, Math
## 31628 15-1143 151143 Computer, Math
## 31629 15-1199 151199 Computer, Math
## 31630 15-1133 151133 Computer, Math
## 31631 15-1199 151199 Computer, Math
## 31632 15-1199.00 151199 Computer, Math
## 31633 17-2141 172141 Architecture, Engineer
## 31634 13-2011 132011 Business, Finance
## 31635 15-1142 151142 Computer, Math
## 31636 13-2011 132011 Business, Finance
## 31637 15-1132 151132 Computer, Math
## 31638 15-1132 151132 Computer, Math
## 31639 15-1121 151121 Computer, Math
## 31640 13-2011 132011 Business, Finance
## 31641 15-1199 151199 Computer, Math
## 31642 15-2041 152041 Computer, Math
## 31643 15-1132 151132 Computer, Math
## 31644 15-1132 151132 Computer, Math
## 31645 15-1132 151132 Computer, Math
## 31646 29-2011 292011 Healthcare Practitioner
## 31647 15-1132 151132 Computer, Math
## 31648 15-1141 151141 Computer, Math
## 31649 17-2071 172071 Architecture, Engineer
## 31650 15-1131 151131 Computer, Math
## 31651 15-1199 151199 Computer, Math
## 31652 15-1199 151199 Computer, Math
## 31653 15-1121 151121 Computer, Math
## 31654 15-1199 151199 Computer, Math
## 31655 15-1121 151121 Computer, Math
## 31656 25-1054 251054 Education, Training
## 31657 15-2031 152031 Computer, Math
## 31658 13-1111 131111 Business, Finance
## 31659 15-1121 151121 Computer, Math
## 31660 15-1199 151199 Computer, Math
## 31661 15-1199 151199 Computer, Math
## 31662 17-2072 172072 Architecture, Engineer
## 31663 15-1142 151142 Computer, Math
## 31664 13-1111 131111 Business, Finance
## 31665 25-1071 251071 Education, Training
## 31666 15-1132 151132 Computer, Math
## 31667 15-1132 151132 Computer, Math
## 31668 15-1132 151132 Computer, Math
## 31669 13-1161 131161 Business, Finance
## 31670 15-1132 151132 Computer, Math
## 31671 15-1199 151199 Computer, Math
## 31672 15-1199 151199 Computer, Math
## 31673 15-1199 151199 Computer, Math
## 31674 15-1121 151121 Computer, Math
## 31675 15-1142 151142 Computer, Math
## 31676 17-2071 172071 Architecture, Engineer
## 31677 15-1121 151121 Computer, Math
## 31678 15-1132 151132 Computer, Math
## 31679 11-3021 113021 Management
## 31680 29-1065 291065 Healthcare Practitioner
## 31681 15-1132 151132 Computer, Math
## 31682 13-1111 131111 Business, Finance
## 31683 15-1133 151133 Computer, Math
## 31684 15-1199 151199 Computer, Math
## 31685 15-2031 152031 Computer, Math
## 31686 15-1132 151132 Computer, Math
## 31687 15-1199 151199 Computer, Math
## 31688 15-1132 151132 Computer, Math
## 31689 15-1132 151132 Computer, Math
## 31690 25-1071 251071 Education, Training
## 31691 15-1132 151132 Computer, Math
## 31692 15-1199 151199 Computer, Math
## 31693 15-1131 151131 Computer, Math
## 31694 15-1199 151199 Computer, Math
## 31695 15-1132 151132 Computer, Math
## 31696 13-2099 132099 Business, Finance
## 31697 15-1132 151132 Computer, Math
## 31698 15-1133 151133 Computer, Math
## 31699 15-1132 151132 Computer, Math
## 31700 15-1132 151132 Computer, Math
## 31701 15-1199 151199 Computer, Math
## 31702 15-1132 151132 Computer, Math
## 31703 15-1199 151199 Computer, Math
## 31704 15-1121 151121 Computer, Math
## 31705 15-1121 151121 Computer, Math
## 31706 15-1199 151199 Computer, Math
## 31707 17-2072 172072 Architecture, Engineer
## 31708 15-1132 151132 Computer, Math
## 31709 29-2011 292011 Healthcare Practitioner
## 31710 13-2051 132051 Business, Finance
## 31711 29-1069 291069 Healthcare Practitioner
## 31712 15-1132 151132 Computer, Math
## 31713 15-1121 151121 Computer, Math
## 31714 15-1199 151199 Computer, Math
## 31715 15-1132 151132 Computer, Math
## 31716 17-2051 172051 Architecture, Engineer
## 31717 15-1132 151132 Computer, Math
## 31718 15-1199 151199 Computer, Math
## 31719 15-1121 151121 Computer, Math
## 31720 15-1199 151199 Computer, Math
## 31721 15-1132 151132 Computer, Math
## 31722 15-1132 151132 Computer, Math
## 31723 15-1132 151132 Computer, Math
## 31724 15-2031 152031 Computer, Math
## 31725 15-1132 151132 Computer, Math
## 31726 15-1132 151132 Computer, Math
## 31727 17-2071 172071 Architecture, Engineer
## 31728 17-2051 172051 Architecture, Engineer
## 31729 25-1021 251021 Education, Training
## 31730 15-1121 151121 Computer, Math
## 31731 15-1132 151132 Computer, Math
## 31732 15-1121 151121 Computer, Math
## 31733 15-1132 151132 Computer, Math
## 31734 43-4051 434051 Others
## 31735 19-1021 191021 Life, Physcial, Social Science
## 31736 15-1121 151121 Computer, Math
## 31737 15-1131 151131 Computer, Math
## 31738 17-2072 172072 Architecture, Engineer
## 31739 15-1132 151132 Computer, Math
## 31740 17-2071 172071 Architecture, Engineer
## 31741 15-1121 151121 Computer, Math
## 31742 15-2031 152031 Computer, Math
## 31743 15-1199 151199 Computer, Math
## 31744 15-1132 151132 Computer, Math
## 31745 15-1133 151133 Computer, Math
## 31746 15-1142 151142 Computer, Math
## 31747 15-1132 151132 Computer, Math
## 31748 15-1132 151132 Computer, Math
## 31749 25-1031 251031 Education, Training
## 31750 15-1111 151111 Computer, Math
## 31751 15-1199 151199 Computer, Math
## 31752 15-1121 151121 Computer, Math
## 31753 15-1133 151133 Computer, Math
## 31754 25-1072 251072 Education, Training
## 31755 15-1199 151199 Computer, Math
## 31756 13-2041 132041 Business, Finance
## 31757 13-1161 131161 Business, Finance
## 31758 13-2051 132051 Business, Finance
## 31759 11-2021 112021 Management
## 31760 15-1132 151132 Computer, Math
## 31761 15-1133 151133 Computer, Math
## 31762 15-1132 151132 Computer, Math
## 31763 15-1132 151132 Computer, Math
## 31764 15-1199 151199 Computer, Math
## 31765 13-1111 131111 Business, Finance
## 31766 19-3011 193011 Life, Physcial, Social Science
## 31767 15-1131 151131 Computer, Math
## 31768 15-1132 151132 Computer, Math
## 31769 15-1141 151141 Computer, Math
## 31770 13-2011 132011 Business, Finance
## 31771 17-2112 172112 Architecture, Engineer
## 31772 15-1134 151134 Computer, Math
## 31773 15-2041 152041 Computer, Math
## 31774 15-1199 151199 Computer, Math
## 31775 15-1199 151199 Computer, Math
## 31776 41-9031 419031 Sales
## 31777 15-1199 151199 Computer, Math
## 31778 15-1121 151121 Computer, Math
## 31779 15-1132 151132 Computer, Math
## 31780 15-1134 151134 Computer, Math
## 31781 15-1132 151132 Computer, Math
## 31782 15-1133 151133 Computer, Math
## 31783 15-1133 151133 Computer, Math
## 31784 15-1121 151121 Computer, Math
## 31785 15-1131 151131 Computer, Math
## 31786 15-1131 151131 Computer, Math
## 31787 21-1015 211015 Social Service
## 31788 15-1132 151132 Computer, Math
## 31789 15-1121 151121 Computer, Math
## 31790 15-1132 151132 Computer, Math
## 31791 15-1132 151132 Computer, Math
## 31792 19-4021 194021 Life, Physcial, Social Science
## 31793 15-1132 151132 Computer, Math
## 31794 15-1199 151199 Computer, Math
## 31795 15-1141 151141 Computer, Math
## 31796 15-1121 151121 Computer, Math
## 31797 15-1132 151132 Computer, Math
## 31798 11-9041 119041 Management
## 31799 15-1121 151121 Computer, Math
## 31800 15-1121 151121 Computer, Math
## 31801 15-1122 151122 Computer, Math
## 31802 15-1121 151121 Computer, Math
## 31803 15-1121 151121 Computer, Math
## 31804 29-1123 291123 Healthcare Practitioner
## 31805 17-2131 172131 Architecture, Engineer
## 31806 13-2099 132099 Business, Finance
## 31807 15-1199 151199 Computer, Math
## 31808 17-2071 172071 Architecture, Engineer
## 31809 15-1132 151132 Computer, Math
## 31810 41-9031 419031 Sales
## 31811 15-1131 151131 Computer, Math
## 31812 15-1132 151132 Computer, Math
## 31813 15-1132 151132 Computer, Math
## 31814 15-1199 151199 Computer, Math
## 31815 15-1132 151132 Computer, Math
## 31816 15-1141 151141 Computer, Math
## 31817 15-1141 151141 Computer, Math
## 31818 15-1199 151199 Computer, Math
## 31819 15-2031 152031 Computer, Math
## 31820 15-1199 151199 Computer, Math
## 31821 15-1199 151199 Computer, Math
## 31822 15-1121 151121 Computer, Math
## 31823 15-1121 151121 Computer, Math
## 31824 13-2011 132011 Business, Finance
## 31825 15-1133 151133 Computer, Math
## 31826 15-1132 151132 Computer, Math
## 31827 15-2041 152041 Computer, Math
## 31828 15-1121 151121 Computer, Math
## 31829 15-1132 151132 Computer, Math
## 31830 25-1022 251022 Education, Training
## 31831 25-9031 259031 Education, Training
## 31832 15-1133 151133 Computer, Math
## 31833 13-2011 132011 Business, Finance
## 31834 13-1051 131051 Business, Finance
## 31835 15-1121 151121 Computer, Math
## 31836 15-1141 151141 Computer, Math
## 31837 15-1199 151199 Computer, Math
## 31838 15-1121 151121 Computer, Math
## 31839 15-1131 151131 Computer, Math
## 31840 15-1132 151132 Computer, Math
## 31841 15-1132 151132 Computer, Math
## 31842 19-2031 192031 Life, Physcial, Social Science
## 31843 15-1121 151121 Computer, Math
## 31844 15-1132 151132 Computer, Math
## 31845 15-1132 151132 Computer, Math
## 31846 15-1199 151199 Computer, Math
## 31847 17-2141 172141 Architecture, Engineer
## 31848 15-1121 151121 Computer, Math
## 31849 15-1199 151199 Computer, Math
## 31850 15-1132 151132 Computer, Math
## 31851 15-1199 151199 Computer, Math
## 31852 13-2051 132051 Business, Finance
## 31853 15-1121 151121 Computer, Math
## 31854 15-1199 151199 Computer, Math
## 31855 15-1132 151132 Computer, Math
## 31856 15-1132 151132 Computer, Math
## 31857 15-1132 151132 Computer, Math
## 31858 15-1132 151132 Computer, Math
## 31859 15-1132 151132 Computer, Math
## 31860 25-2021 252021 Education, Training
## 31861 15-1134 151134 Computer, Math
## 31862 15-1132 151132 Computer, Math
## 31863 27-1022 271022 Media, Design
## 31864 15-1132 151132 Computer, Math
## 31865 15-1132 151132 Computer, Math
## 31866 15-1133 151133 Computer, Math
## 31867 15-1142 151142 Computer, Math
## 31868 15-1122 151122 Computer, Math
## 31869 41-9031 419031 Sales
## 31870 15-1121 151121 Computer, Math
## 31871 19-1012 191012 Life, Physcial, Social Science
## 31872 11-3021 113021 Management
## 31873 15-1131 151131 Computer, Math
## 31874 15-1121 151121 Computer, Math
## 31875 17-2071 172071 Architecture, Engineer
## 31876 15-1132 151132 Computer, Math
## 31877 15-1199 151199 Computer, Math
## 31878 15-1132 151132 Computer, Math
## 31879 15-1199 151199 Computer, Math
## 31880 15-1132 151132 Computer, Math
## 31881 15-1131 151131 Computer, Math
## 31882 15-1132 151132 Computer, Math
## 31883 15-1132 151132 Computer, Math
## 31884 15-1199 151199 Computer, Math
## 31885 15-1132 151132 Computer, Math
## 31886 15-1133 151133 Computer, Math
## 31887 15-1121 151121 Computer, Math
## 31888 15-1199 151199 Computer, Math
## 31889 15-1199 151199 Computer, Math
## 31890 15-1121 151121 Computer, Math
## 31891 11-3021 113021 Management
## 31892 13-2011 132011 Business, Finance
## 31893 13-1111 131111 Business, Finance
## 31894 15-1199 151199 Computer, Math
## 31895 15-1121 151121 Computer, Math
## 31896 15-1121 151121 Computer, Math
## 31897 17-2141 172141 Architecture, Engineer
## 31898 15-1133 151133 Computer, Math
## 31899 15-1131 151131 Computer, Math
## 31900 15-1132 151132 Computer, Math
## 31901 15-2031 152031 Computer, Math
## 31902 13-2011 132011 Business, Finance
## 31903 13-1111 131111 Business, Finance
## 31904 15-1132 151132 Computer, Math
## 31905 15-1132 151132 Computer, Math
## 31906 15-1121 151121 Computer, Math
## 31907 15-1199 151199 Computer, Math
## 31908 15-1132 151132 Computer, Math
## 31909 25-1032 251032 Education, Training
## 31910 15-1132 151132 Computer, Math
## 31911 25-1021 251021 Education, Training
## 31912 15-1121 151121 Computer, Math
## 31913 15-1132 151132 Computer, Math
## 31914 15-1121 151121 Computer, Math
## 31915 25-1063 251063 Education, Training
## 31916 15-1133 151133 Computer, Math
## 31917 15-1132 151132 Computer, Math
## 31918 13-1111 131111 Business, Finance
## 31919 19-1021 191021 Life, Physcial, Social Science
## 31920 27-1029 271029 Media, Design
## 31921 15-1199 151199 Computer, Math
## 31922 15-1132 151132 Computer, Math
## 31923 15-1121 151121 Computer, Math
## 31924 15-1133 151133 Computer, Math
## 31925 15-1133 151133 Computer, Math
## 31926 15-1199 151199 Computer, Math
## 31927 15-1132 151132 Computer, Math
## 31928 15-1132 151132 Computer, Math
## 31929 15-1133 151133 Computer, Math
## 31930 15-1199 151199 Computer, Math
## 31931 15-1132 151132 Computer, Math
## 31932 15-1132 151132 Computer, Math
## 31933 15-1131 151131 Computer, Math
## 31934 15-1132 151132 Computer, Math
## 31935 15-1121 151121 Computer, Math
## 31936 25-1022 251022 Education, Training
## 31937 15-2041 152041 Computer, Math
## 31938 15-1133 151133 Computer, Math
## 31939 15-1132 151132 Computer, Math
## 31940 15-1132 151132 Computer, Math
## 31941 15-1133 151133 Computer, Math
## 31942 15-1132 151132 Computer, Math
## 31943 17-2072 172072 Architecture, Engineer
## 31944 15-1132 151132 Computer, Math
## 31945 17-3011 173011 Architecture, Engineer
## 31946 15-1199 151199 Computer, Math
## 31947 11-9041 119041 Management
## 31948 15-1199 151199 Computer, Math
## 31949 15-1121 151121 Computer, Math
## 31950 25-1022 251022 Education, Training
## 31951 15-2099 152099 Computer, Math
## 31952 15-1132 151132 Computer, Math
## 31953 11-3021 113021 Management
## 31954 15-1122 151122 Computer, Math
## 31955 15-2041 152041 Computer, Math
## 31956 15-1131 151131 Computer, Math
## 31957 15-1121 151121 Computer, Math
## 31958 11-3021 113021 Management
## 31959 17-2031 172031 Architecture, Engineer
## 31960 15-1132 151132 Computer, Math
## 31961 29-2011 292011 Healthcare Practitioner
## 31962 15-1132 151132 Computer, Math
## 31963 15-1121 151121 Computer, Math
## 31964 15-1132 151132 Computer, Math
## 31965 15-1121 151121 Computer, Math
## 31966 15-1131 151131 Computer, Math
## 31967 15-1111 151111 Computer, Math
## 31968 17-2112 172112 Architecture, Engineer
## 31969 15-1132 151132 Computer, Math
## 31970 13-2011 132011 Business, Finance
## 31971 15-1134 151134 Computer, Math
## 31972 15-1132 151132 Computer, Math
## 31973 15-1121 151121 Computer, Math
## 31974 15-1131 151131 Computer, Math
## 31975 15-1132 151132 Computer, Math
## 31976 11-3051 113051 Management
## 31977 15-1199 151199 Computer, Math
## 31978 15-1132 151132 Computer, Math
## 31979 13-1111 131111 Business, Finance
## 31980 15-1199 151199 Computer, Math
## 31981 15-1133 151133 Computer, Math
## 31982 17-2071 172071 Architecture, Engineer
## 31983 15-1121 151121 Computer, Math
## 31984 15-1121 151121 Computer, Math
## 31985 15-2031 152031 Computer, Math
## 31986 15-1121 151121 Computer, Math
## 31987 15-1199 151199 Computer, Math
## 31988 13-1111 131111 Business, Finance
## 31989 15-1132 151132 Computer, Math
## 31990 15-1121 151121 Computer, Math
## 31991 15-1133 151133 Computer, Math
## 31992 17-3022 173022 Architecture, Engineer
## 31993 15-1121 151121 Computer, Math
## 31994 15-1132 151132 Computer, Math
## 31995 15-1132 151132 Computer, Math
## 31996 15-2031 152031 Computer, Math
## 31997 29-1123 291123 Healthcare Practitioner
## 31998 13-1071 131071 Business, Finance
## 31999 15-1199 151199 Computer, Math
## 32000 15-1121 151121 Computer, Math
## 32001 15-1121 151121 Computer, Math
## 32002 15-1132 151132 Computer, Math
## 32003 25-1071 251071 Education, Training
## 32004 15-1199 151199 Computer, Math
## 32005 15-1199 151199 Computer, Math
## 32006 15-1132 151132 Computer, Math
## 32007 15-1199 151199 Computer, Math
## 32008 15-1131 151131 Computer, Math
## 32009 15-1132 151132 Computer, Math
## 32010 13-1081 131081 Business, Finance
## 32011 17-2072 172072 Architecture, Engineer
## 32012 15-1132 151132 Computer, Math
## 32013 15-1131 151131 Computer, Math
## 32014 17-2141 172141 Architecture, Engineer
## 32015 15-1131 151131 Computer, Math
## 32016 29-1069 291069 Healthcare Practitioner
## 32017 13-1111 131111 Business, Finance
## 32018 13-2011 132011 Business, Finance
## 32019 15-1132 151132 Computer, Math
## 32020 15-1132 151132 Computer, Math
## 32021 15-1121 151121 Computer, Math
## 32022 29-1127 291127 Healthcare Practitioner
## 32023 11-2021 112021 Management
## 32024 11-3021 113021 Management
## 32025 15-1121 151121 Computer, Math
## 32026 13-2099 132099 Business, Finance
## 32027 19-1029 191029 Life, Physcial, Social Science
## 32028 15-1142 151142 Computer, Math
## 32029 15-1132 151132 Computer, Math
## 32030 15-1132 151132 Computer, Math
## 32031 17-2051 172051 Architecture, Engineer
## 32032 15-1132 151132 Computer, Math
## 32033 15-1132 151132 Computer, Math
## 32034 15-1132 151132 Computer, Math
## 32035 15-1132 151132 Computer, Math
## 32036 15-1133 151133 Computer, Math
## 32037 15-1199 151199 Computer, Math
## 32038 15-1132 151132 Computer, Math
## 32039 15-1132 151132 Computer, Math
## 32040 15-1132 151132 Computer, Math
## 32041 15-1199 151199 Computer, Math
## 32042 19-1012 191012 Life, Physcial, Social Science
## 32043 13-1051 131051 Business, Finance
## 32044 15-1142 151142 Computer, Math
## 32045 15-1121 151121 Computer, Math
## 32046 15-1199 151199 Computer, Math
## 32047 15-1121 151121 Computer, Math
## 32048 15-1141 151141 Computer, Math
## 32049 15-1199 151199 Computer, Math
## 32050 15-1132 151132 Computer, Math
## 32051 25-1113 251113 Education, Training
## 32052 13-1161 131161 Business, Finance
## 32053 15-1132 151132 Computer, Math
## 32054 15-1132 151132 Computer, Math
## 32055 19-1029 191029 Life, Physcial, Social Science
## 32056 11-3021 113021 Management
## 32057 15-1131 151131 Computer, Math
## 32058 13-1111 131111 Business, Finance
## 32059 15-1121 151121 Computer, Math
## 32060 15-1132 151132 Computer, Math
## 32061 15-1121 151121 Computer, Math
## 32062 15-1132 151132 Computer, Math
## 32063 11-9041 119041 Management
## 32064 13-1111 131111 Business, Finance
## 32065 27-1022 271022 Media, Design
## 32066 15-1121 151121 Computer, Math
## 32067 15-1121 151121 Computer, Math
## 32068 15-2031 152031 Computer, Math
## 32069 15-1132 151132 Computer, Math
## 32070 13-1161 131161 Business, Finance
## 32071 15-1199 151199 Computer, Math
## 32072 25-2021 252021 Education, Training
## 32073 27-1021 271021 Media, Design
## 32074 15-1131 151131 Computer, Math
## 32075 13-1111 131111 Business, Finance
## 32076 15-1132 151132 Computer, Math
## 32077 13-2011 132011 Business, Finance
## 32078 15-1121 151121 Computer, Math
## 32079 15-1142 151142 Computer, Math
## 32080 15-1134 151134 Computer, Math
## 32081 15-1132 151132 Computer, Math
## 32082 15-1132 151132 Computer, Math
## 32083 15-1132 151132 Computer, Math
## 32084 15-1121 151121 Computer, Math
## 32085 15-1132 151132 Computer, Math
## 32086 15-2031 152031 Computer, Math
## 32087 17-2031 172031 Architecture, Engineer
## 32088 13-1111 131111 Business, Finance
## 32089 17-2199 172199 Architecture, Engineer
## 32090 15-1141 151141 Computer, Math
## 32091 13-2011 132011 Business, Finance
## 32092 15-1132 151132 Computer, Math
## 32093 13-2099 132099 Business, Finance
## 32094 25-1032 251032 Education, Training
## 32095 15-1132 151132 Computer, Math
## 32096 15-2031 152031 Computer, Math
## 32097 15-1133 151133 Computer, Math
## 32098 15-1134 151134 Computer, Math
## 32099 25-1071 251071 Education, Training
## 32100 27-1014 271014 Media, Design
## 32101 15-1131 151131 Computer, Math
## 32102 15-1131 151131 Computer, Math
## 32103 19-1021 191021 Life, Physcial, Social Science
## 32104 17-2071 172071 Architecture, Engineer
## 32105 15-1134 151134 Computer, Math
## 32106 17-2141 172141 Architecture, Engineer
## 32107 15-1132 151132 Computer, Math
## 32108 25-2031 252031 Education, Training
## 32109 15-1132 151132 Computer, Math
## 32110 15-1132 151132 Computer, Math
## 32111 19-2021 192021 Life, Physcial, Social Science
## 32112 13-2011 132011 Business, Finance
## 32113 15-1131 151131 Computer, Math
## 32114 15-2041 152041 Computer, Math
## 32115 15-1133 151133 Computer, Math
## 32116 15-1121 151121 Computer, Math
## 32117 15-1131 151131 Computer, Math
## 32118 19-1021 191021 Life, Physcial, Social Science
## 32119 15-1132 151132 Computer, Math
## 32120 15-1132 151132 Computer, Math
## 32121 27-1021 271021 Media, Design
## 32122 15-1132 151132 Computer, Math
## 32123 25-1022 251022 Education, Training
## 32124 17-2141 172141 Architecture, Engineer
## 32125 13-1081 131081 Business, Finance
## 32126 17-2072 172072 Architecture, Engineer
## 32127 15-2011 152011 Computer, Math
## 32128 15-1121 151121 Computer, Math
## 32129 15-1131 151131 Computer, Math
## 32130 15-1132 151132 Computer, Math
## 32131 19-2099 192099 Life, Physcial, Social Science
## 32132 15-1132 151132 Computer, Math
## 32133 15-1132 151132 Computer, Math
## 32134 25-2022 252022 Education, Training
## 32135 25-1113 251113 Education, Training
## 32136 13-2011 132011 Business, Finance
## 32137 15-1131 151131 Computer, Math
## 32138 19-1029 191029 Life, Physcial, Social Science
## 32139 15-1199 151199 Computer, Math
## 32140 15-1132 151132 Computer, Math
## 32141 17-2112 172112 Architecture, Engineer
## 32142 15-1141 151141 Computer, Math
## 32143 15-1132 151132 Computer, Math
## 32144 25-9031 259031 Education, Training
## 32145 11-9041 119041 Management
## 32146 19-1042 191042 Life, Physcial, Social Science
## 32147 15-1199 151199 Computer, Math
## 32148 15-1132 151132 Computer, Math
## 32149 15-1121 151121 Computer, Math
## 32150 29-1123 291123 Healthcare Practitioner
## 32151 17-2111 172111 Architecture, Engineer
## 32152 15-1121 151121 Computer, Math
## 32153 15-1132 151132 Computer, Math
## 32154 15-1132 151132 Computer, Math
## 32155 23-1011 231011 Legal
## 32156 13-1111 131111 Business, Finance
## 32157 15-1133 151133 Computer, Math
## 32158 15-1199 151199 Computer, Math
## 32159 15-1122 151122 Computer, Math
## 32160 15-1141 151141 Computer, Math
## 32161 13-1071 131071 Business, Finance
## 32162 15-1132 151132 Computer, Math
## 32163 27-4032 274032 Media, Design
## 32164 15-1121 151121 Computer, Math
## 32165 15-1133 151133 Computer, Math
## 32166 11-2011 112011 Management
## 32167 15-1132 151132 Computer, Math
## 32168 15-1199 151199 Computer, Math
## 32169 13-1111 131111 Business, Finance
## 32170 19-1029 191029 Life, Physcial, Social Science
## 32171 15-1141 151141 Computer, Math
## 32172 15-1199 151199 Computer, Math
## 32173 15-1121 151121 Computer, Math
## 32174 15-1132 151132 Computer, Math
## 32175 25-2031 252031 Education, Training
## 32176 15-1199 151199 Computer, Math
## 32177 17-2141 172141 Architecture, Engineer
## 32178 13-1111 131111 Business, Finance
## 32179 15-1121 151121 Computer, Math
## 32180 13-2051 132051 Business, Finance
## 32181 15-1132 151132 Computer, Math
## 32182 13-2099 132099 Business, Finance
## 32183 17-2072 172072 Architecture, Engineer
## 32184 13-1161 131161 Business, Finance
## 32185 15-1132 151132 Computer, Math
## 32186 15-1121 151121 Computer, Math
## 32187 17-3011 173011 Architecture, Engineer
## 32188 15-1199 151199 Computer, Math
## 32189 17-2071 172071 Architecture, Engineer
## 32190 15-2041 152041 Computer, Math
## 32191 17-2051 172051 Architecture, Engineer
## 32192 15-1199 151199 Computer, Math
## 32193 15-1121 151121 Computer, Math
## 32194 11-3021 113021 Management
## 32195 15-1121 151121 Computer, Math
## 32196 15-1132 151132 Computer, Math
## 32197 11-2021 112021 Management
## 32198 15-1199 151199 Computer, Math
## 32199 15-1121 151121 Computer, Math
## 32200 15-1132 151132 Computer, Math
## 32201 15-1132 151132 Computer, Math
## 32202 19-1042 191042 Life, Physcial, Social Science
## 32203 15-1132 151132 Computer, Math
## 32204 15-1152 151152 Computer, Math
## 32205 15-1132 151132 Computer, Math
## 32206 15-1132 151132 Computer, Math
## 32207 15-1111 151111 Computer, Math
## 32208 15-1199 151199 Computer, Math
## 32209 15-1131 151131 Computer, Math
## 32210 19-1012 191012 Life, Physcial, Social Science
## 32211 13-1081 131081 Business, Finance
## 32212 15-1121 151121 Computer, Math
## 32213 17-2072 172072 Architecture, Engineer
## 32214 15-1199 151199 Computer, Math
## 32215 11-3021 113021 Management
## 32216 15-1121 151121 Computer, Math
## 32217 15-1131 151131 Computer, Math
## 32218 15-1132 151132 Computer, Math
## 32219 15-1132 151132 Computer, Math
## 32220 15-1131 151131 Computer, Math
## 32221 15-1132 151132 Computer, Math
## 32222 15-1199 151199 Computer, Math
## 32223 15-1131 151131 Computer, Math
## 32224 15-1142 151142 Computer, Math
## 32225 15-1133 151133 Computer, Math
## 32226 15-1121 151121 Computer, Math
## 32227 15-1133 151133 Computer, Math
## 32228 13-1081 131081 Business, Finance
## 32229 15-1199 151199 Computer, Math
## 32230 15-1199 151199 Computer, Math
## 32231 15-1133 151133 Computer, Math
## 32232 15-2031 152031 Computer, Math
## 32233 17-2112 172112 Architecture, Engineer
## 32234 15-2031 152031 Computer, Math
## 32235 19-1042 191042 Life, Physcial, Social Science
## 32236 25-1032 251032 Education, Training
## 32237 15-1132 151132 Computer, Math
## 32238 15-1132 151132 Computer, Math
## 32239 15-1132 151132 Computer, Math
## 32240 15-1131 151131 Computer, Math
## 32241 25-1126 251126 Education, Training
## 32242 17-2112 172112 Architecture, Engineer
## 32243 15-1132 151132 Computer, Math
## 32244 29-2011 292011 Healthcare Practitioner
## 32245 13-1111 131111 Business, Finance
## 32246 15-1132 151132 Computer, Math
## 32247 15-1121 151121 Computer, Math
## 32248 15-1132 151132 Computer, Math
## 32249 11-2022 112022 Management
## 32250 19-3011 193011 Life, Physcial, Social Science
## 32251 15-1142 151142 Computer, Math
## 32252 15-1131 151131 Computer, Math
## 32253 15-1132 151132 Computer, Math
## 32254 15-1199 151199 Computer, Math
## 32255 15-1199 151199 Computer, Math
## 32256 15-1121 151121 Computer, Math
## 32257 15-1132 151132 Computer, Math
## 32258 15-1142 151142 Computer, Math
## 32259 15-1132 151132 Computer, Math
## 32260 13-1111 131111 Business, Finance
## 32261 15-1121 151121 Computer, Math
## 32262 15-1152 151152 Computer, Math
## 32263 15-1132 151132 Computer, Math
## 32264 15-1143 151143 Computer, Math
## 32265 13-1111 131111 Business, Finance
## 32266 15-1121 151121 Computer, Math
## 32267 15-1121 151121 Computer, Math
## 32268 15-1199 151199 Computer, Math
## 32269 15-1121 151121 Computer, Math
## 32270 17-2199 172199 Architecture, Engineer
## 32271 15-1132 151132 Computer, Math
## 32272 17-2141 172141 Architecture, Engineer
## 32273 15-1132 151132 Computer, Math
## 32274 15-1132 151132 Computer, Math
## 32275 29-1069 291069 Healthcare Practitioner
## 32276 15-1121 151121 Computer, Math
## 32277 13-2011 132011 Business, Finance
## 32278 15-1131 151131 Computer, Math
## 32279 15-2041 152041 Computer, Math
## 32280 15-1132 151132 Computer, Math
## 32281 15-1132 151132 Computer, Math
## 32282 15-1199 151199 Computer, Math
## 32283 15-1132 151132 Computer, Math
## 32284 15-1132 151132 Computer, Math
## 32285 15-1132 151132 Computer, Math
## 32286 13-1081 131081 Business, Finance
## 32287 15-1142 151142 Computer, Math
## 32288 15-1131 151131 Computer, Math
## 32289 13-1111 131111 Business, Finance
## 32290 15-1132 151132 Computer, Math
## 32291 13-2099 132099 Business, Finance
## 32292 15-1132 151132 Computer, Math
## 32293 15-1132 151132 Computer, Math
## 32294 15-1121 151121 Computer, Math
## 32295 15-1121 151121 Computer, Math
## 32296 15-1121 151121 Computer, Math
## 32297 29-1069 291069 Healthcare Practitioner
## 32298 19-4099 194099 Life, Physcial, Social Science
## 32299 15-1132 151132 Computer, Math
## 32300 15-1132 151132 Computer, Math
## 32301 15-1199 151199 Computer, Math
## 32302 13-2051 132051 Business, Finance
## 32303 15-1199 151199 Computer, Math
## 32304 13-2011 132011 Business, Finance
## 32305 13-2051 132051 Business, Finance
## 32306 13-2051 132051 Business, Finance
## 32307 19-2031 192031 Life, Physcial, Social Science
## 32308 15-1132 151132 Computer, Math
## 32309 19-1021 191021 Life, Physcial, Social Science
## 32310 19-2031 192031 Life, Physcial, Social Science
## 32311 15-1132 151132 Computer, Math
## 32312 19-2012 192012 Life, Physcial, Social Science
## 32313 15-1121 151121 Computer, Math
## 32314 29-1041 291041 Healthcare Practitioner
## 32315 15-1133 151133 Computer, Math
## 32316 15-2031 152031 Computer, Math
## 32317 15-1199 151199 Computer, Math
## 32318 15-1132 151132 Computer, Math
## 32319 15-1199 151199 Computer, Math
## 32320 15-1132 151132 Computer, Math
## 32321 11-3021 113021 Management
## 32322 15-1132 151132 Computer, Math
## 32323 17-2072 172072 Architecture, Engineer
## 32324 15-1121 151121 Computer, Math
## 32325 15-1131 151131 Computer, Math
## 32326 27-1024 271024 Media, Design
## 32327 15-1121 151121 Computer, Math
## 32328 15-1131 151131 Computer, Math
## 32329 15-1132 151132 Computer, Math
## 32330 15-1132 151132 Computer, Math
## 32331 15-1132 151132 Computer, Math
## 32332 19-3011 193011 Life, Physcial, Social Science
## 32333 15-1132 151132 Computer, Math
## 32334 13-1111 131111 Business, Finance
## 32335 13-1161 131161 Business, Finance
## 32336 11-3051 113051 Management
## 32337 15-1132 151132 Computer, Math
## 32338 15-1132 151132 Computer, Math
## 32339 11-9021 119021 Management
## 32340 15-1132 151132 Computer, Math
## 32341 15-1121 151121 Computer, Math
## 32342 15-1199 151199 Computer, Math
## 32343 15-1132 151132 Computer, Math
## 32344 15-1199 151199 Computer, Math
## 32345 15-1132 151132 Computer, Math
## 32346 15-1132 151132 Computer, Math
## 32347 23-1011 231011 Legal
## 32348 15-1133 151133 Computer, Math
## 32349 17-2041 172041 Architecture, Engineer
## 32350 15-1199 151199 Computer, Math
## 32351 15-1132 151132 Computer, Math
## 32352 15-1199 151199 Computer, Math
## 32353 15-1133 151133 Computer, Math
## 32354 15-1199 151199 Computer, Math
## 32355 15-1132 151132 Computer, Math
## 32356 15-1132 151132 Computer, Math
## 32357 15-1132 151132 Computer, Math
## 32358 15-1132 151132 Computer, Math
## 32359 15-1132 151132 Computer, Math
## 32360 15-1132 151132 Computer, Math
## 32361 17-2071 172071 Architecture, Engineer
## 32362 15-1199 151199 Computer, Math
## 32363 11-9041 119041 Management
## 32364 27-1024 271024 Media, Design
## 32365 15-1132 151132 Computer, Math
## 32366 15-1132 151132 Computer, Math
## 32367 15-1132 151132 Computer, Math
## 32368 15-1132 151132 Computer, Math
## 32369 15-1121 151121 Computer, Math
## 32370 15-1132 151132 Computer, Math
## 32371 15-1132 151132 Computer, Math
## 32372 13-1161 131161 Business, Finance
## 32373 15-1199 151199 Computer, Math
## 32374 15-1132 151132 Computer, Math
## 32375 17-2041 172041 Architecture, Engineer
## 32376 15-1132 151132 Computer, Math
## 32377 15-1111 151111 Computer, Math
## 32378 27-1021 271021 Media, Design
## 32379 15-1121 151121 Computer, Math
## 32380 15-1132 151132 Computer, Math
## 32381 15-1199 151199 Computer, Math
## 32382 15-1132 151132 Computer, Math
## 32383 29-1041 291041 Healthcare Practitioner
## 32384 15-1132 151132 Computer, Math
## 32385 15-1034 151034 Computer, Math
## 32386 15-1132 151132 Computer, Math
## 32387 15-1199 151199 Computer, Math
## 32388 15-1121 151121 Computer, Math
## 32389 15-1132 151132 Computer, Math
## 32390 15-1199 151199 Computer, Math
## 32391 15-1132 151132 Computer, Math
## 32392 15-1132 151132 Computer, Math
## 32393 13-1071 131071 Business, Finance
## 32394 15-1132 151132 Computer, Math
## 32395 15-1199 151199 Computer, Math
## 32396 15-1199 151199 Computer, Math
## 32397 15-1121 151121 Computer, Math
## 32398 15-1132 151132 Computer, Math
## 32399 15-1121 151121 Computer, Math
## 32400 15-1132 151132 Computer, Math
## 32401 11-3021 113021 Management
## 32402 15-1121 151121 Computer, Math
## 32403 15-1141 151141 Computer, Math
## 32404 15-1132 151132 Computer, Math
## 32405 15-1199 151199 Computer, Math
## 32406 15-1132 151132 Computer, Math
## 32407 15-1152 151152 Computer, Math
## 32408 17-2051 172051 Architecture, Engineer
## 32409 17-2141 172141 Architecture, Engineer
## 32410 15-1142 151142 Computer, Math
## 32411 15-1199 151199 Computer, Math
## 32412 15-1121 151121 Computer, Math
## 32413 15-1132 151132 Computer, Math
## 32414 29-1069 291069 Healthcare Practitioner
## 32415 15-1133 151133 Computer, Math
## 32416 15-1132 151132 Computer, Math
## 32417 15-1132 151132 Computer, Math
## 32418 15-1131 151131 Computer, Math
## 32419 17-2072 172072 Architecture, Engineer
## 32420 15-1199 151199 Computer, Math
## 32421 15-1142 151142 Computer, Math
## 32422 15-1199 151199 Computer, Math
## 32423 15-1199 151199 Computer, Math
## 32424 15-1132 151132 Computer, Math
## 32425 15-1131 151131 Computer, Math
## 32426 29-1123 291123 Healthcare Practitioner
## 32427 15-1199 151199 Computer, Math
## 32428 15-1132 151132 Computer, Math
## 32429 15-1131 151131 Computer, Math
## 32430 15-1132 151132 Computer, Math
## 32431 15-1199 151199 Computer, Math
## 32432 15-1199 151199 Computer, Math
## 32433 15-1132 151132 Computer, Math
## 32434 17-2071 172071 Architecture, Engineer
## 32435 15-1132 151132 Computer, Math
## 32436 15-1121 151121 Computer, Math
## 32437 15-1131 151131 Computer, Math
## 32438 17-2141 172141 Architecture, Engineer
## 32439 15-1199 151199 Computer, Math
## 32440 15-1132 151132 Computer, Math
## 32441 13-2011 132011 Business, Finance
## 32442 15-1121 151121 Computer, Math
## 32443 15-1121 151121 Computer, Math
## 32444 15-1199 151199 Computer, Math
## 32445 25-1121 251121 Education, Training
## 32446 25-1071 251071 Education, Training
## 32447 15-1132 151132 Computer, Math
## 32448 15-1132 151132 Computer, Math
## 32449 15-2031 152031 Computer, Math
## 32450 17-2141 172141 Architecture, Engineer
## 32451 29-2011 292011 Healthcare Practitioner
## 32452 15-1132 151132 Computer, Math
## 32453 15-1199 151199 Computer, Math
## 32454 15-2021 152021 Computer, Math
## 32455 15-1133 151133 Computer, Math
## 32456 15-2031 152031 Computer, Math
## 32457 15-1132 151132 Computer, Math
## 32458 15-1141 151141 Computer, Math
## 32459 15-1141 151141 Computer, Math
## 32460 15-1199 151199 Computer, Math
## 32461 15-1121 151121 Computer, Math
## 32462 13-2011 132011 Business, Finance
## 32463 15-1132 151132 Computer, Math
## 32464 15-1121 151121 Computer, Math
## 32465 15-1131 151131 Computer, Math
## 32466 15-1121 151121 Computer, Math
## 32467 15-1121 151121 Computer, Math
## 32468 15-1199 151199 Computer, Math
## 32469 15-1133 151133 Computer, Math
## 32470 15-2031 152031 Computer, Math
## 32471 15-1132 151132 Computer, Math
## 32472 15-1199 151199 Computer, Math
## 32473 15-1132 151132 Computer, Math
## 32474 17-2072 172072 Architecture, Engineer
## 32475 17-2141 172141 Architecture, Engineer
## 32476 15-1121 151121 Computer, Math
## 32477 15-1121 151121 Computer, Math
## 32478 15-1132 151132 Computer, Math
## 32479 15-1131 151131 Computer, Math
## 32480 15-1199 151199 Computer, Math
## 32481 11-3011 113011 Management
## 32482 15-1121 151121 Computer, Math
## 32483 11-9121 119121 Management
## 32484 15-1132 151132 Computer, Math
## 32485 11-9041 119041 Management
## 32486 15-1132 151132 Computer, Math
## 32487 13-2051 132051 Business, Finance
## 32488 15-1121 151121 Computer, Math
## 32489 15-1142 151142 Computer, Math
## 32490 15-1199 151199 Computer, Math
## 32491 15-1133 151133 Computer, Math
## 32492 15-1132 151132 Computer, Math
## 32493 15-1121 151121 Computer, Math
## 32494 15-1141 151141 Computer, Math
## 32495 15-1121 151121 Computer, Math
## 32496 15-1121 151121 Computer, Math
## 32497 15-1142 151142 Computer, Math
## 32498 25-1121 251121 Education, Training
## 32499 19-1012 191012 Life, Physcial, Social Science
## 32500 13-1111 131111 Business, Finance
## 32501 13-1161 131161 Business, Finance
## 32502 13-2011 132011 Business, Finance
## 32503 17-2112 172112 Architecture, Engineer
## 32504 15-1132 151132 Computer, Math
## 32505 15-1121 151121 Computer, Math
## 32506 15-1132 151132 Computer, Math
## 32507 15-2031 152031 Computer, Math
## 32508 15-1199 151199 Computer, Math
## 32509 15-1142 151142 Computer, Math
## 32510 15-1121 151121 Computer, Math
## 32511 15-1132 151132 Computer, Math
## 32512 25-1032 251032 Education, Training
## 32513 15-1132 151132 Computer, Math
## 32514 15-1132 151132 Computer, Math
## 32515 15-1132 151132 Computer, Math
## 32516 17-2141 172141 Architecture, Engineer
## 32517 19-2021 192021 Life, Physcial, Social Science
## 32518 15-1134 151134 Computer, Math
## 32519 19-1042 191042 Life, Physcial, Social Science
## 32520 15-1199 151199 Computer, Math
## 32521 15-1121 151121 Computer, Math
## 32522 23-1011 231011 Legal
## 32523 15-1132 151132 Computer, Math
## 32524 15-1132 151132 Computer, Math
## 32525 11-9121 119121 Management
## 32526 23-1011 231011 Legal
## 32527 15-2031 152031 Computer, Math
## 32528 15-1111 151111 Computer, Math
## 32529 15-1121 151121 Computer, Math
## 32530 15-1141 151141 Computer, Math
## 32531 25-1071 251071 Education, Training
## 32532 17-2072 172072 Architecture, Engineer
## 32533 15-2041 152041 Computer, Math
## 32534 15-2031 152031 Computer, Math
## 32535 15-1121 151121 Computer, Math
## 32536 15-1132 151132 Computer, Math
## 32537 27-2031 272031 Media, Design
## 32538 17-2072 172072 Architecture, Engineer
## 32539 15-1121 151121 Computer, Math
## 32540 15-1142 151142 Computer, Math
## 32541 29-1069 291069 Healthcare Practitioner
## 32542 15-1132 151132 Computer, Math
## 32543 15-1132 151132 Computer, Math
## 32544 15-1132 151132 Computer, Math
## 32545 15-1131 151131 Computer, Math
## 32546 29-1122 291122 Healthcare Practitioner
## 32547 15-1121 151121 Computer, Math
## 32548 15-1132 151132 Computer, Math
## 32549 15-1199 151199 Computer, Math
## 32550 15-1199 151199 Computer, Math
## 32551 15-2021 152021 Computer, Math
## 32552 13-1111 131111 Business, Finance
## 32553 15-1121 151121 Computer, Math
## 32554 15-1133 151133 Computer, Math
## 32555 11-3071 113071 Management
## 32556 13-1161 131161 Business, Finance
## 32557 15-1132 151132 Computer, Math
## 32558 15-1132 151132 Computer, Math
## 32559 15-1121 151121 Computer, Math
## 32560 15-1132 151132 Computer, Math
## 32561 15-1199 151199 Computer, Math
## 32562 15-1132 151132 Computer, Math
## 32563 27-1024 271024 Media, Design
## 32564 25-1032 251032 Education, Training
## 32565 15-1131 151131 Computer, Math
## 32566 15-1132 151132 Computer, Math
## 32567 15-2041 152041 Computer, Math
## 32568 15-1122 151122 Computer, Math
## 32569 25-2059 252059 Education, Training
## 32570 15-1121 151121 Computer, Math
## 32571 27-1027 271027 Media, Design
## 32572 15-1132 151132 Computer, Math
## 32573 15-1132 151132 Computer, Math
## 32574 17-2141 172141 Architecture, Engineer
## 32575 13-1111 131111 Business, Finance
## 32576 13-2051 132051 Business, Finance
## 32577 15-1142 151142 Computer, Math
## 32578 15-1199 151199 Computer, Math
## 32579 15-1199 151199 Computer, Math
## 32580 15-1121 151121 Computer, Math
## 32581 15-1132 151132 Computer, Math
## 32582 15-1132 151132 Computer, Math
## 32583 15-1132 151132 Computer, Math
## 32584 15-1133 151133 Computer, Math
## 32585 13-1161 131161 Business, Finance
## 32586 13-1161 131161 Business, Finance
## 32587 15-1132 151132 Computer, Math
## 32588 15-1132 151132 Computer, Math
## 32589 15-1132 151132 Computer, Math
## 32590 13-1111 131111 Business, Finance
## 32591 27-1021 271021 Media, Design
## 32592 11-2021 112021 Management
## 32593 15-1132 151132 Computer, Math
## 32594 15-1132 151132 Computer, Math
## 32595 15-1142 151142 Computer, Math
## 32596 15-1141 151141 Computer, Math
## 32597 17-2072 172072 Architecture, Engineer
## 32598 15-1132 151132 Computer, Math
## 32599 15-1132 151132 Computer, Math
## 32600 15-1132 151132 Computer, Math
## 32601 15-1133 151133 Computer, Math
## 32602 15-1132 151132 Computer, Math
## 32603 15-1132 151132 Computer, Math
## 32604 15-1132 151132 Computer, Math
## 32605 15-1132 151132 Computer, Math
## 32606 19-1042 191042 Life, Physcial, Social Science
## 32607 15-1132 151132 Computer, Math
## 32608 15-1132 151132 Computer, Math
## 32609 15-1132 151132 Computer, Math
## 32610 15-2031 152031 Computer, Math
## 32611 15-1199 151199 Computer, Math
## 32612 15-1132 151132 Computer, Math
## 32613 15-1132 151132 Computer, Math
## 32614 17-2141 172141 Architecture, Engineer
## 32615 15-1132 151132 Computer, Math
## 32616 11-9199 119199 Management
## 32617 11-2021 112021 Management
## 32618 15-1132 151132 Computer, Math
## 32619 15-1199 151199 Computer, Math
## 32620 17-2112 172112 Architecture, Engineer
## 32621 15-1142 151142 Computer, Math
## 32622 15-1121 151121 Computer, Math
## 32623 15-1199 151199 Computer, Math
## 32624 15-1132 151132 Computer, Math
## 32625 15-1199 151199 Computer, Math
## 32626 27-1022 271022 Media, Design
## 32627 15-2031 152031 Computer, Math
## 32628 15-2031 152031 Computer, Math
## 32629 15-2031 152031 Computer, Math
## 32630 15-1132 151132 Computer, Math
## 32631 17-2051 172051 Architecture, Engineer
## 32632 17-2072 172072 Architecture, Engineer
## 32633 15-1121 151121 Computer, Math
## 32634 19-1021 191021 Life, Physcial, Social Science
## 32635 15-1133 151133 Computer, Math
## 32636 15-1199 151199 Computer, Math
## 32637 19-3011 193011 Life, Physcial, Social Science
## 32638 15-1132 151132 Computer, Math
## 32639 15-1132 151132 Computer, Math
## 32640 15-1111 151111 Computer, Math
## 32641 15-2031 152031 Computer, Math
## 32642 15-1131 151131 Computer, Math
## 32643 15-1132 151132 Computer, Math
## 32644 15-1132 151132 Computer, Math
## 32645 17-2141 172141 Architecture, Engineer
## 32646 15-1132 151132 Computer, Math
## 32647 15-1199 151199 Computer, Math
## 32648 15-1199 151199 Computer, Math
## 32649 25-1011 251011 Education, Training
## 32650 15-1199 151199 Computer, Math
## 32651 15-1132 151132 Computer, Math
## 32652 15-1132 151132 Computer, Math
## 32653 15-1132 151132 Computer, Math
## 32654 17-2071 172071 Architecture, Engineer
## 32655 15-1121 151121 Computer, Math
## 32656 15-1131 151131 Computer, Math
## 32657 13-1161 131161 Business, Finance
## 32658 15-1199 151199 Computer, Math
## 32659 15-1132 151132 Computer, Math
## 32660 15-1131 151131 Computer, Math
## 32661 15-2011 152011 Computer, Math
## 32662 23-1011 231011 Legal
## 32663 15-1121 151121 Computer, Math
## 32664 15-1142 151142 Computer, Math
## 32665 17-2112 172112 Architecture, Engineer
## 32666 13-1111 131111 Business, Finance
## 32667 17-2072 172072 Architecture, Engineer
## 32668 25-1071 251071 Education, Training
## 32669 15-1132 151132 Computer, Math
## 32670 19-1029 191029 Life, Physcial, Social Science
## 32671 15-1132 151132 Computer, Math
## 32672 13-2011 132011 Business, Finance
## 32673 15-1142 151142 Computer, Math
## 32674 13-2041 132041 Business, Finance
## 32675 15-1132 151132 Computer, Math
## 32676 15-1133 151133 Computer, Math
## 32677 15-1141 151141 Computer, Math
## 32678 15-1131 151131 Computer, Math
## 32679 15-1199 151199 Computer, Math
## 32680 15-1121 151121 Computer, Math
## 32681 15-1132 151132 Computer, Math
## 32682 15-1132 151132 Computer, Math
## 32683 25-2021 252021 Education, Training
## 32684 17-2051 172051 Architecture, Engineer
## 32685 15-1111 151111 Computer, Math
## 32686 15-1133 151133 Computer, Math
## 32687 15-1132 151132 Computer, Math
## 32688 15-1199 151199 Computer, Math
## 32689 15-1121 151121 Computer, Math
## 32690 15-1132 151132 Computer, Math
## 32691 15-1121 151121 Computer, Math
## 32692 15-1132 151132 Computer, Math
## 32693 15-1132 151132 Computer, Math
## 32694 29-2011 292011 Healthcare Practitioner
## 32695 15-1132 151132 Computer, Math
## 32696 15-1131 151131 Computer, Math
## 32697 13-2051 132051 Business, Finance
## 32698 15-1132 151132 Computer, Math
## 32699 13-1199 131199 Business, Finance
## 32700 15-1121 151121 Computer, Math
## 32701 13-1199 131199 Business, Finance
## 32702 11-3021 113021 Management
## 32703 15-1121 151121 Computer, Math
## 32704 17-2141 172141 Architecture, Engineer
## 32705 15-1199 151199 Computer, Math
## 32706 15-1111 151111 Computer, Math
## 32707 15-1132 151132 Computer, Math
## 32708 15-1121 151121 Computer, Math
## 32709 15-2031 152031 Computer, Math
## 32710 15-1199 151199 Computer, Math
## 32711 15-1132 151132 Computer, Math
## 32712 15-1132 151132 Computer, Math
## 32713 11-3071 113071 Management
## 32714 15-1131 151131 Computer, Math
## 32715 15-1141 151141 Computer, Math
## 32716 13-2099 132099 Business, Finance
## 32717 15-2031 152031 Computer, Math
## 32718 15-1121 151121 Computer, Math
## 32719 15-1132 151132 Computer, Math
## 32720 15-1052 151052 Computer, Math
## 32721 15-1132 151132 Computer, Math
## 32722 15-1131 151131 Computer, Math
## 32723 25-1021 251021 Education, Training
## 32724 15-1199 151199 Computer, Math
## 32725 15-1131 151131 Computer, Math
## 32726 15-1199 151199 Computer, Math
## 32727 15-1132 151132 Computer, Math
## 32728 15-2031 152031 Computer, Math
## 32729 15-1132 151132 Computer, Math
## 32730 17-2051 172051 Architecture, Engineer
## 32731 25-9031 259031 Education, Training
## 32732 15-1132 151132 Computer, Math
## 32733 15-1121 151121 Computer, Math
## 32734 15-1199 151199 Computer, Math
## 32735 15-1121 151121 Computer, Math
## 32736 15-1132 151132 Computer, Math
## 32737 13-2051 132051 Business, Finance
## 32738 15-1132 151132 Computer, Math
## 32739 13-1111 131111 Business, Finance
## 32740 25-1022 251022 Education, Training
## 32741 15-1132 151132 Computer, Math
## 32742 15-1132 151132 Computer, Math
## 32743 15-1199 151199 Computer, Math
## 32744 15-1132 151132 Computer, Math
## 32745 17-2131 172131 Architecture, Engineer
## 32746 15-1199 151199 Computer, Math
## 32747 13-2051 132051 Business, Finance
## 32748 15-1133 151133 Computer, Math
## 32749 15-2041 152041 Computer, Math
## 32750 15-1132 151132 Computer, Math
## 32751 13-1111 131111 Business, Finance
## 32752 17-1011 171011 Architecture, Engineer
## 32753 15-1133 151133 Computer, Math
## 32754 15-1132 151132 Computer, Math
## 32755 15-1199 151199 Computer, Math
## 32756 15-1199 151199 Computer, Math
## 32757 15-1199 151199 Computer, Math
## 32758 15-1132 151132 Computer, Math
## 32759 13-1111 131111 Business, Finance
## 32760 15-1132 151132 Computer, Math
## 32761 15-1199 151199 Computer, Math
## 32762 15-1132 151132 Computer, Math
## 32763 29-1069 291069 Healthcare Practitioner
## 32764 25-1063 251063 Education, Training
## 32765 15-1132 151132 Computer, Math
## 32766 15-1132 151132 Computer, Math
## 32767 15-1132 151132 Computer, Math
## 32768 11-2021 112021 Management
## 32769 15-1132 151132 Computer, Math
## 32770 15-1132 151132 Computer, Math
## 32771 25-1011 251011 Education, Training
## 32772 15-1132 151132 Computer, Math
## 32773 15-1132 151132 Computer, Math
## 32774 13-2011 132011 Business, Finance
## 32775 13-1161 131161 Business, Finance
## 32776 15-1121 151121 Computer, Math
## 32777 15-1132 151132 Computer, Math
## 32778 19-1029 191029 Life, Physcial, Social Science
## 32779 15-1141 151141 Computer, Math
## 32780 15-1122 151122 Computer, Math
## 32781 15-1121 151121 Computer, Math
## 32782 15-1132 151132 Computer, Math
## 32783 15-1199 151199 Computer, Math
## 32784 13-1161 131161 Business, Finance
## 32785 15-1199 151199 Computer, Math
## 32786 17-2141 172141 Architecture, Engineer
## 32787 15-1121 151121 Computer, Math
## 32788 15-1199 151199 Computer, Math
## 32789 15-1132 151132 Computer, Math
## 32790 15-1199 151199 Computer, Math
## 32791 15-1121 151121 Computer, Math
## 32792 15-1199 151199 Computer, Math
## 32793 15-1121 151121 Computer, Math
## 32794 15-1199 151199 Computer, Math
## 32795 29-1171 291171 Healthcare Practitioner
## 32796 29-1122 291122 Healthcare Practitioner
## 32797 15-1132 151132 Computer, Math
## 32798 15-1121 151121 Computer, Math
## 32799 27-3031 273031 Media, Design
## 32800 17-1011 171011 Architecture, Engineer
## 32801 13-2099 132099 Business, Finance
## 32802 17-2199 172199 Architecture, Engineer
## 32803 15-1132 151132 Computer, Math
## 32804 15-1199 151199 Computer, Math
## 32805 15-1199 151199 Computer, Math
## 32806 15-1132 151132 Computer, Math
## 32807 29-1199 291199 Healthcare Practitioner
## 32808 29-1069 291069 Healthcare Practitioner
## 32809 15-1132 151132 Computer, Math
## 32810 15-1132 151132 Computer, Math
## 32811 15-1132 151132 Computer, Math
## 32812 15-1199 151199 Computer, Math
## 32813 15-1141 151141 Computer, Math
## 32814 15-1132 151132 Computer, Math
## 32815 15-1142 151142 Computer, Math
## 32816 15-1132 151132 Computer, Math
## 32817 19-2031 192031 Life, Physcial, Social Science
## 32818 15-1121 151121 Computer, Math
## 32819 15-2041 152041 Computer, Math
## 32820 15-1199 151199 Computer, Math
## 32821 15-1199 151199 Computer, Math
## 32822 15-1199 151199 Computer, Math
## 32823 15-1132 151132 Computer, Math
## 32824 19-2031 192031 Life, Physcial, Social Science
## 32825 15-1199 151199 Computer, Math
## 32826 25-1032 251032 Education, Training
## 32827 15-1199 151199 Computer, Math
## 32828 15-1131 151131 Computer, Math
## 32829 15-1132 151132 Computer, Math
## 32830 15-1132 151132 Computer, Math
## 32831 15-1134 151134 Computer, Math
## 32832 19-2032 192032 Life, Physcial, Social Science
## 32833 15-1121 151121 Computer, Math
## 32834 15-1142 151142 Computer, Math
## 32835 15-1199 151199 Computer, Math
## 32836 15-1132 151132 Computer, Math
## 32837 13-1071 131071 Business, Finance
## 32838 15-1199 151199 Computer, Math
## 32839 17-2199 172199 Architecture, Engineer
## 32840 15-2031 152031 Computer, Math
## 32841 15-1199 151199 Computer, Math
## 32842 15-1199 151199 Computer, Math
## 32843 15-1199 151199 Computer, Math
## 32844 19-3099 193099 Life, Physcial, Social Science
## 32845 15-1199 151199 Computer, Math
## 32846 15-1199 151199 Computer, Math
## 32847 11-3031 113031 Management
## 32848 15-1132 151132 Computer, Math
## 32849 15-1132 151132 Computer, Math
## 32850 15-1121 151121 Computer, Math
## 32851 15-1131 151131 Computer, Math
## 32852 11-3031 113031 Management
## 32853 15-2031 152031 Computer, Math
## 32854 15-1199 151199 Computer, Math
## 32855 29-1123 291123 Healthcare Practitioner
## 32856 15-2041 152041 Computer, Math
## 32857 15-1121 151121 Computer, Math
## 32858 15-1199 151199 Computer, Math
## 32859 19-1021 191021 Life, Physcial, Social Science
## 32860 15-1132 151132 Computer, Math
## 32861 15-1131 151131 Computer, Math
## 32862 15-1143 151143 Computer, Math
## 32863 15-1132 151132 Computer, Math
## 32864 15-1121 151121 Computer, Math
## 32865 15-1132 151132 Computer, Math
## 32866 15-1132 151132 Computer, Math
## 32867 15-1133 151133 Computer, Math
## 32868 29-1123 291123 Healthcare Practitioner
## 32869 15-1199 151199 Computer, Math
## 32870 15-1199 151199 Computer, Math
## 32871 15-1132 151132 Computer, Math
## 32872 15-1142 151142 Computer, Math
## 32873 13-2099 132099 Business, Finance
## 32874 15-1132 151132 Computer, Math
## 32875 15-1131 151131 Computer, Math
## 32876 15-1199 151199 Computer, Math
## 32877 15-1131 151131 Computer, Math
## 32878 15-1132 151132 Computer, Math
## 32879 17-2051 172051 Architecture, Engineer
## 32880 15-1132 151132 Computer, Math
## 32881 15-1132 151132 Computer, Math
## 32882 15-1132 151132 Computer, Math
## 32883 15-1199 151199 Computer, Math
## 32884 15-1121 151121 Computer, Math
## 32885 15-1199 151199 Computer, Math
## 32886 15-1199 151199 Computer, Math
## 32887 11-3021 113021 Management
## 32888 15-1131 151131 Computer, Math
## 32889 15-1199 151199 Computer, Math
## 32890 15-1133 151133 Computer, Math
## 32891 15-1132 151132 Computer, Math
## 32892 15-1132 151132 Computer, Math
## 32893 25-1052 251052 Education, Training
## 32894 15-1121 151121 Computer, Math
## 32895 15-1132 151132 Computer, Math
## 32896 13-2011 132011 Business, Finance
## 32897 27-1014 271014 Media, Design
## 32898 15-1121 151121 Computer, Math
## 32899 15-1141 151141 Computer, Math
## 32900 13-1161 131161 Business, Finance
## 32901 15-1199 151199 Computer, Math
## 32902 15-1141 151141 Computer, Math
## 32903 15-1131 151131 Computer, Math
## 32904 15-1199 151199 Computer, Math
## 32905 15-1132 151132 Computer, Math
## 32906 15-1132 151132 Computer, Math
## 32907 15-1133 151133 Computer, Math
## 32908 15-1132 151132 Computer, Math
## 32909 17-2072 172072 Architecture, Engineer
## 32910 15-1132 151132 Computer, Math
## 32911 15-1131 151131 Computer, Math
## 32912 13-1111 131111 Business, Finance
## 32913 19-1042 191042 Life, Physcial, Social Science
## 32914 15-1132 151132 Computer, Math
## 32915 15-1121 151121 Computer, Math
## 32916 15-1141 151141 Computer, Math
## 32917 17-3011 173011 Architecture, Engineer
## 32918 13-2051 132051 Business, Finance
## 32919 19-4041 194041 Life, Physcial, Social Science
## 32920 13-1111 131111 Business, Finance
## 32921 15-1132 151132 Computer, Math
## 32922 13-1111 131111 Business, Finance
## 32923 15-1132 151132 Computer, Math
## 32924 15-1121 151121 Computer, Math
## 32925 15-1142 151142 Computer, Math
## 32926 15-1132 151132 Computer, Math
## 32927 15-1132 151132 Computer, Math
## 32928 15-1132 151132 Computer, Math
## 32929 15-1132 151132 Computer, Math
## 32930 15-1131 151131 Computer, Math
## 32931 15-1134 151134 Computer, Math
## 32932 15-1121 151121 Computer, Math
## 32933 13-2011 132011 Business, Finance
## 32934 15-1133 151133 Computer, Math
## 32935 21-1023 211023 Social Service
## 32936 25-1011 251011 Education, Training
## 32937 15-1132 151132 Computer, Math
## 32938 17-2072 172072 Architecture, Engineer
## 32939 15-1132 151132 Computer, Math
## 32940 15-1132 151132 Computer, Math
## 32941 13-1111 131111 Business, Finance
## 32942 15-1121 151121 Computer, Math
## 32943 15-1199 151199 Computer, Math
## 32944 15-1121 151121 Computer, Math
## 32945 15-1121 151121 Computer, Math
## 32946 15-1132 151132 Computer, Math
## 32947 17-2199 172199 Architecture, Engineer
## 32948 15-1132 151132 Computer, Math
## 32949 13-1111 131111 Business, Finance
## 32950 29-1069 291069 Healthcare Practitioner
## 32951 15-1121 151121 Computer, Math
## 32952 15-1132 151132 Computer, Math
## 32953 15-1132 151132 Computer, Math
## 32954 11-3021 113021 Management
## 32955 15-1199 151199 Computer, Math
## 32956 15-1132 151132 Computer, Math
## 32957 15-1121 151121 Computer, Math
## 32958 15-1132 151132 Computer, Math
## 32959 15-1132 151132 Computer, Math
## 32960 15-1199 151199 Computer, Math
## 32961 15-1131 151131 Computer, Math
## 32962 15-1142 151142 Computer, Math
## 32963 15-1132 151132 Computer, Math
## 32964 15-1199 151199 Computer, Math
## 32965 13-2011 132011 Business, Finance
## 32966 17-2199 172199 Architecture, Engineer
## 32967 41-9031 419031 Sales
## 32968 15-1121 151121 Computer, Math
## 32969 15-1121 151121 Computer, Math
## 32970 15-1141 151141 Computer, Math
## 32971 13-1161 131161 Business, Finance
## 32972 15-1121 151121 Computer, Math
## 32973 15-1131 151131 Computer, Math
## 32974 11-3021 113021 Management
## 32975 15-1132 151132 Computer, Math
## 32976 13-2051 132051 Business, Finance
## 32977 15-1132 151132 Computer, Math
## 32978 15-1121 151121 Computer, Math
## 32979 15-1132 151132 Computer, Math
## 32980 15-1132 151132 Computer, Math
## 32981 19-1021 191021 Life, Physcial, Social Science
## 32982 13-1111 131111 Business, Finance
## 32983 15-1132 151132 Computer, Math
## 32984 15-1131 151131 Computer, Math
## 32985 15-1132 151132 Computer, Math
## 32986 15-1141 151141 Computer, Math
## 32987 15-1132 151132 Computer, Math
## 32988 15-1132 151132 Computer, Math
## 32989 15-1199 151199 Computer, Math
## 32990 15-1131 151131 Computer, Math
## 32991 25-1042 251042 Education, Training
## 32992 15-1199 151199 Computer, Math
## 32993 15-1132 151132 Computer, Math
## 32994 15-1132 151132 Computer, Math
## 32995 17-2071 172071 Architecture, Engineer
## 32996 15-1132 151132 Computer, Math
## 32997 15-1121 151121 Computer, Math
## 32998 15-1132 151132 Computer, Math
## 32999 19-1029 191029 Life, Physcial, Social Science
## 33000 15-1132 151132 Computer, Math
## 33001 15-1132 151132 Computer, Math
## 33002 15-1121 151121 Computer, Math
## 33003 15-1132 151132 Computer, Math
## 33004 15-1131 151131 Computer, Math
## 33005 15-1132 151132 Computer, Math
## 33006 15-1121 151121 Computer, Math
## 33007 15-1121 151121 Computer, Math
## 33008 15-1121 151121 Computer, Math
## 33009 15-1132 151132 Computer, Math
## 33010 15-1132 151132 Computer, Math
## 33011 15-1121 151121 Computer, Math
## 33012 15-1141 151141 Computer, Math
## 33013 15-2031 152031 Computer, Math
## 33014 15-1121 151121 Computer, Math
## 33015 15-1132 151132 Computer, Math
## 33016 15-1132 151132 Computer, Math
## 33017 17-2053 172053 Architecture, Engineer
## 33018 15-1132 151132 Computer, Math
## 33019 15-1132 151132 Computer, Math
## 33020 15-1132 151132 Computer, Math
## 33021 15-1132 151132 Computer, Math
## 33022 15-1132 151132 Computer, Math
## 33023 17-2071 172071 Architecture, Engineer
## 33024 15-1131 151131 Computer, Math
## 33025 15-1132 151132 Computer, Math
## 33026 15-1121 151121 Computer, Math
## 33027 15-1132 151132 Computer, Math
## 33028 13-1081 131081 Business, Finance
## 33029 15-1142 151142 Computer, Math
## 33030 15-1141 151141 Computer, Math
## 33031 13-2011 132011 Business, Finance
## 33032 15-1121 151121 Computer, Math
## 33033 15-1132 151132 Computer, Math
## 33034 13-2011 132011 Business, Finance
## 33035 15-1132 151132 Computer, Math
## 33036 11-1021 111021 Management
## 33037 15-1132 151132 Computer, Math
## 33038 15-1199 151199 Computer, Math
## 33039 15-1121 151121 Computer, Math
## 33040 15-1133 151133 Computer, Math
## 33041 15-1199 151199 Computer, Math
## 33042 15-1132 151132 Computer, Math
## 33043 15-1141 151141 Computer, Math
## 33044 15-1121 151121 Computer, Math
## 33045 15-1122 151122 Computer, Math
## 33046 15-1141 151141 Computer, Math
## 33047 15-1132 151132 Computer, Math
## 33048 15-2031 152031 Computer, Math
## 33049 13-2051 132051 Business, Finance
## 33050 19-2032 192032 Life, Physcial, Social Science
## 33051 15-1199 151199 Computer, Math
## 33052 15-1132 151132 Computer, Math
## 33053 15-1132 151132 Computer, Math
## 33054 15-1132 151132 Computer, Math
## 33055 13-2099 132099 Business, Finance
## 33056 15-1132 151132 Computer, Math
## 33057 29-1069 291069 Healthcare Practitioner
## 33058 15-1132 151132 Computer, Math
## 33059 15-1142 151142 Computer, Math
## 33060 15-1132 151132 Computer, Math
## 33061 15-1199 151199 Computer, Math
## 33062 15-1199 151199 Computer, Math
## 33063 15-1199 151199 Computer, Math
## 33064 15-1133 151133 Computer, Math
## 33065 15-1133 151133 Computer, Math
## 33066 15-1133 151133 Computer, Math
## 33067 15-1121 151121 Computer, Math
## 33068 15-1132 151132 Computer, Math
## 33069 15-1132 151132 Computer, Math
## 33070 13-2051 132051 Business, Finance
## 33071 19-4021 194021 Life, Physcial, Social Science
## 33072 15-1132 151132 Computer, Math
## 33073 15-1133 151133 Computer, Math
## 33074 15-1132 151132 Computer, Math
## 33075 15-1132 151132 Computer, Math
## 33076 19-4021 194021 Life, Physcial, Social Science
## 33077 15-1199 151199 Computer, Math
## 33078 15-1199 151199 Computer, Math
## 33079 29-1041 291041 Healthcare Practitioner
## 33080 15-1143 151143 Computer, Math
## 33081 15-1132 151132 Computer, Math
## 33082 19-1042 191042 Life, Physcial, Social Science
## 33083 15-1121 151121 Computer, Math
## 33084 15-1199 151199 Computer, Math
## 33085 15-1132 151132 Computer, Math
## 33086 15-1132 151132 Computer, Math
## 33087 15-1121 151121 Computer, Math
## 33088 15-1199 151199 Computer, Math
## 33089 15-1132 151132 Computer, Math
## 33090 15-1131 151131 Computer, Math
## 33091 15-1141 151141 Computer, Math
## 33092 19-1029 191029 Life, Physcial, Social Science
## 33093 15-1199 151199 Computer, Math
## 33094 19-2021 192021 Life, Physcial, Social Science
## 33095 17-2199 172199 Architecture, Engineer
## 33096 15-1199 151199 Computer, Math
## 33097 15-1199 151199 Computer, Math
## 33098 15-1132 151132 Computer, Math
## 33099 15-1132 151132 Computer, Math
## 33100 11-9033 119033 Management
## 33101 13-2011 132011 Business, Finance
## 33102 13-2011 132011 Business, Finance
## 33103 15-1121 151121 Computer, Math
## 33104 25-1041 251041 Education, Training
## 33105 27-3041 273041 Media, Design
## 33106 27-1021 271021 Media, Design
## 33107 15-2031 152031 Computer, Math
## 33108 27-1024 271024 Media, Design
## 33109 15-1133 151133 Computer, Math
## 33110 15-1142 151142 Computer, Math
## 33111 13-1111 131111 Business, Finance
## 33112 15-1121 151121 Computer, Math
## 33113 15-1132 151132 Computer, Math
## 33114 15-1132 151132 Computer, Math
## 33115 15-1199 151199 Computer, Math
## 33116 15-1141 151141 Computer, Math
## 33117 15-1132 151132 Computer, Math
## 33118 15-1132 151132 Computer, Math
## 33119 15-1131 151131 Computer, Math
## 33120 15-1132 151132 Computer, Math
## 33121 13-1111 131111 Business, Finance
## 33122 41-9031 419031 Sales
## 33123 15-1199 151199 Computer, Math
## 33124 15-1132 151132 Computer, Math
## 33125 15-1132 151132 Computer, Math
## 33126 15-1121 151121 Computer, Math
## 33127 15-1132 151132 Computer, Math
## 33128 15-1199 151199 Computer, Math
## 33129 15-1121 151121 Computer, Math
## 33130 19-1012 191012 Life, Physcial, Social Science
## 33131 15-1132 151132 Computer, Math
## 33132 15-1132 151132 Computer, Math
## 33133 13-2051 132051 Business, Finance
## 33134 15-1121 151121 Computer, Math
## 33135 29-9099 299099 Healthcare Practitioner
## 33136 15-1121 151121 Computer, Math
## 33137 15-1121 151121 Computer, Math
## 33138 15-1132 151132 Computer, Math
## 33139 27-1021 271021 Media, Design
## 33140 15-1131 151131 Computer, Math
## 33141 15-1132 151132 Computer, Math
## 33142 15-1121 151121 Computer, Math
## 33143 11-2021 112021 Management
## 33144 15-1132 151132 Computer, Math
## 33145 15-1142 151142 Computer, Math
## 33146 15-1132 151132 Computer, Math
## 33147 15-1199 151199 Computer, Math
## 33148 15-2031 152031 Computer, Math
## 33149 13-1161 131161 Business, Finance
## 33150 13-1111 131111 Business, Finance
## 33151 17-2141 172141 Architecture, Engineer
## 33152 15-1132 151132 Computer, Math
## 33153 15-1133 151133 Computer, Math
## 33154 11-3031 113031 Management
## 33155 19-1029 191029 Life, Physcial, Social Science
## 33156 17-2112 172112 Architecture, Engineer
## 33157 15-1132 151132 Computer, Math
## 33158 15-1121 151121 Computer, Math
## 33159 15-1132 151132 Computer, Math
## 33160 15-1131 151131 Computer, Math
## 33161 15-1199 151199 Computer, Math
## 33162 15-1132 151132 Computer, Math
## 33163 15-1132 151132 Computer, Math
## 33164 15-1199 151199 Computer, Math
## 33165 11-3021 113021 Management
## 33166 15-1141 151141 Computer, Math
## 33167 15-1131 151131 Computer, Math
## 33168 11-3051 113051 Management
## 33169 15-1131 151131 Computer, Math
## 33170 15-1132 151132 Computer, Math
## 33171 15-1121 151121 Computer, Math
## 33172 17-2141 172141 Architecture, Engineer
## 33173 15-2031 152031 Computer, Math
## 33174 15-1132 151132 Computer, Math
## 33175 15-1132 151132 Computer, Math
## 33176 15-1132 151132 Computer, Math
## 33177 15-2031 152031 Computer, Math
## 33178 17-2199 172199 Architecture, Engineer
## 33179 13-1161 131161 Business, Finance
## 33180 15-1132 151132 Computer, Math
## 33181 15-1133 151133 Computer, Math
## 33182 15-1121 151121 Computer, Math
## 33183 13-2011 132011 Business, Finance
## 33184 25-1011 251011 Education, Training
## 33185 15-1132 151132 Computer, Math
## 33186 15-1132 151132 Computer, Math
## 33187 15-1132 151132 Computer, Math
## 33188 27-1024 271024 Media, Design
## 33189 29-1171 291171 Healthcare Practitioner
## 33190 15-1133 151133 Computer, Math
## 33191 15-1132 151132 Computer, Math
## 33192 15-1131 151131 Computer, Math
## 33193 15-1121 151121 Computer, Math
## 33194 11-1021 111021 Management
## 33195 17-2071 172071 Architecture, Engineer
## 33196 15-1121 151121 Computer, Math
## 33197 15-1133 151133 Computer, Math
## 33198 19-2042 192042 Life, Physcial, Social Science
## 33199 15-1133 151133 Computer, Math
## 33200 17-2199 172199 Architecture, Engineer
## 33201 15-1132 151132 Computer, Math
## 33202 15-1121 151121 Computer, Math
## 33203 11-3021 113021 Management
## 33204 15-1131 151131 Computer, Math
## 33205 15-1199 151199 Computer, Math
## 33206 15-1199 151199 Computer, Math
## 33207 17-2112 172112 Architecture, Engineer
## 33208 29-1199 291199 Healthcare Practitioner
## 33209 13-2011 132011 Business, Finance
## 33210 15-1132 151132 Computer, Math
## 33211 15-1132 151132 Computer, Math
## 33212 15-1132 151132 Computer, Math
## 33213 15-1132 151132 Computer, Math
## 33214 11-3061 113061 Management
## 33215 15-1131 151131 Computer, Math
## 33216 15-1132 151132 Computer, Math
## 33217 15-1132 151132 Computer, Math
## 33218 15-1133 151133 Computer, Math
## 33219 15-1132 151132 Computer, Math
## 33220 15-1199 151199 Computer, Math
## 33221 15-1199 151199 Computer, Math
## 33222 13-1161 131161 Business, Finance
## 33223 15-1132 151132 Computer, Math
## 33224 25-1071 251071 Education, Training
## 33225 11-3031 113031 Management
## 33226 15-1121 151121 Computer, Math
## 33227 15-1133 151133 Computer, Math
## 33228 19-1042 191042 Life, Physcial, Social Science
## 33229 15-1199 151199 Computer, Math
## 33230 15-1131 151131 Computer, Math
## 33231 15-1132 151132 Computer, Math
## 33232 17-2112 172112 Architecture, Engineer
## 33233 15-1132 151132 Computer, Math
## 33234 25-1066 251066 Education, Training
## 33235 15-1121 151121 Computer, Math
## 33236 15-1121 151121 Computer, Math
## 33237 15-1132 151132 Computer, Math
## 33238 15-1199 151199 Computer, Math
## 33239 17-2141 172141 Architecture, Engineer
## 33240 15-1199 151199 Computer, Math
## 33241 29-1021 291021 Healthcare Practitioner
## 33242 15-1132 151132 Computer, Math
## 33243 15-1132 151132 Computer, Math
## 33244 13-1111 131111 Business, Finance
## 33245 15-1132 151132 Computer, Math
## 33246 15-1132 151132 Computer, Math
## 33247 17-2141 172141 Architecture, Engineer
## 33248 15-1132 151132 Computer, Math
## 33249 15-1122 151122 Computer, Math
## 33250 15-1199 151199 Computer, Math
## 33251 15-1132 151132 Computer, Math
## 33252 13-1111 131111 Business, Finance
## 33253 19-1012 191012 Life, Physcial, Social Science
## 33254 15-1132 151132 Computer, Math
## 33255 15-1121 151121 Computer, Math
## 33256 15-1133 151133 Computer, Math
## 33257 15-1132 151132 Computer, Math
## 33258 15-1131 151131 Computer, Math
## 33259 15-1132 151132 Computer, Math
## 33260 15-1133 151133 Computer, Math
## 33261 15-1132 151132 Computer, Math
## 33262 15-1121 151121 Computer, Math
## 33263 15-1132 151132 Computer, Math
## 33264 17-2141 172141 Architecture, Engineer
## 33265 17-2051 172051 Architecture, Engineer
## 33266 15-1132 151132 Computer, Math
## 33267 15-1121 151121 Computer, Math
## 33268 15-1199 151199 Computer, Math
## 33269 15-1132 151132 Computer, Math
## 33270 15-1134 151134 Computer, Math
## 33271 15-1132 151132 Computer, Math
## 33272 15-1142 151142 Computer, Math
## 33273 15-1131 151131 Computer, Math
## 33274 13-1111 131111 Business, Finance
## 33275 15-1132 151132 Computer, Math
## 33276 21-1012 211012 Social Service
## 33277 15-1121 151121 Computer, Math
## 33278 25-1071 251071 Education, Training
## 33279 15-1121 151121 Computer, Math
## 33280 17-2112 172112 Architecture, Engineer
## 33281 15-1199 151199 Computer, Math
## 33282 15-1111 151111 Computer, Math
## 33283 15-1142 151142 Computer, Math
## 33284 15-1121 151121 Computer, Math
## 33285 13-1111 131111 Business, Finance
## 33286 27-3042 273042 Media, Design
## 33287 15-1132 151132 Computer, Math
## 33288 15-1132 151132 Computer, Math
## 33289 15-1121 151121 Computer, Math
## 33290 15-1132 151132 Computer, Math
## 33291 15-1132 151132 Computer, Math
## 33292 15-1132 151132 Computer, Math
## 33293 15-1133 151133 Computer, Math
## 33294 13-1111 131111 Business, Finance
## 33295 15-1132 151132 Computer, Math
## 33296 15-1131 151131 Computer, Math
## 33297 29-1069 291069 Healthcare Practitioner
## 33298 11-9199 119199 Management
## 33299 15-1132 151132 Computer, Math
## 33300 15-1134 151134 Computer, Math
## 33301 19-1029 191029 Life, Physcial, Social Science
## 33302 15-1121 151121 Computer, Math
## 33303 17-2141 172141 Architecture, Engineer
## 33304 15-1132 151132 Computer, Math
## 33305 15-1132 151132 Computer, Math
## 33306 15-1199 151199 Computer, Math
## 33307 15-1122 151122 Computer, Math
## 33308 15-1133 151133 Computer, Math
## 33309 15-1199 151199 Computer, Math
## 33310 15-1132 151132 Computer, Math
## 33311 15-1121 151121 Computer, Math
## 33312 15-1131 151131 Computer, Math
## 33313 15-1132 151132 Computer, Math
## 33314 15-1199 151199 Computer, Math
## 33315 15-1132 151132 Computer, Math
## 33316 15-1199 151199 Computer, Math
## 33317 15-1132 151132 Computer, Math
## 33318 29-1123 291123 Healthcare Practitioner
## 33319 15-1132 151132 Computer, Math
## 33320 15-1133 151133 Computer, Math
## 33321 15-1142 151142 Computer, Math
## 33322 29-1069 291069 Healthcare Practitioner
## 33323 15-1132 151132 Computer, Math
## 33324 15-1111 151111 Computer, Math
## 33325 15-1142 151142 Computer, Math
## 33326 17-2141 172141 Architecture, Engineer
## 33327 15-1199 151199 Computer, Math
## 33328 19-2031 192031 Life, Physcial, Social Science
## 33329 17-2074 172074 Architecture, Engineer
## 33330 15-1121 151121 Computer, Math
## 33331 15-1132 151132 Computer, Math
## 33332 15-1199 151199 Computer, Math
## 33333 15-1121 151121 Computer, Math
## [ reached 'max' / getOption("max.print") -- omitted 533639 rows ]
h1b_soc_small = h1b_soc_ind %>%
group_by(soc_code_gen) %>%
summarize(num_ind = n()) %>%
arrange(desc(num_ind)) %>%
mutate(soc_code_gen = fct_reorder(soc_code_gen, num_ind))
#h1b_soc_plot = h1b_soc_small %>%
#ggplot(aes(x = reorder(soc_code_gen, num_ind), y = num_ind)) +
#geom_bar(stat = 'identity') +
#coord_flip() +
#labs(x = 'Industries', y = 'Total Workers',
#title = 'Industries and number of certified H1B appliants')
h1b_soc_plot = plot_ly(
h1b_soc_small, x = ~soc_code_gen, y = ~num_ind, color = ~soc_code_gen, type = "bar", colors = "Set1"
) %>%
layout(title = 'Industries and number of certified H1B applicants',
xaxis = list(title = 'Industries'),
yaxis = list(title = 'Total Workers'),
showlegend = FALSE)
h1b_soc_plot
library(lubridate)
##
## Attaching package: 'lubridate'
## The following object is masked from 'package:base':
##
## date
h1b_soc_date <- h1b_soc %>%
select(employment_start_date, employment_end_date) %>%
mutate(employment_start_date = as.Date(employment_start_date),
employment_end_date = as.Date(employment_end_date),
year_start = year(employment_start_date),
year_end = year(employment_end_date),
length_time = year_end - year_start,
length_time= as.factor(length_time))
date_table <- h1b_soc_date %>%
group_by(length_time) %>%
summarize(num_year = n())
## Warning: Factor `length_time` contains implicit NA, consider using
## `forcats::fct_explicit_na`
ggplot(data = h1b_soc_date, aes(x = length_time)) +
geom_bar()
str(h1b_soc_date)
## 'data.frame': 566979 obs. of 5 variables:
## $ employment_start_date: Date, format: "2018-06-30" "2018-07-31" ...
## $ employment_end_date : Date, format: "2021-06-29" "2021-07-31" ...
## $ year_start : num 2018 2018 2018 2018 2018 ...
## $ year_end : num 2021 2021 2021 2021 2021 ...
## $ length_time : Factor w/ 4 levels "0","1","2","3": 4 4 4 4 4 4 4 4 4 4 ...
h1b_soc_date
## employment_start_date employment_end_date year_start year_end
## 1 2018-06-30 2021-06-29 2018 2021
## 2 2018-07-31 2021-07-31 2018 2021
## 3 2018-06-12 2021-06-11 2018 2021
## 4 2018-08-12 2021-08-12 2018 2021
## 5 2018-09-30 2021-09-29 2018 2021
## 6 2018-06-29 2021-06-29 2018 2021
## 7 2018-08-31 2021-08-31 2018 2021
## 8 2018-09-15 2021-09-15 2018 2021
## 9 2018-08-06 2021-08-05 2018 2021
## 10 2018-03-21 2021-03-21 2018 2021
## 11 2018-01-28 2021-01-27 2018 2021
## 12 2018-09-14 2021-09-13 2018 2021
## 13 2018-08-21 2021-08-20 2018 2021
## 14 2018-04-23 2021-04-23 2018 2021
## 15 2018-04-08 2021-04-07 2018 2021
## 16 2018-09-10 2021-09-09 2018 2021
## 17 2018-02-28 2021-02-28 2018 2021
## 18 2017-11-27 2020-11-26 2017 2020
## 19 2018-04-26 2019-04-25 2018 2019
## 20 2017-10-11 2020-10-10 2017 2020
## 21 2018-05-27 2021-05-26 2018 2021
## 22 2018-08-11 2021-08-10 2018 2021
## 23 2018-04-30 2021-04-29 2018 2021
## 24 2018-09-17 2021-09-17 2018 2021
## 25 2018-07-31 2021-07-30 2018 2021
## 26 2018-08-31 2021-08-30 2018 2021
## 27 2018-09-10 2021-09-09 2018 2021
## 28 2018-07-06 2021-07-05 2018 2021
## 29 2018-03-20 2021-03-20 2018 2021
## 30 2018-08-31 2021-08-31 2018 2021
## 31 2018-09-12 2021-09-11 2018 2021
## 32 2018-06-17 2021-06-17 2018 2021
## 33 2018-08-31 2021-08-30 2018 2021
## 34 2018-02-08 2021-02-07 2018 2021
## 35 2018-09-09 2021-09-09 2018 2021
## 36 2018-07-20 2021-07-19 2018 2021
## 37 2018-09-01 2021-08-31 2018 2021
## 38 2018-08-20 2021-08-20 2018 2021
## 39 2018-08-31 2021-08-31 2018 2021
## 40 2018-05-06 2021-05-06 2018 2021
## 41 2018-10-28 2021-10-27 2018 2021
## 42 2018-04-11 2019-10-05 2018 2019
## 43 2018-05-08 2021-05-07 2018 2021
## 44 2018-06-30 2021-06-29 2018 2021
## 45 2018-09-18 2021-09-17 2018 2021
## 46 2018-06-30 2021-06-29 2018 2021
## 47 2018-01-17 2021-01-16 2018 2021
## 48 2018-06-14 2021-06-14 2018 2021
## 49 2018-09-07 2021-09-07 2018 2021
## 50 2018-08-31 2021-08-31 2018 2021
## 51 2018-09-09 2021-09-09 2018 2021
## 52 2018-09-25 2021-09-24 2018 2021
## 53 2018-08-22 2018-12-22 2018 2018
## 54 2018-08-26 2021-08-25 2018 2021
## 55 2018-07-30 2021-07-29 2018 2021
## 56 2018-12-31 2021-12-31 2018 2021
## 57 2018-01-08 2021-01-07 2018 2021
## 58 2018-09-05 2021-09-05 2018 2021
## 59 2018-07-31 2021-07-30 2018 2021
## 60 2018-08-31 2021-08-30 2018 2021
## 61 2018-08-25 2021-08-24 2018 2021
## 62 2018-08-31 2021-08-30 2018 2021
## 63 2018-09-23 2021-09-22 2018 2021
## 64 2018-09-30 2021-09-29 2018 2021
## 65 2018-09-30 2021-09-29 2018 2021
## 66 2018-04-03 2021-04-02 2018 2021
## 67 2018-09-17 2021-09-17 2018 2021
## 68 2018-09-19 2021-09-19 2018 2021
## 69 2018-04-19 2021-04-19 2018 2021
## 70 2018-08-27 2021-08-26 2018 2021
## 71 2018-08-31 2021-08-30 2018 2021
## 72 2018-02-17 2021-02-14 2018 2021
## 73 2018-05-06 2021-05-06 2018 2021
## 74 2018-09-17 2021-09-17 2018 2021
## 75 2018-08-14 2021-08-13 2018 2021
## 76 2018-09-06 2021-09-05 2018 2021
## 77 2018-07-31 2021-07-30 2018 2021
## 78 2018-06-28 2021-06-27 2018 2021
## 79 2018-04-18 2021-04-17 2018 2021
## 80 2018-08-31 2021-08-30 2018 2021
## 81 2018-01-28 2019-06-19 2018 2019
## 82 2018-05-29 2021-05-28 2018 2021
## 83 2018-03-31 2020-11-13 2018 2020
## 84 2018-07-11 2021-07-11 2018 2021
## 85 2018-08-14 2021-08-13 2018 2021
## 86 2018-08-31 2021-08-30 2018 2021
## 87 2018-05-09 2021-05-08 2018 2021
## 88 2018-12-10 2021-12-10 2018 2021
## 89 2018-09-09 2020-09-29 2018 2020
## 90 2018-08-31 2020-08-30 2018 2020
## 91 2018-10-06 2021-10-05 2018 2021
## 92 2018-07-27 2021-07-27 2018 2021
## 93 2018-08-21 2021-08-20 2018 2021
## 94 2018-08-31 2021-08-31 2018 2021
## 95 2018-02-09 2021-02-09 2018 2021
## 96 2018-08-31 2021-08-30 2018 2021
## 97 2018-04-25 2021-04-24 2018 2021
## 98 2018-09-06 2021-09-05 2018 2021
## 99 2017-10-29 2020-10-28 2017 2020
## 100 2017-10-10 2020-10-09 2017 2020
## 101 2018-08-05 2021-08-04 2018 2021
## 102 2018-08-22 2021-08-21 2018 2021
## 103 2018-01-11 2021-01-10 2018 2021
## 104 2018-08-12 2021-08-05 2018 2021
## 105 2018-02-18 2021-02-17 2018 2021
## 106 2018-01-28 2021-01-27 2018 2021
## 107 2018-08-05 2021-08-04 2018 2021
## 108 2018-11-12 2021-11-12 2018 2021
## 109 2018-05-20 2021-05-19 2018 2021
## 110 2017-11-22 2020-11-21 2017 2020
## 111 2017-11-19 2020-11-18 2017 2020
## 112 2018-04-02 2021-04-01 2018 2021
## 113 2018-09-16 2021-09-15 2018 2021
## 114 2018-09-20 2021-09-19 2018 2021
## 115 2018-09-30 2021-09-29 2018 2021
## 116 2018-09-11 2021-09-11 2018 2021
## 117 2018-06-11 2021-06-10 2018 2021
## 118 2018-11-14 2021-11-13 2018 2021
## 119 2018-08-26 2021-08-25 2018 2021
## 120 2018-07-09 2021-07-09 2018 2021
## 121 2018-04-26 2021-04-26 2018 2021
## 122 2018-09-30 2021-09-29 2018 2021
## 123 2018-03-12 2021-03-11 2018 2021
## 124 2018-09-11 2021-09-11 2018 2021
## 125 2018-09-06 2020-09-05 2018 2020
## 126 2018-06-15 2021-06-15 2018 2021
## 127 2018-08-24 2021-08-23 2018 2021
## 128 2018-06-14 2021-06-14 2018 2021
## 129 2018-03-20 2021-03-20 2018 2021
## 130 2019-03-01 2022-02-28 2019 2022
## 131 2018-08-14 2021-08-14 2018 2021
## 132 2018-09-01 2021-08-31 2018 2021
## 133 2018-09-17 2021-09-16 2018 2021
## 134 2018-06-30 2021-06-29 2018 2021
## 135 2018-09-08 2021-09-07 2018 2021
## 136 2018-03-14 2021-03-13 2018 2021
## 137 2018-07-14 2021-07-14 2018 2021
## 138 2018-07-19 2021-07-19 2018 2021
## 139 2018-03-12 2021-03-11 2018 2021
## 140 2018-07-26 2021-07-25 2018 2021
## 141 2018-08-30 2021-08-29 2018 2021
## 142 2018-05-04 2021-05-03 2018 2021
## 143 2017-11-06 2020-10-31 2017 2020
## 144 2018-08-31 2021-08-30 2018 2021
## 145 2018-08-20 2021-08-19 2018 2021
## 146 2018-03-08 2021-03-07 2018 2021
## 147 2018-09-27 2021-09-27 2018 2021
## 148 2018-08-07 2021-08-06 2018 2021
## 149 2018-09-11 2021-09-10 2018 2021
## 150 2018-07-29 2021-07-28 2018 2021
## 151 2018-07-28 2021-07-27 2018 2021
## 152 2017-10-02 2020-10-01 2017 2020
## 153 2019-01-04 2022-01-03 2019 2022
## 154 2018-07-31 2021-06-29 2018 2021
## 155 2018-11-14 2021-11-13 2018 2021
## 156 2018-07-30 2021-07-29 2018 2021
## 157 2018-05-14 2019-08-03 2018 2019
## 158 2018-09-10 2021-09-09 2018 2021
## 159 2018-08-31 2021-08-29 2018 2021
## 160 2018-08-23 2021-08-22 2018 2021
## 161 2018-06-14 2021-06-14 2018 2021
## 162 2018-04-22 2019-09-16 2018 2019
## 163 2018-05-08 2021-05-07 2018 2021
## 164 2018-09-25 2021-09-24 2018 2021
## 165 2018-07-29 2021-07-28 2018 2021
## 166 2018-09-12 2021-09-12 2018 2021
## 167 2017-11-19 2020-11-18 2017 2020
## 168 2018-09-09 2021-09-09 2018 2021
## 169 2018-06-17 2021-06-17 2018 2021
## 170 2017-11-28 2020-11-25 2017 2020
## 171 2017-10-11 2020-10-10 2017 2020
## 172 2018-05-16 2021-05-15 2018 2021
## 173 2018-01-01 2020-12-31 2018 2020
## 174 2018-09-15 2021-09-15 2018 2021
## 175 2018-08-31 2021-08-31 2018 2021
## 176 2018-09-06 2021-09-06 2018 2021
## 177 2018-08-20 2021-08-19 2018 2021
## 178 2018-09-19 2021-09-19 2018 2021
## 179 2018-09-07 2021-09-06 2018 2021
## 180 2018-02-12 2021-02-12 2018 2021
## 181 2018-01-04 2021-01-04 2018 2021
## 182 2018-04-03 2021-04-03 2018 2021
## 183 2018-09-09 2021-09-09 2018 2021
## 184 2018-07-19 2021-07-18 2018 2021
## 185 2018-07-31 2021-07-30 2018 2021
## 186 2018-07-03 2021-07-02 2018 2021
## 187 2018-12-12 2021-12-11 2018 2021
## 188 2018-09-30 2021-09-29 2018 2021
## 189 2018-04-03 2021-04-02 2018 2021
## 190 2018-09-10 2021-09-09 2018 2021
## 191 2018-07-25 2021-07-24 2018 2021
## 192 2018-08-31 2021-08-31 2018 2021
## 193 2018-09-09 2021-09-08 2018 2021
## 194 2018-07-31 2021-07-31 2018 2021
## 195 2018-09-01 2021-08-31 2018 2021
## 196 2017-10-09 2020-10-08 2017 2020
## 197 2018-09-06 2021-09-05 2018 2021
## 198 2018-09-04 2021-09-03 2018 2021
## 199 2018-09-15 2021-09-13 2018 2021
## 200 2018-09-10 2021-09-09 2018 2021
## 201 2018-05-03 2021-05-02 2018 2021
## 202 2018-08-11 2021-08-11 2018 2021
## 203 2018-06-30 2021-06-29 2018 2021
## 204 2018-09-06 2021-09-05 2018 2021
## 205 2017-11-14 2020-11-13 2017 2020
## 206 2018-03-27 2021-03-26 2018 2021
## 207 2018-03-31 2021-03-30 2018 2021
## 208 2018-06-30 2021-06-29 2018 2021
## 209 2018-08-29 2021-08-28 2018 2021
## 210 2018-08-20 2021-08-19 2018 2021
## 211 2018-09-14 2021-09-14 2018 2021
## 212 2018-03-21 2021-03-20 2018 2021
## 213 2018-05-20 2021-05-20 2018 2021
## 214 2018-05-09 2020-03-22 2018 2020
## 215 2018-09-13 2020-12-31 2018 2020
## 216 2018-08-24 2021-08-23 2018 2021
## 217 2017-11-14 2020-11-13 2017 2020
## 218 2018-09-06 2021-09-05 2018 2021
## 219 2018-01-02 2021-01-01 2018 2021
## 220 2018-02-08 2021-02-07 2018 2021
## 221 2018-02-21 2021-02-20 2018 2021
## 222 2018-06-17 2021-06-16 2018 2021
## 223 2018-09-12 2021-09-11 2018 2021
## 224 2017-11-09 2020-11-08 2017 2020
## 225 2018-12-31 2021-12-30 2018 2021
## 226 2018-04-17 2021-04-16 2018 2021
## 227 2017-12-21 2020-12-20 2017 2020
## 228 2017-11-18 2020-11-17 2017 2020
## 229 2018-08-01 2021-07-31 2018 2021
## 230 2018-08-12 2020-08-30 2018 2020
## 231 2018-09-14 2021-09-12 2018 2021
## 232 2018-07-04 2021-07-03 2018 2021
## 233 2018-12-28 2021-12-27 2018 2021
## 234 2018-09-09 2021-09-09 2018 2021
## 235 2018-09-19 2021-09-18 2018 2021
## 236 2018-06-27 2021-06-26 2018 2021
## 237 2018-08-29 2021-08-28 2018 2021
## 238 2018-09-09 2021-09-09 2018 2021
## 239 2018-07-21 2021-07-20 2018 2021
## 240 2018-09-01 2021-08-31 2018 2021
## 241 2018-09-14 2021-09-13 2018 2021
## 242 2018-08-27 2021-08-27 2018 2021
## 243 2018-06-14 2021-06-14 2018 2021
## 244 2018-09-01 2021-08-31 2018 2021
## 245 2018-07-17 2021-07-16 2018 2021
## 246 2018-04-17 2021-04-17 2018 2021
## 247 2018-07-31 2021-07-30 2018 2021
## 248 2018-05-24 2021-05-23 2018 2021
## 249 2018-05-31 2021-05-30 2018 2021
## 250 2018-06-25 2021-06-24 2018 2021
## 251 2018-08-27 2021-08-27 2018 2021
## 252 2018-09-09 2021-09-08 2018 2021
## 253 2018-05-13 2021-05-12 2018 2021
## 254 2018-04-25 2021-04-24 2018 2021
## 255 2018-04-26 2021-04-25 2018 2021
## 256 2018-08-31 2021-08-30 2018 2021
## 257 2018-07-12 2021-07-11 2018 2021
## 258 2018-09-10 2021-09-10 2018 2021
## 259 2018-08-31 2021-08-30 2018 2021
## 260 2017-10-14 2020-10-14 2017 2020
## 261 2018-08-15 2021-08-14 2018 2021
## 262 2018-06-03 2021-06-02 2018 2021
## 263 2018-04-15 2021-04-14 2018 2021
## 264 2018-06-03 2021-06-02 2018 2021
## 265 2018-07-26 2021-07-26 2018 2021
## 266 2018-09-30 2021-09-29 2018 2021
## 267 2018-08-19 2021-08-19 2018 2021
## 268 2018-03-07 2018-09-04 2018 2018
## 269 2018-09-16 2021-09-15 2018 2021
## 270 2018-06-30 2021-06-29 2018 2021
## 271 2017-10-25 2020-10-25 2017 2020
## 272 2017-12-31 2020-12-28 2017 2020
## 273 2018-06-18 2021-06-17 2018 2021
## 274 2018-06-14 2021-06-14 2018 2021
## 275 2017-10-22 2020-10-22 2017 2020
## 276 2018-07-25 2021-07-24 2018 2021
## 277 2018-04-30 2021-04-29 2018 2021
## 278 2018-08-27 2021-08-26 2018 2021
## 279 2018-09-12 2021-09-11 2018 2021
## 280 2018-09-09 2021-09-09 2018 2021
## 281 2019-01-18 2022-01-18 2019 2022
## 282 2018-04-12 2021-04-11 2018 2021
## 283 2018-09-13 2021-09-13 2018 2021
## 284 2018-09-13 2021-09-12 2018 2021
## 285 2018-08-05 2021-08-04 2018 2021
## 286 2017-11-21 2020-11-20 2017 2020
## 287 2017-11-05 2020-11-04 2017 2020
## 288 2018-09-02 2021-09-01 2018 2021
## 289 2018-01-22 2021-01-21 2018 2021
## 290 2018-09-12 2021-09-12 2018 2021
## 291 2018-12-04 2021-12-03 2018 2021
## 292 2018-08-25 2021-08-24 2018 2021
## 293 2018-07-24 2021-07-23 2018 2021
## 294 2017-10-03 2020-10-02 2017 2020
## 295 2018-09-07 2021-09-07 2018 2021
## 296 2018-07-18 2021-07-17 2018 2021
## 297 2017-11-07 2020-11-07 2017 2020
## 298 2018-09-14 2021-09-13 2018 2021
## 299 2018-06-14 2021-06-13 2018 2021
## 300 2018-11-22 2021-11-22 2018 2021
## 301 2018-08-28 2021-08-27 2018 2021
## 302 2018-09-04 2021-09-04 2018 2021
## 303 2018-09-02 2021-09-01 2018 2021
## 304 2018-02-11 2021-02-11 2018 2021
## 305 2018-08-13 2021-08-13 2018 2021
## 306 2018-01-09 2021-01-09 2018 2021
## 307 2018-04-15 2021-04-14 2018 2021
## 308 2018-09-12 2021-09-12 2018 2021
## 309 2018-05-13 2020-11-29 2018 2020
## 310 2018-09-27 2021-09-26 2018 2021
## 311 2018-07-30 2021-07-29 2018 2021
## 312 2017-12-31 2020-12-30 2017 2020
## 313 2018-05-31 2019-07-30 2018 2019
## 314 2018-09-04 2021-04-29 2018 2021
## 315 2018-04-26 2021-04-14 2018 2021
## 316 2018-09-20 2020-08-30 2018 2020
## 317 2018-09-25 2021-09-25 2018 2021
## 318 2018-05-07 2021-05-06 2018 2021
## 319 2018-01-21 2021-01-20 2018 2021
## 320 2018-03-12 2021-03-11 2018 2021
## 321 2018-03-20 2021-03-20 2018 2021
## 322 2018-09-07 2021-09-06 2018 2021
## 323 2018-08-15 2021-08-14 2018 2021
## 324 2018-09-06 2021-09-06 2018 2021
## 325 2018-04-08 2021-04-08 2018 2021
## 326 2018-03-11 2021-03-11 2018 2021
## 327 2018-07-30 2021-07-29 2018 2021
## 328 2018-05-16 2021-05-15 2018 2021
## 329 2018-08-14 2021-08-13 2018 2021
## 330 2018-09-06 2021-09-05 2018 2021
## 331 2018-02-11 2019-10-19 2018 2019
## 332 2018-09-18 2021-09-17 2018 2021
## 333 2018-08-28 2021-08-27 2018 2021
## 334 2017-12-04 2020-12-03 2017 2020
## 335 2018-09-10 2021-09-10 2018 2021
## 336 2018-09-02 2019-12-30 2018 2019
## 337 2018-09-14 2021-09-13 2018 2021
## 338 2018-09-19 2021-09-18 2018 2021
## 339 2018-09-07 2021-09-06 2018 2021
## 340 2018-08-09 2021-08-09 2018 2021
## 341 2018-07-10 2019-12-30 2018 2019
## 342 2018-06-07 2021-06-06 2018 2021
## 343 2018-09-13 2021-09-12 2018 2021
## 344 2018-02-13 2019-08-15 2018 2019
## 345 2018-09-07 2021-09-06 2018 2021
## 346 2018-07-03 2020-12-30 2018 2020
## 347 2018-04-27 2021-04-26 2018 2021
## 348 2018-09-18 2021-09-17 2018 2021
## 349 2018-08-31 2021-08-30 2018 2021
## 350 2018-09-11 2021-09-11 2018 2021
## 351 2018-02-06 2021-02-06 2018 2021
## 352 2018-08-21 2021-08-20 2018 2021
## 353 2017-12-11 2019-09-13 2017 2019
## 354 2018-08-23 2021-08-22 2018 2021
## 355 2018-09-11 2021-09-10 2018 2021
## 356 2018-09-07 2021-09-07 2018 2021
## 357 2018-09-14 2021-09-13 2018 2021
## 358 2018-09-01 2021-09-01 2018 2021
## 359 2018-09-12 2021-09-12 2018 2021
## 360 2018-02-12 2021-02-12 2018 2021
## 361 2018-07-28 2021-07-27 2018 2021
## 362 2017-10-04 2018-06-29 2017 2018
## 363 2018-07-31 2020-07-30 2018 2020
## 364 2018-09-01 2021-09-01 2018 2021
## 365 2017-11-12 2020-11-11 2017 2020
## 366 2018-08-16 2021-08-15 2018 2021
## 367 2018-09-15 2021-09-14 2018 2021
## 368 2018-09-23 2021-09-23 2018 2021
## 369 2018-08-27 2021-08-26 2018 2021
## 370 2018-02-20 2021-02-19 2018 2021
## 371 2018-07-22 2020-07-21 2018 2020
## 372 2017-10-01 2020-10-01 2017 2020
## 373 2018-09-18 2020-12-30 2018 2020
## 374 2018-02-11 2021-02-10 2018 2021
## 375 2018-09-03 2021-09-03 2018 2021
## 376 2017-10-18 2020-10-17 2017 2020
## 377 2018-05-20 2021-05-19 2018 2021
## 378 2018-09-06 2021-09-05 2018 2021
## 379 2018-03-15 2021-03-15 2018 2021
## 380 2018-06-17 2021-06-16 2018 2021
## 381 2018-06-14 2021-06-14 2018 2021
## 382 2018-03-31 2021-03-30 2018 2021
## 383 2018-06-30 2021-06-29 2018 2021
## 384 2017-10-22 2020-10-21 2017 2020
## 385 2018-02-08 2021-02-07 2018 2021
## 386 2018-09-05 2021-09-05 2018 2021
## 387 2018-08-22 2021-08-22 2018 2021
## 388 2018-11-23 2021-11-22 2018 2021
## 389 2018-08-31 2021-08-30 2018 2021
## 390 2018-08-27 2021-08-27 2018 2021
## 391 2018-07-31 2021-07-30 2018 2021
## 392 2018-09-12 2021-09-12 2018 2021
## 393 2018-03-16 2021-03-16 2018 2021
## 394 2018-09-02 2021-09-01 2018 2021
## 395 2018-09-16 2020-09-15 2018 2020
## 396 2018-08-21 2021-08-20 2018 2021
## 397 2019-02-08 2022-02-08 2019 2022
## 398 2018-03-19 2021-03-19 2018 2021
## 399 2018-04-08 2021-04-07 2018 2021
## 400 2018-05-20 2021-05-18 2018 2021
## 401 2018-07-13 2021-07-12 2018 2021
## 402 2018-06-11 2021-06-10 2018 2021
## 403 2018-09-20 2021-09-19 2018 2021
## 404 2018-09-06 2021-09-05 2018 2021
## 405 2018-09-10 2021-09-09 2018 2021
## 406 2017-10-08 2020-06-03 2017 2020
## 407 2018-08-30 2021-08-30 2018 2021
## 408 2018-02-07 2021-02-06 2018 2021
## 409 2018-09-08 2021-09-07 2018 2021
## 410 2018-06-30 2021-06-30 2018 2021
## 411 2018-09-04 2021-09-04 2018 2021
## 412 2018-09-28 2021-09-27 2018 2021
## 413 2018-09-01 2021-08-31 2018 2021
## 414 2018-11-19 2021-11-14 2018 2021
## 415 2018-08-14 2021-08-13 2018 2021
## 416 2018-08-09 2021-08-09 2018 2021
## 417 2018-06-11 2021-06-09 2018 2021
## 418 2018-08-30 2021-08-29 2018 2021
## 419 2018-07-31 2021-07-30 2018 2021
## 420 2017-12-18 2019-09-12 2017 2019
## 421 2018-09-25 2021-09-24 2018 2021
## 422 2018-08-22 2021-08-21 2018 2021
## 423 2018-07-31 2021-07-30 2018 2021
## 424 2018-03-20 2021-03-18 2018 2021
## 425 2018-08-09 2021-08-08 2018 2021
## 426 2018-09-15 2021-09-14 2018 2021
## 427 2018-09-25 2021-09-24 2018 2021
## 428 2018-04-15 2021-04-14 2018 2021
## 429 2018-02-15 2021-02-15 2018 2021
## 430 2018-08-19 2021-08-18 2018 2021
## 431 2018-08-26 2021-08-19 2018 2021
## 432 2017-10-24 2020-10-24 2017 2020
## 433 2018-07-22 2020-07-14 2018 2020
## 434 2017-11-30 2020-11-29 2017 2020
## 435 2018-06-30 2021-06-29 2018 2021
## 436 2018-08-24 2021-08-01 2018 2021
## 437 2017-11-26 2020-11-25 2017 2020
## 438 2018-09-09 2021-09-09 2018 2021
## 439 2018-07-25 2020-03-30 2018 2020
## 440 2018-02-11 2021-02-10 2018 2021
## 441 2018-01-29 2021-01-28 2018 2021
## 442 2019-01-27 2022-01-26 2019 2022
## 443 2018-01-21 2021-01-20 2018 2021
## 444 2018-07-31 2021-07-30 2018 2021
## 445 2018-08-14 2021-08-14 2018 2021
## 446 2018-07-24 2021-07-23 2018 2021
## 447 2018-06-28 2021-06-27 2018 2021
## 448 2018-06-07 2021-06-04 2018 2021
## 449 2018-02-25 2021-02-24 2018 2021
## 450 2018-09-13 2021-09-12 2018 2021
## 451 2018-09-03 2021-09-02 2018 2021
## 452 2018-07-05 2021-07-04 2018 2021
## 453 2018-09-02 2021-09-01 2018 2021
## 454 2018-02-13 2021-02-12 2018 2021
## 455 2018-08-28 2021-08-27 2018 2021
## 456 2018-09-21 2021-09-21 2018 2021
## 457 2018-05-23 2020-09-09 2018 2020
## 458 2018-01-24 2021-01-24 2018 2021
## 459 2018-07-15 2020-06-29 2018 2020
## 460 2018-04-03 2020-09-04 2018 2020
## 461 2018-06-30 2021-06-29 2018 2021
## 462 2017-10-04 2020-10-04 2017 2020
## 463 2018-09-02 2020-12-30 2018 2020
## 464 2018-06-15 2021-06-14 2018 2021
## 465 2018-09-30 2021-09-29 2018 2021
## 466 2018-05-30 2021-05-30 2018 2021
## 467 2018-08-30 2020-12-25 2018 2020
## 468 2018-08-12 2021-08-12 2018 2021
## 469 2018-09-19 2021-09-18 2018 2021
## 470 2018-09-16 2021-09-15 2018 2021
## 471 2018-09-16 2020-02-17 2018 2020
## 472 2018-03-11 2020-09-11 2018 2020
## 473 2017-10-29 2020-10-28 2017 2020
## 474 2018-06-10 2021-06-09 2018 2021
## 475 2018-09-30 2021-09-29 2018 2021
## 476 2018-08-12 2021-08-11 2018 2021
## 477 2018-03-07 2021-03-06 2018 2021
## 478 2018-08-26 2021-08-25 2018 2021
## 479 2018-08-27 2021-08-27 2018 2021
## 480 2018-09-17 2021-09-16 2018 2021
## 481 2018-03-31 2018-12-30 2018 2018
## 482 2018-10-30 2021-10-30 2018 2021
## 483 2018-09-16 2021-09-15 2018 2021
## 484 2018-08-31 2021-08-31 2018 2021
## 485 2018-07-04 2021-07-04 2018 2021
## 486 2018-03-11 2021-03-10 2018 2021
## 487 2018-09-16 2021-09-15 2018 2021
## 488 2018-08-27 2021-08-26 2018 2021
## 489 2018-09-30 2021-09-29 2018 2021
## 490 2018-03-31 2021-03-30 2018 2021
## 491 2018-07-26 2021-07-25 2018 2021
## 492 2018-08-31 2021-08-31 2018 2021
## 493 2018-09-08 2021-09-07 2018 2021
## 494 2018-04-11 2021-04-10 2018 2021
## 495 2018-01-21 2021-01-18 2018 2021
## 496 2018-08-26 2021-08-25 2018 2021
## 497 2018-09-18 2021-09-18 2018 2021
## 498 2018-08-26 2021-08-25 2018 2021
## 499 2018-07-09 2021-07-08 2018 2021
## 500 2018-09-18 2021-09-17 2018 2021
## 501 2018-07-22 2021-07-22 2018 2021
## 502 2018-02-14 2021-02-13 2018 2021
## 503 2018-03-31 2021-03-30 2018 2021
## 504 2018-09-06 2021-09-05 2018 2021
## 505 2018-07-08 2021-07-07 2018 2021
## 506 2018-08-31 2021-08-30 2018 2021
## 507 2018-08-31 2019-08-30 2018 2019
## 508 2018-04-22 2021-04-21 2018 2021
## 509 2018-08-25 2021-08-24 2018 2021
## 510 2018-08-31 2021-08-30 2018 2021
## 511 2017-10-14 2020-10-14 2017 2020
## 512 2018-08-09 2021-08-08 2018 2021
## 513 2018-01-15 2021-01-14 2018 2021
## 514 2018-01-02 2018-12-30 2018 2018
## 515 2018-09-18 2021-09-18 2018 2021
## 516 2018-05-30 2021-05-29 2018 2021
## 517 2018-07-15 2019-07-14 2018 2019
## 518 2018-08-06 2021-08-05 2018 2021
## 519 2018-02-01 2021-01-31 2018 2021
## 520 2017-10-21 2020-10-20 2017 2020
## 521 2018-11-29 2021-11-28 2018 2021
## 522 2018-05-10 2021-05-10 2018 2021
## 523 2017-12-21 2020-12-20 2017 2020
## 524 2018-05-28 2021-05-27 2018 2021
## 525 2018-09-27 2021-09-27 2018 2021
## 526 2018-09-10 2021-09-09 2018 2021
## 527 2018-08-31 2021-08-30 2018 2021
## 528 2018-10-25 2021-10-24 2018 2021
## 529 2018-11-25 2021-11-24 2018 2021
## 530 2018-06-30 2021-06-29 2018 2021
## 531 2018-09-13 2021-09-12 2018 2021
## 532 2018-04-08 2021-04-07 2018 2021
## 533 2018-01-31 2021-01-31 2018 2021
## 534 2018-09-03 2021-09-02 2018 2021
## 535 2018-07-01 2021-07-01 2018 2021
## 536 2018-08-31 2021-08-30 2018 2021
## 537 2018-07-31 2021-07-30 2018 2021
## 538 2018-08-31 2021-08-30 2018 2021
## 539 2018-04-08 2021-03-30 2018 2021
## 540 2018-09-11 2021-09-10 2018 2021
## 541 2018-08-19 2021-08-18 2018 2021
## 542 2018-02-25 2018-12-18 2018 2018
## 543 2018-09-23 2021-09-23 2018 2021
## 544 2018-08-31 2021-08-30 2018 2021
## 545 2018-02-04 2021-02-03 2018 2021
## 546 2018-08-01 2021-07-31 2018 2021
## 547 2018-07-31 2021-07-30 2018 2021
## 548 2018-09-20 2021-09-20 2018 2021
## 549 2018-09-14 2021-09-13 2018 2021
## 550 2018-08-15 2021-08-14 2018 2021
## 551 2017-11-06 2020-11-03 2017 2020
## 552 2017-10-15 2020-10-15 2017 2020
## 553 2017-12-26 2020-12-25 2017 2020
## 554 2018-06-30 2021-06-29 2018 2021
## 555 2018-08-07 2021-08-06 2018 2021
## 556 2018-03-11 2021-03-10 2018 2021
## 557 2018-09-15 2021-09-15 2018 2021
## 558 2018-04-01 2019-04-29 2018 2019
## 559 2018-02-11 2021-02-11 2018 2021
## 560 2018-03-14 2021-03-13 2018 2021
## 561 2018-09-09 2021-09-09 2018 2021
## 562 2018-03-26 2021-03-26 2018 2021
## 563 2018-08-23 2021-08-22 2018 2021
## 564 2018-06-10 2021-06-09 2018 2021
## 565 2018-09-23 2021-09-22 2018 2021
## 566 2018-09-05 2021-09-04 2018 2021
## 567 2018-09-17 2021-09-17 2018 2021
## 568 2018-08-14 2021-08-13 2018 2021
## 569 2018-05-23 2021-05-19 2018 2021
## 570 2018-02-28 2021-02-14 2018 2021
## 571 2018-06-24 2021-06-23 2018 2021
## 572 2018-04-09 2021-04-08 2018 2021
## 573 2018-09-19 2021-09-18 2018 2021
## 574 2018-05-16 2021-05-15 2018 2021
## 575 2018-08-15 2021-08-15 2018 2021
## 576 2018-08-14 2021-08-13 2018 2021
## 577 2018-09-02 2021-09-01 2018 2021
## 578 2018-09-09 2021-09-08 2018 2021
## 579 2018-08-31 2021-08-31 2018 2021
## 580 2018-06-21 2021-06-20 2018 2021
## 581 2018-02-28 2021-02-27 2018 2021
## 582 2018-07-01 2021-07-01 2018 2021
## 583 2018-09-18 2021-09-17 2018 2021
## 584 2018-08-02 2021-08-01 2018 2021
## 585 2018-12-10 2021-12-09 2018 2021
## 586 2018-09-03 2021-09-02 2018 2021
## 587 2018-06-14 2021-06-14 2018 2021
## 588 2018-09-15 2021-09-14 2018 2021
## 589 2018-09-17 2021-09-16 2018 2021
## 590 2018-08-29 2021-08-28 2018 2021
## 591 2018-06-10 2019-04-12 2018 2019
## 592 2017-12-20 2020-12-19 2017 2020
## 593 2018-09-20 2021-09-19 2018 2021
## 594 2018-07-31 2021-07-31 2018 2021
## 595 2017-10-24 2020-10-23 2017 2020
## 596 2018-07-08 2021-07-07 2018 2021
## 597 2018-08-30 2021-08-30 2018 2021
## 598 2018-06-10 2021-06-09 2018 2021
## 599 2018-09-17 2021-09-14 2018 2021
## 600 2018-09-30 2021-09-29 2018 2021
## 601 2018-04-12 2021-04-11 2018 2021
## 602 2018-09-16 2021-09-15 2018 2021
## 603 2017-11-26 2020-11-26 2017 2020
## 604 2017-10-03 2020-10-03 2017 2020
## 605 2018-08-02 2021-07-30 2018 2021
## 606 2018-08-24 2021-08-24 2018 2021
## 607 2018-09-24 2021-09-23 2018 2021
## 608 2018-08-31 2021-08-30 2018 2021
## 609 2018-06-29 2021-06-28 2018 2021
## 610 2017-12-01 2020-11-30 2017 2020
## 611 2018-07-07 2021-07-06 2018 2021
## 612 2018-07-31 2021-07-30 2018 2021
## 613 2018-09-07 2021-09-07 2018 2021
## 614 2018-05-10 2020-05-09 2018 2020
## 615 2018-08-31 2021-08-29 2018 2021
## 616 2018-09-30 2021-09-29 2018 2021
## 617 2018-03-05 2021-03-04 2018 2021
## 618 2018-06-30 2021-06-29 2018 2021
## 619 2018-06-22 2021-06-21 2018 2021
## 620 2018-08-28 2021-08-27 2018 2021
## 621 2018-05-14 2021-05-13 2018 2021
## 622 2018-06-30 2021-06-30 2018 2021
## 623 2017-11-09 2020-11-08 2017 2020
## 624 2018-08-14 2021-08-14 2018 2021
## 625 2018-08-12 2021-08-11 2018 2021
## 626 2018-03-04 2021-03-03 2018 2021
## 627 2018-05-31 2021-05-30 2018 2021
## 628 2018-10-25 2021-10-24 2018 2021
## 629 2018-09-30 2021-09-30 2018 2021
## 630 2017-10-05 2020-10-05 2017 2020
## 631 2018-04-22 2021-04-19 2018 2021
## 632 2018-09-29 2021-09-28 2018 2021
## 633 2018-11-08 2021-11-08 2018 2021
## 634 2018-08-19 2021-08-19 2018 2021
## 635 2018-04-24 2021-04-23 2018 2021
## 636 2018-08-20 2021-08-19 2018 2021
## 637 2018-05-24 2021-05-21 2018 2021
## 638 2018-07-08 2021-07-07 2018 2021
## 639 2018-09-14 2021-09-14 2018 2021
## 640 2018-02-20 2021-02-18 2018 2021
## 641 2017-12-17 2020-12-16 2017 2020
## 642 2018-09-02 2021-09-01 2018 2021
## 643 2018-06-27 2021-06-27 2018 2021
## 644 2018-04-21 2021-04-20 2018 2021
## 645 2018-08-31 2021-08-30 2018 2021
## 646 2018-07-31 2021-07-31 2018 2021
## 647 2017-12-06 2020-12-05 2017 2020
## 648 2019-02-24 2022-02-23 2019 2022
## 649 2018-09-30 2021-09-29 2018 2021
## 650 2018-09-06 2021-09-05 2018 2021
## 651 2018-09-06 2021-09-05 2018 2021
## 652 2018-06-08 2021-06-07 2018 2021
## 653 2018-07-22 2020-07-30 2018 2020
## 654 2018-08-19 2021-08-19 2018 2021
## 655 2018-07-08 2021-07-07 2018 2021
## 656 2018-08-20 2021-08-19 2018 2021
## 657 2018-09-04 2021-09-04 2018 2021
## 658 2018-03-11 2021-03-10 2018 2021
## 659 2017-10-29 2020-10-28 2017 2020
## 660 2018-08-02 2021-08-02 2018 2021
## 661 2017-11-30 2019-09-29 2017 2019
## 662 2018-03-30 2021-03-29 2018 2021
## 663 2018-08-28 2021-08-27 2018 2021
## 664 2018-09-12 2021-09-11 2018 2021
## 665 2018-05-12 2021-05-11 2018 2021
## 666 2018-08-10 2021-08-09 2018 2021
## 667 2018-07-29 2021-07-28 2018 2021
## 668 2017-11-26 2020-11-25 2017 2020
## 669 2018-09-23 2021-09-22 2018 2021
## 670 2018-05-25 2021-05-24 2018 2021
## 671 2018-08-11 2021-08-11 2018 2021
## 672 2018-09-11 2021-09-11 2018 2021
## 673 2018-02-04 2021-02-03 2018 2021
## 674 2018-02-25 2021-02-24 2018 2021
## 675 2018-11-12 2021-11-11 2018 2021
## 676 2018-08-27 2021-08-26 2018 2021
## 677 2018-02-07 2020-09-08 2018 2020
## 678 2018-08-31 2021-08-30 2018 2021
## 679 2019-01-03 2022-01-02 2019 2022
## 680 2018-09-01 2021-08-31 2018 2021
## 681 2017-10-15 2020-10-14 2017 2020
## 682 2018-07-22 2021-07-21 2018 2021
## 683 2018-08-05 2021-08-04 2018 2021
## 684 2018-08-09 2021-08-09 2018 2021
## 685 2018-10-12 2021-10-12 2018 2021
## 686 2018-03-15 2021-03-14 2018 2021
## 687 2018-07-30 2021-07-29 2018 2021
## 688 2018-02-06 2021-02-05 2018 2021
## 689 2018-06-24 2020-01-01 2018 2020
## 690 2018-08-29 2021-08-29 2018 2021
## 691 2018-09-11 2021-09-10 2018 2021
## 692 2018-09-20 2021-09-19 2018 2021
## 693 2017-12-30 2020-12-29 2017 2020
## 694 2018-09-19 2021-09-19 2018 2021
## 695 2018-07-27 2021-07-26 2018 2021
## 696 2018-09-01 2021-08-31 2018 2021
## 697 2018-09-06 2021-09-05 2018 2021
## 698 2018-02-20 2021-02-19 2018 2021
## 699 2018-02-11 2021-02-10 2018 2021
## 700 2018-01-31 2021-01-30 2018 2021
## 701 2018-07-31 2021-07-30 2018 2021
## 702 2018-06-25 2021-06-24 2018 2021
## 703 2017-12-25 2020-12-24 2017 2020
## 704 2018-09-02 2021-08-30 2018 2021
## 705 2018-03-12 2021-03-12 2018 2021
## 706 2017-11-26 2020-11-25 2017 2020
## 707 2018-01-15 2019-08-30 2018 2019
## 708 2018-08-02 2021-08-02 2018 2021
## 709 2018-10-07 2021-10-06 2018 2021
## 710 2017-10-06 2018-10-06 2017 2018
## 711 2018-09-13 2021-09-13 2018 2021
## 712 2018-05-09 2021-05-08 2018 2021
## 713 2018-08-30 2021-08-30 2018 2021
## 714 2018-08-14 2021-08-14 2018 2021
## 715 2018-10-06 2021-10-05 2018 2021
## 716 2018-06-09 2021-06-06 2018 2021
## 717 2018-09-04 2021-09-03 2018 2021
## 718 2018-08-23 2021-08-22 2018 2021
## 719 2018-09-18 2021-09-18 2018 2021
## 720 2017-10-11 2020-10-10 2017 2020
## 721 2018-08-12 2021-08-12 2018 2021
## 722 2018-08-31 2021-08-30 2018 2021
## 723 2018-08-12 2021-08-11 2018 2021
## 724 2018-11-16 2021-11-15 2018 2021
## 725 2018-09-04 2021-09-03 2018 2021
## 726 2018-08-15 2021-08-14 2018 2021
## 727 2018-09-08 2021-09-07 2018 2021
## 728 2018-09-06 2021-09-05 2018 2021
## 729 2018-05-22 2021-05-21 2018 2021
## 730 2018-08-20 2021-08-19 2018 2021
## 731 2017-11-28 2020-11-27 2017 2020
## 732 2018-01-14 2021-01-14 2018 2021
## 733 2018-08-21 2021-08-20 2018 2021
## 734 2018-12-28 2021-12-27 2018 2021
## 735 2018-09-01 2021-08-31 2018 2021
## 736 2018-08-31 2021-03-30 2018 2021
## 737 2018-08-02 2021-08-02 2018 2021
## 738 2018-08-31 2021-08-30 2018 2021
## 739 2018-03-13 2019-03-13 2018 2019
## 740 2018-12-31 2021-12-31 2018 2021
## 741 2018-04-22 2019-09-17 2018 2019
## 742 2018-04-26 2021-04-25 2018 2021
## 743 2018-03-18 2021-03-17 2018 2021
## 744 2018-08-14 2019-05-23 2018 2019
## 745 2018-08-28 2021-08-27 2018 2021
## 746 2018-12-04 2021-12-03 2018 2021
## 747 2018-08-14 2021-08-13 2018 2021
## 748 2018-09-30 2021-09-29 2018 2021
## 749 2018-07-08 2021-07-07 2018 2021
## 750 2018-09-01 2021-08-31 2018 2021
## 751 2018-02-28 2021-02-27 2018 2021
## 752 2018-08-12 2021-08-12 2018 2021
## 753 2018-02-28 2021-02-27 2018 2021
## 754 2018-09-09 2021-09-08 2018 2021
## 755 2018-08-13 2021-08-13 2018 2021
## 756 2018-09-22 2021-09-21 2018 2021
## 757 2019-02-06 2022-02-05 2019 2022
## 758 2018-07-31 2021-07-30 2018 2021
## 759 2018-05-31 2021-05-30 2018 2021
## 760 2018-09-02 2021-09-01 2018 2021
## 761 2018-08-19 2021-08-18 2018 2021
## 762 2017-10-31 2020-10-31 2017 2020
## 763 2018-04-02 2021-04-01 2018 2021
## 764 2018-07-26 2021-07-25 2018 2021
## 765 2018-09-14 2021-09-13 2018 2021
## 766 2018-05-01 2020-06-29 2018 2020
## 767 2018-09-02 2021-09-01 2018 2021
## 768 2018-12-11 2021-12-10 2018 2021
## 769 2018-02-24 2021-02-23 2018 2021
## 770 2017-12-28 2020-12-28 2017 2020
## 771 2018-08-31 2021-08-30 2018 2021
## 772 2018-07-24 2021-07-23 2018 2021
## 773 2018-08-25 2021-08-24 2018 2021
## 774 2018-06-10 2021-06-09 2018 2021
## 775 2018-09-10 2021-09-09 2018 2021
## 776 2018-08-31 2021-08-30 2018 2021
## 777 2018-09-11 2021-09-10 2018 2021
## 778 2018-07-31 2021-07-30 2018 2021
## 779 2018-03-19 2021-03-18 2018 2021
## 780 2018-01-25 2020-01-24 2018 2020
## 781 2018-09-24 2021-09-23 2018 2021
## 782 2018-01-06 2021-01-06 2018 2021
## 783 2018-06-26 2021-06-25 2018 2021
## 784 2018-08-30 2021-08-29 2018 2021
## 785 2017-10-05 2020-10-04 2017 2020
## 786 2018-01-16 2021-01-16 2018 2021
## 787 2018-09-13 2021-09-13 2018 2021
## 788 2018-08-19 2021-08-19 2018 2021
## 789 2018-09-05 2021-09-04 2018 2021
## 790 2018-09-03 2021-09-02 2018 2021
## 791 2018-09-21 2021-09-20 2018 2021
## 792 2018-08-06 2021-08-05 2018 2021
## 793 2017-11-08 2020-11-07 2017 2020
## 794 2018-08-14 2021-08-13 2018 2021
## 795 2018-09-13 2021-09-12 2018 2021
## 796 2018-09-17 2021-09-16 2018 2021
## 797 2018-09-04 2021-09-04 2018 2021
## 798 2018-08-31 2021-08-30 2018 2021
## 799 2018-07-31 2021-07-30 2018 2021
## 800 2018-01-24 2021-01-23 2018 2021
## 801 2018-08-01 2021-07-31 2018 2021
## 802 2018-08-20 2021-08-19 2018 2021
## 803 2018-09-10 2021-09-09 2018 2021
## 804 2018-08-31 2021-08-31 2018 2021
## 805 2018-09-19 2021-09-19 2018 2021
## 806 2017-11-30 2020-11-29 2017 2020
## 807 2018-05-27 2021-05-26 2018 2021
## 808 2018-07-24 2021-07-23 2018 2021
## 809 2018-02-28 2021-02-27 2018 2021
## 810 2018-01-31 2021-01-30 2018 2021
## 811 2018-09-18 2020-09-17 2018 2020
## 812 2018-09-17 2021-09-16 2018 2021
## 813 2018-06-10 2021-06-10 2018 2021
## 814 2018-09-30 2021-09-30 2018 2021
## 815 2018-09-12 2021-09-12 2018 2021
## 816 2018-08-14 2021-08-13 2018 2021
## 817 2018-09-14 2021-09-14 2018 2021
## 818 2018-08-06 2021-08-06 2018 2021
## 819 2018-08-14 2021-08-13 2018 2021
## 820 2018-02-11 2021-02-10 2018 2021
## 821 2018-09-06 2021-09-05 2018 2021
## 822 2018-09-01 2021-09-01 2018 2021
## 823 2018-08-19 2021-08-18 2018 2021
## 824 2018-09-30 2021-09-29 2018 2021
## 825 2018-07-31 2021-07-30 2018 2021
## 826 2017-11-05 2020-11-02 2017 2020
## 827 2018-09-05 2021-09-04 2018 2021
## 828 2018-09-17 2021-09-17 2018 2021
## 829 2018-09-04 2021-09-03 2018 2021
## 830 2018-06-04 2021-06-03 2018 2021
## 831 2018-12-26 2019-12-25 2018 2019
## 832 2018-09-30 2021-09-29 2018 2021
## 833 2019-03-12 2022-03-12 2019 2022
## 834 2017-11-12 2020-11-11 2017 2020
## 835 2018-02-08 2021-02-05 2018 2021
## 836 2017-11-28 2020-11-27 2017 2020
## 837 2018-07-14 2021-07-13 2018 2021
## 838 2018-08-15 2021-08-14 2018 2021
## 839 2018-04-19 2021-04-18 2018 2021
## 840 2018-03-04 2021-03-03 2018 2021
## 841 2018-08-25 2021-08-25 2018 2021
## 842 2018-06-17 2021-06-17 2018 2021
## 843 2018-09-05 2021-09-05 2018 2021
## 844 2018-01-03 2021-01-02 2018 2021
## 845 2018-12-23 2021-12-22 2018 2021
## 846 2018-06-08 2021-06-07 2018 2021
## 847 2018-04-30 2021-04-29 2018 2021
## 848 2018-09-15 2021-09-14 2018 2021
## 849 2018-12-27 2021-12-26 2018 2021
## 850 2018-02-25 2021-02-24 2018 2021
## 851 2018-07-15 2021-07-14 2018 2021
## 852 2018-07-31 2021-07-30 2018 2021
## 853 2018-06-21 2021-06-20 2018 2021
## 854 2018-01-28 2021-01-28 2018 2021
## 855 2018-09-08 2021-09-02 2018 2021
## 856 2018-04-30 2021-04-29 2018 2021
## 857 2018-06-18 2019-09-12 2018 2019
## 858 2018-06-14 2021-06-14 2018 2021
## 859 2018-01-15 2021-01-14 2018 2021
## 860 2018-08-31 2021-08-31 2018 2021
## 861 2018-09-06 2021-09-05 2018 2021
## 862 2018-01-07 2019-01-06 2018 2019
## 863 2017-10-15 2020-10-14 2017 2020
## 864 2018-05-10 2021-05-10 2018 2021
## 865 2018-12-06 2021-12-05 2018 2021
## 866 2018-07-31 2021-07-30 2018 2021
## 867 2018-09-10 2021-09-09 2018 2021
## 868 2018-08-20 2021-08-19 2018 2021
## 869 2018-04-12 2021-04-11 2018 2021
## 870 2018-09-05 2021-09-03 2018 2021
## 871 2018-08-05 2021-08-02 2018 2021
## 872 2018-09-07 2021-09-06 2018 2021
## 873 2018-01-23 2021-01-22 2018 2021
## 874 2018-07-29 2021-07-28 2018 2021
## 875 2018-05-07 2020-10-25 2018 2020
## 876 2018-10-21 2021-10-20 2018 2021
## 877 2019-01-06 2022-01-05 2019 2022
## 878 2018-06-12 2021-06-11 2018 2021
## 879 2018-04-02 2021-03-30 2018 2021
## 880 2018-06-24 2021-06-24 2018 2021
## 881 2018-07-04 2021-07-03 2018 2021
## 882 2018-03-27 2021-03-26 2018 2021
## 883 2017-11-28 2020-11-27 2017 2020
## 884 2018-06-30 2019-06-29 2018 2019
## 885 2018-08-11 2021-08-10 2018 2021
## 886 2018-03-29 2021-03-26 2018 2021
## 887 2018-02-18 2021-02-17 2018 2021
## 888 2018-09-07 2021-09-06 2018 2021
## 889 2018-08-19 2021-08-18 2018 2021
## 890 2018-02-25 2021-02-24 2018 2021
## 891 2018-08-13 2021-08-12 2018 2021
## 892 2018-09-19 2021-09-18 2018 2021
## 893 2017-10-22 2020-10-22 2017 2020
## 894 2017-10-14 2020-10-13 2017 2020
## 895 2018-01-25 2019-09-29 2018 2019
## 896 2017-10-15 2020-10-14 2017 2020
## 897 2018-09-12 2021-09-11 2018 2021
## 898 2018-01-07 2021-01-06 2018 2021
## 899 2018-03-30 2021-03-29 2018 2021
## 900 2018-04-24 2021-04-23 2018 2021
## 901 2018-09-10 2021-09-09 2018 2021
## 902 2018-07-28 2021-07-27 2018 2021
## 903 2018-08-17 2021-08-16 2018 2021
## 904 2018-04-08 2021-04-08 2018 2021
## 905 2018-09-03 2021-09-02 2018 2021
## 906 2018-07-31 2021-07-30 2018 2021
## 907 2018-07-01 2021-07-01 2018 2021
## 908 2018-08-31 2021-08-31 2018 2021
## 909 2017-12-10 2020-12-10 2017 2020
## 910 2018-01-31 2021-01-31 2018 2021
## 911 2018-07-15 2021-07-14 2018 2021
## 912 2018-06-13 2021-06-12 2018 2021
## 913 2018-09-08 2021-09-08 2018 2021
## 914 2018-02-15 2021-02-15 2018 2021
## 915 2018-03-15 2021-03-14 2018 2021
## 916 2018-07-31 2019-07-30 2018 2019
## 917 2018-08-31 2019-08-30 2018 2019
## 918 2018-11-27 2021-11-26 2018 2021
## 919 2018-07-11 2021-07-11 2018 2021
## 920 2018-09-17 2021-09-14 2018 2021
## 921 2019-02-14 2022-02-13 2019 2022
## 922 2018-09-07 2021-09-06 2018 2021
## 923 2018-08-30 2021-08-29 2018 2021
## 924 2018-09-14 2021-09-13 2018 2021
## 925 2018-09-30 2021-09-30 2018 2021
## 926 2018-09-14 2021-09-13 2018 2021
## 927 2018-06-12 2021-06-11 2018 2021
## 928 2018-08-02 2021-08-01 2018 2021
## 929 2017-11-21 2020-11-20 2017 2020
## 930 2018-07-31 2021-07-30 2018 2021
## 931 2018-09-14 2021-09-13 2018 2021
## 932 2018-01-10 2021-01-09 2018 2021
## 933 2018-09-10 2021-09-09 2018 2021
## 934 2018-06-29 2021-06-28 2018 2021
## 935 2018-01-21 2021-01-21 2018 2021
## 936 2018-08-19 2021-08-18 2018 2021
## 937 2018-09-18 2021-09-18 2018 2021
## 938 2018-09-03 2021-09-03 2018 2021
## 939 2018-06-24 2021-06-24 2018 2021
## 940 2017-10-31 2020-10-30 2017 2020
## 941 2017-11-19 2020-11-19 2017 2020
## 942 2018-08-14 2021-08-13 2018 2021
## 943 2018-07-19 2021-07-18 2018 2021
## 944 2018-06-09 2021-06-08 2018 2021
## 945 2018-09-10 2021-09-09 2018 2021
## 946 2018-03-06 2021-03-05 2018 2021
## 947 2018-08-15 2021-08-14 2018 2021
## 948 2018-09-19 2021-09-19 2018 2021
## 949 2018-09-20 2021-09-19 2018 2021
## 950 2018-06-14 2021-06-14 2018 2021
## 951 2018-08-23 2020-08-22 2018 2020
## 952 2017-12-28 2020-12-28 2017 2020
## 953 2018-09-24 2021-09-23 2018 2021
## 954 2018-04-30 2021-04-29 2018 2021
## 955 2018-11-15 2019-11-14 2018 2019
## 956 2019-02-27 2021-02-26 2019 2021
## 957 2018-03-20 2021-03-19 2018 2021
## 958 2018-09-03 2021-09-02 2018 2021
## 959 2018-02-09 2021-02-08 2018 2021
## 960 2018-08-19 2021-08-18 2018 2021
## 961 2018-09-26 2021-09-26 2018 2021
## 962 2018-05-08 2021-05-07 2018 2021
## 963 2018-05-14 2021-05-13 2018 2021
## 964 2018-01-04 2021-01-03 2018 2021
## 965 2018-08-22 2021-08-21 2018 2021
## 966 2018-03-01 2021-02-28 2018 2021
## 967 2018-02-21 2021-02-20 2018 2021
## 968 2018-08-26 2021-08-25 2018 2021
## 969 2018-07-31 2021-07-30 2018 2021
## 970 2018-03-11 2021-03-10 2018 2021
## 971 2018-09-21 2021-09-20 2018 2021
## 972 2018-06-20 2021-06-19 2018 2021
## 973 2018-08-31 2021-08-30 2018 2021
## 974 2018-08-30 2021-08-29 2018 2021
## 975 2018-08-19 2021-08-19 2018 2021
## 976 2017-12-17 2020-12-16 2017 2020
## 977 2018-08-10 2021-08-09 2018 2021
## 978 2018-07-05 2021-07-05 2018 2021
## 979 2018-09-09 2021-09-08 2018 2021
## 980 2018-09-06 2021-09-05 2018 2021
## 981 2018-08-23 2021-08-22 2018 2021
## 982 2018-09-09 2021-09-08 2018 2021
## 983 2018-09-17 2021-09-16 2018 2021
## 984 2018-08-10 2021-08-09 2018 2021
## 985 2018-08-28 2021-08-27 2018 2021
## 986 2018-06-18 2021-06-17 2018 2021
## 987 2018-08-31 2021-08-29 2018 2021
## 988 2018-08-24 2021-08-23 2018 2021
## 989 2018-09-16 2021-09-15 2018 2021
## 990 2018-09-05 2021-09-04 2018 2021
## 991 2018-04-10 2020-09-03 2018 2020
## 992 2017-11-02 2020-11-02 2017 2020
## 993 2018-05-21 2021-05-20 2018 2021
## 994 2018-08-27 2021-08-26 2018 2021
## 995 2018-04-22 2019-09-29 2018 2019
## 996 2018-08-31 2021-08-31 2018 2021
## 997 2018-10-03 2021-10-02 2018 2021
## 998 2018-04-18 2021-04-17 2018 2021
## 999 2018-07-31 2021-07-30 2018 2021
## 1000 2018-08-14 2021-08-13 2018 2021
## 1001 2018-08-28 2021-08-28 2018 2021
## 1002 2018-09-05 2021-09-04 2018 2021
## 1003 2018-09-25 2021-09-24 2018 2021
## 1004 2017-12-28 2020-12-27 2017 2020
## 1005 2018-09-12 2021-09-11 2018 2021
## 1006 2018-09-20 2021-09-20 2018 2021
## 1007 2018-03-04 2021-03-03 2018 2021
## 1008 2018-08-08 2021-08-08 2018 2021
## 1009 2018-09-13 2021-09-13 2018 2021
## 1010 2018-08-21 2021-08-20 2018 2021
## 1011 2018-05-23 2021-05-22 2018 2021
## 1012 2018-09-13 2021-09-12 2018 2021
## 1013 2018-09-15 2021-09-14 2018 2021
## 1014 2018-02-20 2021-02-19 2018 2021
## 1015 2018-09-06 2021-09-05 2018 2021
## 1016 2018-05-14 2021-05-13 2018 2021
## 1017 2018-08-12 2021-08-11 2018 2021
## 1018 2018-02-25 2019-12-27 2018 2019
## 1019 2018-07-18 2021-07-18 2018 2021
## 1020 2018-08-24 2021-08-23 2018 2021
## 1021 2019-03-13 2022-03-12 2019 2022
## 1022 2018-08-27 2021-08-27 2018 2021
## 1023 2018-07-24 2021-07-23 2018 2021
## 1024 2018-08-31 2021-08-30 2018 2021
## 1025 2018-04-25 2021-04-25 2018 2021
## 1026 2018-09-07 2021-09-06 2018 2021
## 1027 2018-08-23 2021-08-23 2018 2021
## 1028 2018-07-22 2021-07-21 2018 2021
## 1029 2018-09-19 2021-09-18 2018 2021
## 1030 2018-03-29 2021-03-26 2018 2021
## 1031 2018-09-16 2021-09-15 2018 2021
## 1032 2018-08-12 2021-08-11 2018 2021
## 1033 2018-08-23 2021-08-22 2018 2021
## 1034 2018-07-01 2021-06-30 2018 2021
## 1035 2018-08-12 2021-08-09 2018 2021
## 1036 2018-05-20 2021-05-19 2018 2021
## 1037 2018-09-11 2020-09-11 2018 2020
## 1038 2018-11-30 2021-11-29 2018 2021
## 1039 2018-09-04 2021-09-03 2018 2021
## 1040 2018-09-06 2021-09-05 2018 2021
## 1041 2018-08-21 2021-08-20 2018 2021
## 1042 2018-03-08 2021-03-07 2018 2021
## 1043 2017-12-05 2020-12-02 2017 2020
## 1044 2018-08-26 2021-08-18 2018 2021
## 1045 2018-09-08 2021-09-08 2018 2021
## 1046 2018-12-27 2021-12-26 2018 2021
## 1047 2018-02-20 2021-02-19 2018 2021
## 1048 2018-09-03 2021-09-02 2018 2021
## 1049 2018-08-11 2021-08-10 2018 2021
## 1050 2018-06-30 2021-06-29 2018 2021
## 1051 2018-09-18 2021-09-18 2018 2021
## 1052 2018-07-10 2021-07-09 2018 2021
## 1053 2018-09-11 2021-09-10 2018 2021
## 1054 2018-08-29 2021-08-28 2018 2021
## 1055 2018-09-23 2021-09-22 2018 2021
## 1056 2018-09-05 2021-09-04 2018 2021
## 1057 2018-08-21 2021-08-21 2018 2021
## 1058 2018-08-05 2021-08-05 2018 2021
## 1059 2018-02-25 2021-02-24 2018 2021
## 1060 2018-09-16 2021-09-13 2018 2021
## 1061 2018-08-31 2021-08-31 2018 2021
## 1062 2018-04-03 2021-04-02 2018 2021
## 1063 2018-10-28 2021-10-27 2018 2021
## 1064 2018-08-27 2021-08-26 2018 2021
## 1065 2018-09-09 2021-09-08 2018 2021
## 1066 2018-08-27 2021-08-23 2018 2021
## 1067 2018-09-14 2021-09-13 2018 2021
## 1068 2018-09-16 2021-09-15 2018 2021
## 1069 2018-08-14 2021-08-14 2018 2021
## 1070 2018-09-19 2021-09-18 2018 2021
## 1071 2018-08-08 2021-08-07 2018 2021
## 1072 2018-07-08 2021-07-08 2018 2021
## 1073 2018-09-13 2021-09-12 2018 2021
## 1074 2018-08-31 2021-08-30 2018 2021
## 1075 2018-09-11 2021-09-10 2018 2021
## 1076 2018-08-01 2021-07-31 2018 2021
## 1077 2018-07-31 2021-07-31 2018 2021
## 1078 2018-09-30 2021-09-29 2018 2021
## 1079 2018-09-30 2021-09-29 2018 2021
## 1080 2018-02-19 2021-02-18 2018 2021
## 1081 2018-06-03 2021-06-03 2018 2021
## 1082 2018-09-30 2021-09-29 2018 2021
## 1083 2018-10-01 2021-09-30 2018 2021
## 1084 2018-03-25 2021-03-25 2018 2021
## 1085 2017-12-10 2020-12-10 2017 2020
## 1086 2018-08-31 2021-08-30 2018 2021
## 1087 2018-06-07 2021-06-07 2018 2021
## 1088 2018-02-27 2021-02-26 2018 2021
## 1089 2018-03-25 2021-03-24 2018 2021
## 1090 2018-08-19 2021-08-18 2018 2021
## 1091 2017-11-09 2019-11-08 2017 2019
## 1092 2018-12-19 2021-12-18 2018 2021
## 1093 2018-05-09 2021-05-08 2018 2021
## 1094 2017-12-29 2019-12-28 2017 2019
## 1095 2018-09-10 2021-09-09 2018 2021
## 1096 2018-08-04 2021-08-03 2018 2021
## 1097 2017-10-25 2020-10-24 2017 2020
## 1098 2018-06-04 2020-08-30 2018 2020
## 1099 2018-06-30 2018-12-30 2018 2018
## 1100 2018-07-31 2021-07-30 2018 2021
## 1101 2018-09-09 2021-09-08 2018 2021
## 1102 2018-07-22 2021-07-21 2018 2021
## 1103 2018-04-01 2021-03-31 2018 2021
## 1104 2018-09-06 2019-09-06 2018 2019
## 1105 2017-10-05 2019-09-24 2017 2019
## 1106 2018-01-04 2021-01-03 2018 2021
## 1107 2018-08-30 2021-08-30 2018 2021
## 1108 2018-04-01 2021-03-31 2018 2021
## 1109 2018-08-06 2021-08-06 2018 2021
## 1110 2018-06-30 2021-06-29 2018 2021
## 1111 2018-09-05 2021-09-04 2018 2021
## 1112 2017-11-05 2020-11-02 2017 2020
## 1113 2018-09-30 2021-09-29 2018 2021
## 1114 2018-08-22 2021-08-21 2018 2021
## 1115 2017-11-26 2018-12-30 2017 2018
## 1116 2018-09-29 2021-09-29 2018 2021
## 1117 2018-04-22 2021-04-21 2018 2021
## 1118 2018-07-23 2021-07-20 2018 2021
## 1119 2018-09-01 2021-08-31 2018 2021
## 1120 2018-08-31 2021-08-30 2018 2021
## 1121 2018-07-31 2021-07-31 2018 2021
## 1122 2018-05-30 2021-05-30 2018 2021
## 1123 2018-09-10 2021-09-10 2018 2021
## 1124 2018-08-04 2021-08-03 2018 2021
## 1125 2018-09-09 2021-09-08 2018 2021
## 1126 2018-06-28 2021-06-27 2018 2021
## 1127 2018-08-04 2021-08-01 2018 2021
## 1128 2017-11-20 2017-11-27 2017 2017
## 1129 2018-09-25 2021-09-25 2018 2021
## 1130 2018-03-28 2021-03-28 2018 2021
## 1131 2018-07-31 2021-07-31 2018 2021
## 1132 2018-08-09 2021-08-08 2018 2021
## 1133 2018-09-20 2021-09-19 2018 2021
## 1134 2018-03-25 2019-09-05 2018 2019
## 1135 2017-10-29 2020-10-29 2017 2020
## 1136 2018-06-03 2021-06-02 2018 2021
## 1137 2018-09-18 2021-09-18 2018 2021
## 1138 2018-09-11 2021-09-10 2018 2021
## 1139 2018-02-13 2021-02-13 2018 2021
## 1140 2018-09-17 2021-09-17 2018 2021
## 1141 2018-05-31 2021-05-30 2018 2021
## 1142 2018-08-01 2021-07-31 2018 2021
## 1143 2018-11-22 2021-11-21 2018 2021
## 1144 2018-08-27 2021-08-27 2018 2021
## 1145 2018-09-17 2021-09-17 2018 2021
## 1146 2018-07-31 2019-05-30 2018 2019
## 1147 2018-09-14 2021-09-14 2018 2021
## 1148 2017-12-13 2018-12-30 2017 2018
## 1149 2018-04-19 2021-04-18 2018 2021
## 1150 2017-10-31 2020-10-30 2017 2020
## 1151 2018-05-20 2019-09-23 2018 2019
## 1152 2017-10-22 2020-10-21 2017 2020
## 1153 2018-08-31 2021-08-29 2018 2021
## 1154 2018-06-24 2021-05-30 2018 2021
## 1155 2018-09-02 2021-09-02 2018 2021
## 1156 2018-11-29 2021-11-29 2018 2021
## 1157 2018-08-04 2021-08-03 2018 2021
## 1158 2018-04-11 2021-04-10 2018 2021
## 1159 2018-08-23 2021-08-22 2018 2021
## 1160 2018-09-25 2021-09-25 2018 2021
## 1161 2018-09-29 2021-09-28 2018 2021
## 1162 2018-09-04 2021-09-03 2018 2021
## 1163 2018-09-17 2021-09-17 2018 2021
## 1164 2019-02-21 2022-02-20 2019 2022
## 1165 2017-10-09 2020-10-08 2017 2020
## 1166 2018-04-29 2021-04-29 2018 2021
## 1167 2018-07-29 2021-06-30 2018 2021
## 1168 2018-04-30 2021-04-29 2018 2021
## 1169 2018-07-31 2021-07-30 2018 2021
## 1170 2018-08-09 2020-02-28 2018 2020
## 1171 2018-08-12 2021-08-12 2018 2021
## 1172 2018-07-25 2021-07-24 2018 2021
## 1173 2017-10-12 2020-09-10 2017 2020
## 1174 2018-03-04 2021-03-03 2018 2021
## 1175 2018-08-30 2021-08-29 2018 2021
## 1176 2018-08-07 2021-08-07 2018 2021
## 1177 2018-02-14 2021-02-14 2018 2021
## 1178 2018-09-01 2021-08-31 2018 2021
## 1179 2018-07-31 2021-07-30 2018 2021
## 1180 2018-08-31 2021-03-30 2018 2021
## 1181 2018-05-10 2021-05-09 2018 2021
## 1182 2018-08-30 2021-08-28 2018 2021
## 1183 2018-02-26 2021-02-25 2018 2021
## 1184 2018-09-09 2021-09-08 2018 2021
## 1185 2018-09-09 2021-09-08 2018 2021
## 1186 2018-02-04 2021-02-03 2018 2021
## 1187 2018-09-30 2021-09-29 2018 2021
## 1188 2018-08-07 2021-08-06 2018 2021
## 1189 2018-08-12 2021-08-11 2018 2021
## 1190 2018-08-31 2021-08-30 2018 2021
## 1191 2018-08-28 2021-08-28 2018 2021
## 1192 2018-06-30 2021-06-29 2018 2021
## 1193 2018-09-19 2021-09-19 2018 2021
## 1194 2018-03-04 2021-03-03 2018 2021
## 1195 2018-06-08 2021-06-07 2018 2021
## 1196 2018-08-07 2021-08-07 2018 2021
## 1197 2018-10-02 2020-10-01 2018 2020
## 1198 2018-09-25 2021-09-25 2018 2021
## 1199 2018-06-28 2021-06-27 2018 2021
## 1200 2018-08-07 2021-08-06 2018 2021
## 1201 2018-08-31 2021-08-30 2018 2021
## 1202 2018-07-20 2021-07-20 2018 2021
## 1203 2018-08-20 2021-08-20 2018 2021
## 1204 2018-08-20 2021-08-19 2018 2021
## 1205 2018-06-07 2021-06-07 2018 2021
## 1206 2018-09-01 2021-09-01 2018 2021
## 1207 2018-10-13 2021-10-12 2018 2021
## 1208 2018-08-12 2021-08-11 2018 2021
## 1209 2018-09-30 2021-09-30 2018 2021
## 1210 2018-07-31 2021-07-30 2018 2021
## 1211 2018-09-12 2021-09-11 2018 2021
## 1212 2018-03-13 2019-03-30 2018 2019
## 1213 2018-07-24 2021-07-21 2018 2021
## 1214 2018-09-01 2021-08-31 2018 2021
## 1215 2018-08-31 2021-08-30 2018 2021
## 1216 2018-10-18 2021-10-17 2018 2021
## 1217 2018-09-14 2020-09-13 2018 2020
## 1218 2018-09-04 2021-09-04 2018 2021
## 1219 2017-11-02 2020-11-01 2017 2020
## 1220 2018-06-30 2021-06-29 2018 2021
## 1221 2017-10-03 2020-10-02 2017 2020
## 1222 2018-09-13 2021-09-12 2018 2021
## 1223 2018-05-20 2021-05-19 2018 2021
## 1224 2019-02-23 2022-02-23 2019 2022
## 1225 2017-09-25 2020-09-23 2017 2020
## 1226 2018-09-07 2021-09-07 2018 2021
## 1227 2018-09-13 2021-09-12 2018 2021
## 1228 2018-08-05 2021-08-04 2018 2021
## 1229 2018-09-14 2021-09-13 2018 2021
## 1230 2018-08-31 2021-08-30 2018 2021
## 1231 2018-09-11 2021-09-10 2018 2021
## 1232 2018-09-11 2021-09-10 2018 2021
## 1233 2017-10-31 2020-10-30 2017 2020
## 1234 2018-09-18 2021-09-17 2018 2021
## 1235 2018-04-30 2020-12-31 2018 2020
## 1236 2018-09-29 2021-09-29 2018 2021
## 1237 2018-03-14 2021-03-13 2018 2021
## 1238 2018-03-09 2021-03-08 2018 2021
## 1239 2018-10-07 2021-10-06 2018 2021
## 1240 2018-07-31 2021-07-30 2018 2021
## 1241 2018-07-18 2021-07-17 2018 2021
## 1242 2018-01-04 2021-01-03 2018 2021
## 1243 2018-09-06 2021-09-05 2018 2021
## 1244 2018-03-21 2021-03-20 2018 2021
## 1245 2018-08-07 2021-08-07 2018 2021
## 1246 2019-02-24 2022-01-23 2019 2022
## 1247 2018-01-17 2021-01-16 2018 2021
## 1248 2018-02-02 2021-02-01 2018 2021
## 1249 2018-07-08 2021-07-07 2018 2021
## 1250 2017-12-15 2020-12-14 2017 2020
## 1251 2018-09-20 2021-09-19 2018 2021
## 1252 2018-07-31 2021-07-31 2018 2021
## 1253 2018-09-13 2021-09-12 2018 2021
## 1254 2018-09-23 2020-09-23 2018 2020
## 1255 2018-09-16 2021-09-15 2018 2021
## 1256 2017-11-01 2020-10-31 2017 2020
## 1257 2018-03-28 2021-03-18 2018 2021
## 1258 2018-08-05 2021-08-04 2018 2021
## 1259 2018-07-30 2021-07-29 2018 2021
## 1260 2018-02-09 2021-02-09 2018 2021
## 1261 2018-08-15 2021-07-14 2018 2021
## 1262 2018-09-16 2021-09-15 2018 2021
## 1263 2017-12-28 2020-12-27 2017 2020
## 1264 2018-07-14 2021-07-13 2018 2021
## 1265 2018-07-09 2021-07-08 2018 2021
## 1266 2018-07-30 2021-07-30 2018 2021
## 1267 2018-03-25 2021-03-25 2018 2021
## 1268 2018-09-06 2021-09-05 2018 2021
## 1269 2018-09-29 2021-09-29 2018 2021
## 1270 2018-05-31 2021-05-30 2018 2021
## 1271 2018-09-06 2021-09-06 2018 2021
## 1272 2017-11-13 2020-11-13 2017 2020
## 1273 2018-04-22 2021-04-21 2018 2021
## 1274 2018-08-22 2019-08-21 2018 2019
## 1275 2019-01-17 2022-01-16 2019 2022
## 1276 2018-05-08 2021-05-07 2018 2021
## 1277 2018-02-25 2021-02-24 2018 2021
## 1278 2018-08-26 2021-08-25 2018 2021
## 1279 2018-05-02 2021-05-01 2018 2021
## 1280 2018-08-27 2021-08-27 2018 2021
## 1281 2018-07-30 2021-07-29 2018 2021
## 1282 2018-01-25 2021-01-25 2018 2021
## 1283 2018-01-31 2021-01-30 2018 2021
## 1284 2018-08-24 2021-08-23 2018 2021
## 1285 2018-08-20 2020-12-30 2018 2020
## 1286 2018-09-23 2021-09-23 2018 2021
## 1287 2019-01-24 2022-01-24 2019 2022
## 1288 2018-09-05 2021-09-04 2018 2021
## 1289 2018-06-30 2021-06-29 2018 2021
## 1290 2018-09-11 2021-09-11 2018 2021
## 1291 2018-02-27 2021-02-26 2018 2021
## 1292 2018-09-30 2021-09-30 2018 2021
## 1293 2018-09-15 2021-09-14 2018 2021
## 1294 2018-09-12 2021-09-11 2018 2021
## 1295 2018-03-31 2021-03-30 2018 2021
## 1296 2018-08-28 2021-08-27 2018 2021
## 1297 2018-04-30 2021-04-29 2018 2021
## 1298 2018-06-14 2021-06-14 2018 2021
## 1299 2017-11-15 2020-11-14 2017 2020
## 1300 2018-08-03 2021-08-02 2018 2021
## 1301 2017-12-31 2020-12-30 2017 2020
## 1302 2018-08-31 2021-08-30 2018 2021
## 1303 2018-08-20 2021-08-19 2018 2021
## 1304 2018-08-29 2021-08-28 2018 2021
## 1305 2018-08-05 2021-08-04 2018 2021
## 1306 2018-09-30 2020-09-29 2018 2020
## 1307 2017-11-19 2020-11-19 2017 2020
## 1308 2018-09-29 2021-09-29 2018 2021
## 1309 2018-09-20 2021-09-19 2018 2021
## 1310 2018-09-04 2021-09-04 2018 2021
## 1311 2018-04-11 2021-04-09 2018 2021
## 1312 2018-08-08 2021-08-07 2018 2021
## 1313 2018-08-26 2021-08-25 2018 2021
## 1314 2017-12-03 2020-12-02 2017 2020
## 1315 2018-05-20 2021-05-19 2018 2021
## 1316 2018-02-28 2021-02-27 2018 2021
## 1317 2017-11-13 2020-11-12 2017 2020
## 1318 2018-08-19 2021-08-18 2018 2021
## 1319 2018-02-11 2019-09-24 2018 2019
## 1320 2018-03-25 2021-03-24 2018 2021
## 1321 2018-04-23 2021-04-22 2018 2021
## 1322 2018-02-04 2021-02-04 2018 2021
## 1323 2018-09-29 2021-09-29 2018 2021
## 1324 2018-09-13 2021-09-13 2018 2021
## 1325 2018-12-13 2021-12-12 2018 2021
## 1326 2018-08-22 2021-08-21 2018 2021
## 1327 2019-03-19 2022-03-18 2019 2022
## 1328 2018-07-30 2021-07-29 2018 2021
## 1329 2018-05-17 2021-05-14 2018 2021
## 1330 2018-09-05 2021-09-04 2018 2021
## 1331 2018-05-31 2021-05-31 2018 2021
## 1332 2018-08-31 2021-08-30 2018 2021
## 1333 2018-08-31 2021-08-31 2018 2021
## 1334 2018-06-10 2021-06-10 2018 2021
## 1335 2018-10-01 2021-10-01 2018 2021
## 1336 2018-06-28 2021-06-27 2018 2021
## 1337 2018-08-19 2021-08-18 2018 2021
## 1338 2017-10-03 2020-01-11 2017 2020
## 1339 2018-09-06 2021-09-05 2018 2021
## 1340 2018-09-04 2021-09-04 2018 2021
## 1341 2018-02-26 2021-02-25 2018 2021
## 1342 2018-08-31 2021-08-31 2018 2021
## 1343 2018-04-15 2018-12-30 2018 2018
## 1344 2018-07-31 2021-07-31 2018 2021
## 1345 2018-09-07 2021-09-06 2018 2021
## 1346 2018-02-11 2021-02-10 2018 2021
## 1347 2018-09-29 2021-09-29 2018 2021
## 1348 2018-05-11 2021-04-08 2018 2021
## 1349 2018-06-19 2021-06-19 2018 2021
## 1350 2018-06-14 2021-06-14 2018 2021
## 1351 2018-05-27 2021-05-26 2018 2021
## 1352 2018-09-12 2021-09-11 2018 2021
## 1353 2018-08-04 2021-08-03 2018 2021
## 1354 2018-03-22 2021-03-22 2018 2021
## 1355 2017-10-15 2020-10-14 2017 2020
## 1356 2018-09-11 2021-09-11 2018 2021
## 1357 2018-09-26 2021-09-25 2018 2021
## 1358 2018-04-15 2021-04-14 2018 2021
## 1359 2017-11-05 2020-10-30 2017 2020
## 1360 2018-12-28 2021-12-27 2018 2021
## 1361 2018-03-18 2021-03-17 2018 2021
## 1362 2019-02-28 2022-02-27 2019 2022
## 1363 2018-09-15 2020-06-14 2018 2020
## 1364 2018-06-07 2021-06-07 2018 2021
## 1365 2018-06-03 2021-06-02 2018 2021
## 1366 2018-08-18 2021-08-18 2018 2021
## 1367 2018-09-06 2021-09-05 2018 2021
## 1368 2018-02-09 2021-02-09 2018 2021
## 1369 2018-08-19 2020-08-18 2018 2020
## 1370 2018-12-10 2021-12-10 2018 2021
## 1371 2018-02-25 2021-02-24 2018 2021
## 1372 2018-07-01 2021-06-30 2018 2021
## 1373 2018-06-27 2021-06-26 2018 2021
## 1374 2017-11-01 2020-10-31 2017 2020
## 1375 2018-09-09 2021-09-08 2018 2021
## 1376 2018-06-22 2021-06-21 2018 2021
## 1377 2018-06-30 2021-06-29 2018 2021
## 1378 2018-11-04 2021-11-03 2018 2021
## 1379 2018-09-30 2021-09-29 2018 2021
## 1380 2017-12-26 2020-12-25 2017 2020
## 1381 2018-08-11 2021-08-10 2018 2021
## 1382 2018-08-22 2021-08-21 2018 2021
## 1383 2018-09-09 2021-09-08 2018 2021
## 1384 2017-11-22 2020-11-21 2017 2020
## 1385 2018-01-03 2021-01-03 2018 2021
## 1386 2018-05-03 2021-05-02 2018 2021
## 1387 2018-09-09 2021-09-08 2018 2021
## 1388 2017-10-30 2020-10-30 2017 2020
## 1389 2018-09-26 2021-09-25 2018 2021
## 1390 2018-09-05 2021-09-05 2018 2021
## 1391 2018-09-01 2021-09-01 2018 2021
## 1392 2018-02-26 2021-02-26 2018 2021
## 1393 2018-09-24 2021-09-24 2018 2021
## 1394 2018-05-01 2021-04-30 2018 2021
## 1395 2018-02-25 2021-02-24 2018 2021
## 1396 2019-02-17 2022-02-17 2019 2022
## 1397 2018-08-12 2021-08-09 2018 2021
## 1398 2018-08-13 2021-08-12 2018 2021
## 1399 2018-09-30 2021-09-29 2018 2021
## 1400 2018-09-11 2021-09-11 2018 2021
## 1401 2018-09-24 2021-09-24 2018 2021
## 1402 2018-08-23 2021-08-23 2018 2021
## 1403 2018-07-30 2021-07-29 2018 2021
## 1404 2017-11-05 2020-11-04 2017 2020
## 1405 2017-10-30 2020-10-29 2017 2020
## 1406 2018-07-27 2021-07-26 2018 2021
## 1407 2018-04-15 2021-04-14 2018 2021
## 1408 2018-07-31 2021-07-30 2018 2021
## 1409 2018-08-23 2021-08-22 2018 2021
## 1410 2018-05-31 2021-05-30 2018 2021
## 1411 2018-09-03 2021-08-30 2018 2021
## 1412 2018-08-31 2021-08-31 2018 2021
## 1413 2018-01-31 2021-01-31 2018 2021
## 1414 2018-09-30 2021-09-29 2018 2021
## 1415 2018-08-21 2021-08-20 2018 2021
## 1416 2018-09-30 2021-09-29 2018 2021
## 1417 2018-06-15 2021-06-14 2018 2021
## 1418 2018-03-06 2021-03-05 2018 2021
## 1419 2018-07-22 2021-07-21 2018 2021
## 1420 2018-07-29 2021-07-28 2018 2021
## 1421 2018-06-01 2021-05-31 2018 2021
## 1422 2018-07-26 2021-07-25 2018 2021
## 1423 2018-08-22 2021-08-22 2018 2021
## 1424 2018-09-20 2021-09-20 2018 2021
## 1425 2018-04-08 2021-04-07 2018 2021
## 1426 2018-08-31 2021-08-30 2018 2021
## 1427 2018-08-31 2021-08-30 2018 2021
## 1428 2018-07-01 2020-09-13 2018 2020
## 1429 2018-08-05 2021-08-04 2018 2021
## 1430 2018-09-11 2021-09-10 2018 2021
## 1431 2018-09-07 2021-09-06 2018 2021
## 1432 2017-10-08 2020-10-07 2017 2020
## 1433 2018-08-31 2021-08-30 2018 2021
## 1434 2018-11-14 2021-11-13 2018 2021
## 1435 2018-06-13 2021-06-12 2018 2021
## 1436 2018-08-31 2021-08-30 2018 2021
## 1437 2018-09-12 2021-09-12 2018 2021
## 1438 2018-08-30 2021-08-30 2018 2021
## 1439 2018-05-17 2021-05-16 2018 2021
## 1440 2018-09-13 2021-09-12 2018 2021
## 1441 2018-07-31 2021-07-30 2018 2021
## 1442 2018-03-27 2021-03-26 2018 2021
## 1443 2018-09-18 2021-09-17 2018 2021
## 1444 2018-01-31 2021-01-30 2018 2021
## 1445 2018-06-30 2021-06-29 2018 2021
## 1446 2018-09-09 2021-09-08 2018 2021
## 1447 2018-09-02 2021-09-01 2018 2021
## 1448 2018-08-14 2021-08-13 2018 2021
## 1449 2018-03-29 2021-03-27 2018 2021
## 1450 2018-09-29 2021-09-29 2018 2021
## 1451 2018-08-31 2021-08-31 2018 2021
## 1452 2018-09-13 2021-09-12 2018 2021
## 1453 2018-06-18 2021-06-17 2018 2021
## 1454 2018-03-28 2021-03-27 2018 2021
## 1455 2018-07-08 2021-07-07 2018 2021
## 1456 2018-05-01 2021-04-30 2018 2021
## 1457 2018-03-07 2021-03-06 2018 2021
## 1458 2018-01-04 2021-01-04 2018 2021
## 1459 2018-09-15 2021-09-14 2018 2021
## 1460 2017-11-05 2020-11-04 2017 2020
## 1461 2018-09-17 2021-09-16 2018 2021
## 1462 2018-07-20 2021-07-20 2018 2021
## 1463 2017-12-11 2020-12-10 2017 2020
## 1464 2017-12-26 2020-12-25 2017 2020
## 1465 2017-10-20 2020-10-19 2017 2020
## 1466 2017-12-16 2020-12-15 2017 2020
## 1467 2018-08-27 2021-08-26 2018 2021
## 1468 2018-04-29 2021-04-28 2018 2021
## 1469 2018-07-29 2021-07-26 2018 2021
## 1470 2018-09-16 2021-09-15 2018 2021
## 1471 2018-10-17 2021-10-16 2018 2021
## 1472 2018-09-14 2021-09-13 2018 2021
## 1473 2018-09-14 2021-09-13 2018 2021
## 1474 2018-07-01 2021-06-30 2018 2021
## 1475 2018-09-06 2021-09-05 2018 2021
## 1476 2017-09-30 2020-09-29 2017 2020
## 1477 2018-02-28 2021-02-27 2018 2021
## 1478 2018-05-01 2021-04-28 2018 2021
## 1479 2018-02-05 2021-02-05 2018 2021
## 1480 2017-10-23 2020-10-22 2017 2020
## 1481 2018-12-12 2021-12-11 2018 2021
## 1482 2018-09-06 2021-09-05 2018 2021
## 1483 2018-07-19 2021-07-18 2018 2021
## 1484 2018-09-18 2021-09-17 2018 2021
## 1485 2018-06-07 2021-06-07 2018 2021
## 1486 2018-10-14 2021-10-11 2018 2021
## 1487 2018-06-06 2021-06-06 2018 2021
## 1488 2017-11-14 2020-11-14 2017 2020
## 1489 2019-02-07 2022-02-07 2019 2022
## 1490 2018-04-01 2021-03-29 2018 2021
## 1491 2018-08-31 2021-08-30 2018 2021
## 1492 2017-12-25 2020-10-20 2017 2020
## 1493 2018-08-31 2021-08-30 2018 2021
## 1494 2018-06-02 2021-06-02 2018 2021
## 1495 2018-05-06 2021-05-06 2018 2021
## 1496 2018-04-17 2021-04-16 2018 2021
## 1497 2018-08-27 2021-08-26 2018 2021
## 1498 2018-06-21 2021-06-20 2018 2021
## 1499 2017-10-08 2020-10-07 2017 2020
## 1500 2018-09-04 2021-09-03 2018 2021
## 1501 2018-09-12 2021-09-11 2018 2021
## 1502 2018-02-27 2021-02-26 2018 2021
## 1503 2017-11-29 2020-11-27 2017 2020
## 1504 2018-09-07 2021-09-07 2018 2021
## 1505 2018-08-02 2021-08-01 2018 2021
## 1506 2018-02-11 2021-02-10 2018 2021
## 1507 2018-04-30 2021-04-29 2018 2021
## 1508 2018-02-14 2020-06-21 2018 2020
## 1509 2018-12-31 2021-12-31 2018 2021
## 1510 2018-06-17 2021-06-16 2018 2021
## 1511 2018-08-30 2021-08-30 2018 2021
## 1512 2018-09-19 2021-09-19 2018 2021
## 1513 2017-12-10 2020-12-10 2017 2020
## 1514 2018-09-10 2021-09-09 2018 2021
## 1515 2018-09-13 2021-09-12 2018 2021
## 1516 2018-09-03 2021-09-03 2018 2021
## 1517 2018-04-30 2021-04-30 2018 2021
## 1518 2018-08-31 2021-08-30 2018 2021
## 1519 2018-09-02 2021-09-01 2018 2021
## 1520 2018-09-03 2021-09-02 2018 2021
## 1521 2018-09-01 2021-08-31 2018 2021
## 1522 2018-08-14 2021-08-13 2018 2021
## 1523 2018-05-09 2021-04-21 2018 2021
## 1524 2019-01-17 2022-01-16 2019 2022
## 1525 2018-08-06 2021-08-06 2018 2021
## 1526 2018-04-15 2021-04-14 2018 2021
## 1527 2018-08-09 2021-08-06 2018 2021
## 1528 2018-02-28 2021-02-27 2018 2021
## 1529 2018-08-02 2021-07-30 2018 2021
## 1530 2017-11-26 2020-08-12 2017 2020
## 1531 2018-08-05 2021-08-04 2018 2021
## 1532 2018-09-16 2021-09-15 2018 2021
## 1533 2018-12-20 2021-12-19 2018 2021
## 1534 2018-08-14 2021-08-14 2018 2021
## 1535 2017-11-22 2017-12-12 2017 2017
## 1536 2018-05-15 2021-05-14 2018 2021
## 1537 2018-05-20 2020-05-19 2018 2020
## 1538 2018-09-09 2021-09-08 2018 2021
## 1539 2018-10-23 2021-10-23 2018 2021
## 1540 2018-09-07 2021-09-06 2018 2021
## 1541 2018-01-31 2021-01-31 2018 2021
## 1542 2018-02-11 2018-10-29 2018 2018
## 1543 2018-09-09 2021-09-08 2018 2021
## 1544 2017-11-22 2020-11-22 2017 2020
## 1545 2018-08-15 2021-08-14 2018 2021
## 1546 2017-10-03 2020-10-02 2017 2020
## 1547 2018-08-31 2021-08-31 2018 2021
## 1548 2017-12-25 2019-01-30 2017 2019
## 1549 2018-11-30 2021-11-29 2018 2021
## 1550 2018-09-12 2021-09-11 2018 2021
## 1551 2018-08-29 2021-08-28 2018 2021
## 1552 2018-01-28 2021-01-27 2018 2021
## 1553 2018-01-21 2021-01-20 2018 2021
## 1554 2017-10-15 2020-10-14 2017 2020
## 1555 2018-08-25 2021-08-24 2018 2021
## 1556 2018-08-31 2021-08-31 2018 2021
## 1557 2018-09-03 2021-09-03 2018 2021
## 1558 2018-04-01 2021-03-31 2018 2021
## 1559 2018-08-13 2021-08-12 2018 2021
## 1560 2019-01-29 2022-01-28 2019 2022
## 1561 2018-09-15 2021-09-14 2018 2021
## 1562 2018-09-21 2021-09-20 2018 2021
## 1563 2018-03-04 2021-03-03 2018 2021
## 1564 2018-08-31 2021-08-29 2018 2021
## 1565 2018-08-14 2021-08-13 2018 2021
## 1566 2018-08-09 2021-08-09 2018 2021
## 1567 2018-09-17 2021-09-17 2018 2021
## 1568 2018-09-20 2021-09-19 2018 2021
## 1569 2017-11-02 2020-11-01 2017 2020
## 1570 2018-08-30 2021-08-29 2018 2021
## 1571 2018-09-30 2021-09-27 2018 2021
## 1572 2018-06-10 2021-03-03 2018 2021
## 1573 2018-07-23 2021-07-22 2018 2021
## 1574 2018-02-14 2021-02-13 2018 2021
## 1575 2018-05-15 2021-05-15 2018 2021
## 1576 2018-08-21 2019-08-20 2018 2019
## 1577 2018-08-23 2021-08-20 2018 2021
## 1578 2019-01-15 2022-01-14 2019 2022
## 1579 2018-03-15 2021-03-14 2018 2021
## 1580 2017-10-12 2020-10-11 2017 2020
## 1581 2018-07-29 2021-07-28 2018 2021
## 1582 2018-09-09 2021-09-08 2018 2021
## 1583 2018-08-14 2021-08-14 2018 2021
## 1584 2018-09-16 2021-09-16 2018 2021
## 1585 2018-09-04 2021-09-03 2018 2021
## 1586 2018-08-12 2021-08-11 2018 2021
## 1587 2018-05-14 2021-05-14 2018 2021
## 1588 2018-08-19 2021-08-19 2018 2021
## 1589 2018-04-30 2020-06-29 2018 2020
## 1590 2018-01-23 2021-01-22 2018 2021
## 1591 2019-03-17 2022-03-16 2019 2022
## 1592 2018-09-01 2021-08-31 2018 2021
## 1593 2018-08-27 2021-08-26 2018 2021
## 1594 2018-03-14 2021-03-14 2018 2021
## 1595 2018-03-04 2021-03-03 2018 2021
## 1596 2018-08-31 2021-08-30 2018 2021
## 1597 2018-05-09 2021-05-08 2018 2021
## 1598 2018-08-12 2021-08-11 2018 2021
## 1599 2018-08-11 2021-08-10 2018 2021
## 1600 2018-01-06 2021-01-06 2018 2021
## 1601 2018-01-31 2021-01-30 2018 2021
## 1602 2017-11-09 2020-11-08 2017 2020
## 1603 2018-03-11 2021-03-10 2018 2021
## 1604 2018-04-18 2021-04-17 2018 2021
## 1605 2018-06-04 2019-08-14 2018 2019
## 1606 2019-02-14 2022-02-14 2019 2022
## 1607 2018-10-14 2021-10-13 2018 2021
## 1608 2018-08-10 2021-08-09 2018 2021
## 1609 2017-11-21 2020-11-21 2017 2020
## 1610 2018-08-14 2021-08-14 2018 2021
## 1611 2017-11-30 2020-11-30 2017 2020
## 1612 2018-08-05 2021-08-04 2018 2021
## 1613 2018-08-06 2021-08-05 2018 2021
## 1614 2018-08-28 2021-08-27 2018 2021
## 1615 2018-06-30 2021-06-29 2018 2021
## 1616 2018-11-19 2021-11-16 2018 2021
## 1617 2018-07-29 2021-07-28 2018 2021
## 1618 2018-08-01 2021-07-31 2018 2021
## 1619 2018-09-18 2021-09-17 2018 2021
## 1620 2017-10-31 2020-10-30 2017 2020
## 1621 2018-06-30 2021-06-29 2018 2021
## 1622 2017-11-30 2020-11-29 2017 2020
## 1623 2017-12-11 2018-12-30 2017 2018
## 1624 2018-01-10 2021-01-09 2018 2021
## 1625 2018-08-27 2021-08-26 2018 2021
## 1626 2018-08-31 2021-08-30 2018 2021
## 1627 2018-07-31 2021-07-31 2018 2021
## 1628 2017-12-17 2020-12-17 2017 2020
## 1629 2018-02-26 2021-02-25 2018 2021
## 1630 2018-08-09 2021-08-08 2018 2021
## 1631 2017-12-04 2019-02-24 2017 2019
## 1632 2018-06-18 2019-06-29 2018 2019
## 1633 2018-05-03 2021-05-02 2018 2021
## 1634 2018-09-06 2021-09-06 2018 2021
## 1635 2017-11-14 2020-11-14 2017 2020
## 1636 2018-08-26 2021-08-25 2018 2021
## 1637 2018-09-24 2021-09-23 2018 2021
## 1638 2018-06-04 2021-06-03 2018 2021
## 1639 2018-09-19 2021-09-18 2018 2021
## 1640 2018-08-13 2021-08-12 2018 2021
## 1641 2018-08-17 2021-08-16 2018 2021
## 1642 2018-07-31 2021-07-31 2018 2021
## 1643 2018-08-16 2021-08-16 2018 2021
## 1644 2018-09-05 2021-09-04 2018 2021
## 1645 2018-06-30 2021-06-29 2018 2021
## 1646 2018-06-24 2021-06-23 2018 2021
## 1647 2018-09-01 2021-09-01 2018 2021
## 1648 2018-04-22 2021-04-22 2018 2021
## 1649 2018-06-04 2021-06-03 2018 2021
## 1650 2018-07-27 2021-07-26 2018 2021
## 1651 2018-09-04 2021-09-04 2018 2021
## 1652 2018-05-22 2020-08-29 2018 2020
## 1653 2018-08-31 2021-08-30 2018 2021
## 1654 2018-07-19 2021-07-19 2018 2021
## 1655 2018-09-04 2021-09-03 2018 2021
## 1656 2018-06-30 2021-06-29 2018 2021
## 1657 2018-07-31 2021-07-30 2018 2021
## 1658 2018-08-26 2021-08-25 2018 2021
## 1659 2018-08-07 2021-08-07 2018 2021
## 1660 2018-09-23 2021-09-23 2018 2021
## 1661 2018-09-02 2021-09-01 2018 2021
## 1662 2018-09-30 2021-09-29 2018 2021
## 1663 2018-08-25 2021-08-24 2018 2021
## 1664 2018-08-07 2021-08-07 2018 2021
## 1665 2018-03-04 2021-03-03 2018 2021
## 1666 2018-06-30 2020-06-29 2018 2020
## 1667 2018-08-27 2021-08-26 2018 2021
## 1668 2018-09-06 2021-09-05 2018 2021
## 1669 2018-08-03 2021-08-03 2018 2021
## 1670 2018-10-05 2021-10-04 2018 2021
## 1671 2018-06-30 2021-06-29 2018 2021
## 1672 2018-07-01 2021-07-01 2018 2021
## 1673 2017-10-04 2020-10-03 2017 2020
## 1674 2018-07-30 2021-07-29 2018 2021
## 1675 2018-08-31 2021-08-30 2018 2021
## 1676 2018-08-23 2021-08-22 2018 2021
## 1677 2018-09-05 2021-09-04 2018 2021
## 1678 2017-10-22 2020-10-21 2017 2020
## 1679 2019-02-04 2022-02-03 2019 2022
## 1680 2018-09-07 2021-09-07 2018 2021
## 1681 2018-10-20 2021-10-20 2018 2021
## 1682 2018-08-15 2021-08-15 2018 2021
## 1683 2018-08-01 2020-09-29 2018 2020
## 1684 2018-05-22 2020-09-15 2018 2020
## 1685 2017-10-23 2020-08-31 2017 2020
## 1686 2018-04-17 2021-04-16 2018 2021
## 1687 2018-08-03 2021-08-02 2018 2021
## 1688 2018-11-28 2021-11-27 2018 2021
## 1689 2018-07-26 2021-07-16 2018 2021
## 1690 2018-03-20 2021-03-19 2018 2021
## 1691 2018-09-11 2021-09-10 2018 2021
## 1692 2019-01-25 2022-01-25 2019 2022
## 1693 2017-10-08 2020-10-07 2017 2020
## 1694 2018-08-16 2021-08-13 2018 2021
## 1695 2018-02-25 2021-02-25 2018 2021
## 1696 2018-09-12 2021-09-11 2018 2021
## 1697 2018-08-31 2021-08-31 2018 2021
## 1698 2018-08-31 2021-08-30 2018 2021
## 1699 2018-09-11 2021-09-10 2018 2021
## 1700 2018-03-11 2021-03-10 2018 2021
## 1701 2018-09-09 2021-09-09 2018 2021
## 1702 2018-09-07 2021-09-06 2018 2021
## 1703 2018-09-12 2021-09-11 2018 2021
## 1704 2018-02-04 2021-02-03 2018 2021
## 1705 2018-08-18 2021-08-17 2018 2021
## 1706 2018-06-30 2021-06-29 2018 2021
## 1707 2018-08-26 2021-08-25 2018 2021
## 1708 2018-07-05 2021-06-17 2018 2021
## 1709 2018-08-19 2021-08-18 2018 2021
## 1710 2018-06-14 2021-06-14 2018 2021
## 1711 2017-12-31 2020-12-31 2017 2020
## 1712 2018-09-14 2021-09-13 2018 2021
## 1713 2018-04-30 2021-04-30 2018 2021
## 1714 2018-07-08 2021-07-07 2018 2021
## 1715 2018-09-08 2019-02-05 2018 2019
## 1716 2018-09-24 2021-09-23 2018 2021
## 1717 2018-08-16 2021-08-15 2018 2021
## 1718 2018-05-15 2021-05-15 2018 2021
## 1719 2018-08-30 2021-08-29 2018 2021
## 1720 2018-09-13 2021-09-12 2018 2021
## 1721 2018-08-04 2021-08-03 2018 2021
## 1722 2018-07-01 2021-06-30 2018 2021
## 1723 2018-08-10 2021-08-09 2018 2021
## 1724 2018-02-20 2020-02-20 2018 2020
## 1725 2018-03-29 2021-03-29 2018 2021
## 1726 2018-09-18 2021-09-17 2018 2021
## 1727 2017-11-02 2018-07-12 2017 2018
## 1728 2017-09-25 2020-09-04 2017 2020
## 1729 2018-07-15 2021-07-14 2018 2021
## 1730 2018-05-01 2021-05-01 2018 2021
## 1731 2018-07-29 2021-07-29 2018 2021
## 1732 2018-10-19 2021-10-19 2018 2021
## 1733 2018-09-24 2021-09-23 2018 2021
## 1734 2017-12-31 2018-11-22 2017 2018
## 1735 2018-07-31 2021-07-30 2018 2021
## 1736 2018-08-29 2021-07-29 2018 2021
## 1737 2018-09-30 2021-09-29 2018 2021
## 1738 2017-10-02 2020-10-02 2017 2020
## 1739 2017-10-12 2020-10-11 2017 2020
## 1740 2018-08-31 2021-08-30 2018 2021
## 1741 2018-09-09 2021-09-08 2018 2021
## 1742 2018-01-31 2020-01-30 2018 2020
## 1743 2018-01-26 2021-01-25 2018 2021
## 1744 2018-09-16 2018-12-30 2018 2018
## 1745 2018-08-18 2021-08-17 2018 2021
## 1746 2018-08-22 2021-08-22 2018 2021
## 1747 2018-06-30 2021-06-30 2018 2021
## 1748 2017-10-03 2020-10-03 2017 2020
## 1749 2018-09-03 2021-09-02 2018 2021
## 1750 2018-04-14 2021-04-14 2018 2021
## 1751 2018-02-28 2021-02-27 2018 2021
## 1752 2017-09-26 2020-09-24 2017 2020
## 1753 2018-03-11 2021-03-10 2018 2021
## 1754 2018-08-14 2021-08-13 2018 2021
## 1755 2018-09-16 2021-09-15 2018 2021
## 1756 2018-09-14 2021-09-13 2018 2021
## 1757 2018-09-13 2020-09-29 2018 2020
## 1758 2018-02-28 2018-06-29 2018 2018
## 1759 2018-02-28 2021-02-27 2018 2021
## 1760 2018-05-28 2021-05-27 2018 2021
## 1761 2017-10-16 2020-03-26 2017 2020
## 1762 2017-09-25 2020-09-25 2017 2020
## 1763 2018-06-07 2021-06-06 2018 2021
## 1764 2018-04-08 2021-04-08 2018 2021
## 1765 2018-08-01 2021-07-31 2018 2021
## 1766 2018-06-14 2021-06-14 2018 2021
## 1767 2018-05-31 2021-05-30 2018 2021
## 1768 2018-04-15 2021-04-14 2018 2021
## 1769 2018-08-06 2021-08-06 2018 2021
## 1770 2018-07-31 2021-07-30 2018 2021
## 1771 2018-03-04 2021-03-04 2018 2021
## 1772 2018-08-01 2021-07-29 2018 2021
## 1773 2018-11-08 2021-11-07 2018 2021
## 1774 2018-04-15 2021-04-09 2018 2021
## 1775 2018-09-19 2021-09-19 2018 2021
## 1776 2018-09-16 2021-09-15 2018 2021
## 1777 2018-06-09 2021-06-09 2018 2021
## 1778 2018-09-14 2021-09-13 2018 2021
## 1779 2017-11-05 2020-11-04 2017 2020
## 1780 2018-08-22 2021-08-21 2018 2021
## 1781 2018-06-30 2021-06-29 2018 2021
## 1782 2017-10-31 2020-10-30 2017 2020
## 1783 2018-09-23 2021-09-19 2018 2021
## 1784 2018-08-27 2021-08-27 2018 2021
## 1785 2018-12-11 2021-12-10 2018 2021
## 1786 2018-08-14 2021-08-13 2018 2021
## 1787 2018-06-30 2021-06-29 2018 2021
## 1788 2018-01-16 2021-01-10 2018 2021
## 1789 2018-09-13 2021-09-13 2018 2021
## 1790 2018-09-18 2021-09-17 2018 2021
## 1791 2018-09-04 2021-09-03 2018 2021
## 1792 2018-04-08 2021-04-08 2018 2021
## 1793 2018-02-20 2021-02-20 2018 2021
## 1794 2018-09-09 2021-09-08 2018 2021
## 1795 2018-06-04 2021-06-03 2018 2021
## 1796 2017-11-19 2020-11-16 2017 2020
## 1797 2018-08-06 2021-08-03 2018 2021
## 1798 2017-12-12 2020-12-11 2017 2020
## 1799 2018-08-22 2021-08-21 2018 2021
## 1800 2017-12-25 2020-12-24 2017 2020
## 1801 2018-08-28 2021-08-27 2018 2021
## 1802 2018-08-12 2021-08-11 2018 2021
## 1803 2018-03-31 2021-03-31 2018 2021
## 1804 2018-07-31 2020-07-31 2018 2020
## 1805 2018-01-02 2021-01-01 2018 2021
## 1806 2018-08-02 2020-05-30 2018 2020
## 1807 2017-10-31 2020-10-29 2017 2020
## 1808 2018-07-22 2021-07-19 2018 2021
## 1809 2018-09-02 2021-09-01 2018 2021
## 1810 2018-09-07 2021-09-07 2018 2021
## 1811 2018-01-24 2021-01-23 2018 2021
## 1812 2018-10-14 2021-10-13 2018 2021
## 1813 2018-01-28 2018-12-02 2018 2018
## 1814 2018-09-09 2021-09-09 2018 2021
## 1815 2017-11-20 2020-11-19 2017 2020
## 1816 2017-11-26 2020-11-25 2017 2020
## 1817 2018-08-31 2021-08-29 2018 2021
## 1818 2018-08-26 2021-08-25 2018 2021
## 1819 2018-08-13 2021-08-12 2018 2021
## 1820 2018-04-17 2021-04-16 2018 2021
## 1821 2018-09-12 2021-09-12 2018 2021
## 1822 2018-09-08 2021-09-07 2018 2021
## 1823 2018-09-07 2021-09-06 2018 2021
## 1824 2018-07-31 2021-07-31 2018 2021
## 1825 2018-07-31 2021-07-30 2018 2021
## 1826 2018-06-30 2021-06-29 2018 2021
## 1827 2018-06-19 2019-02-15 2018 2019
## 1828 2018-09-19 2021-09-14 2018 2021
## 1829 2018-07-11 2021-07-10 2018 2021
## 1830 2018-03-25 2021-03-24 2018 2021
## 1831 2018-04-09 2021-04-08 2018 2021
## 1832 2018-09-11 2021-09-10 2018 2021
## 1833 2017-10-12 2020-10-12 2017 2020
## 1834 2018-02-15 2021-02-14 2018 2021
## 1835 2018-07-31 2021-07-30 2018 2021
## 1836 2018-03-14 2019-08-23 2018 2019
## 1837 2018-07-23 2021-07-22 2018 2021
## 1838 2018-09-12 2021-09-11 2018 2021
## 1839 2018-06-24 2021-06-23 2018 2021
## 1840 2017-10-10 2020-10-09 2017 2020
## 1841 2018-08-20 2021-08-20 2018 2021
## 1842 2018-09-02 2021-09-01 2018 2021
## 1843 2017-10-31 2020-10-31 2017 2020
## 1844 2017-10-08 2020-10-07 2017 2020
## 1845 2018-08-31 2021-08-30 2018 2021
## 1846 2017-12-11 2020-12-10 2017 2020
## 1847 2018-03-18 2019-09-13 2018 2019
## 1848 2018-08-31 2021-08-30 2018 2021
## 1849 2018-09-04 2021-09-03 2018 2021
## 1850 2018-04-15 2019-02-12 2018 2019
## 1851 2018-08-09 2021-08-08 2018 2021
## 1852 2018-04-27 2021-04-26 2018 2021
## 1853 2017-10-22 2020-10-21 2017 2020
## 1854 2018-09-14 2021-09-13 2018 2021
## 1855 2018-06-14 2021-06-14 2018 2021
## 1856 2017-09-25 2020-09-24 2017 2020
## 1857 2018-09-30 2020-09-29 2018 2020
## 1858 2018-08-27 2021-08-27 2018 2021
## 1859 2017-11-16 2020-11-13 2017 2020
## 1860 2018-09-16 2021-09-15 2018 2021
## 1861 2018-04-14 2021-04-13 2018 2021
## 1862 2018-06-30 2021-06-30 2018 2021
## 1863 2017-10-22 2020-10-19 2017 2020
## 1864 2018-09-06 2021-09-05 2018 2021
## 1865 2018-02-28 2021-02-27 2018 2021
## 1866 2018-07-31 2021-07-30 2018 2021
## 1867 2018-09-10 2021-09-09 2018 2021
## 1868 2018-08-31 2021-08-31 2018 2021
## 1869 2018-08-07 2021-08-07 2018 2021
## 1870 2018-08-05 2021-08-04 2018 2021
## 1871 2018-09-09 2021-09-09 2018 2021
## 1872 2018-09-24 2021-09-24 2018 2021
## 1873 2018-08-29 2021-08-28 2018 2021
## 1874 2018-09-16 2021-09-16 2018 2021
## 1875 2018-08-31 2021-08-31 2018 2021
## 1876 2018-06-30 2019-06-29 2018 2019
## 1877 2018-08-31 2021-08-31 2018 2021
## 1878 2017-10-17 2020-10-16 2017 2020
## 1879 2018-06-03 2019-09-13 2018 2019
## 1880 2018-07-02 2021-07-01 2018 2021
## 1881 2018-03-25 2021-03-25 2018 2021
## 1882 2018-08-28 2021-08-27 2018 2021
## 1883 2018-07-23 2021-07-23 2018 2021
## 1884 2018-01-01 2021-01-01 2018 2021
## 1885 2018-08-29 2018-09-29 2018 2018
## 1886 2018-08-20 2021-08-19 2018 2021
## 1887 2018-09-19 2020-08-24 2018 2020
## 1888 2018-07-31 2021-07-31 2018 2021
## 1889 2018-06-07 2021-06-06 2018 2021
## 1890 2018-08-07 2021-08-07 2018 2021
## 1891 2018-09-11 2021-09-11 2018 2021
## 1892 2018-07-24 2021-07-23 2018 2021
## 1893 2018-03-18 2021-03-14 2018 2021
## 1894 2018-01-04 2021-01-03 2018 2021
## 1895 2018-01-01 2020-12-31 2018 2020
## 1896 2018-01-31 2021-01-30 2018 2021
## 1897 2018-09-09 2021-09-08 2018 2021
## 1898 2018-09-19 2021-09-18 2018 2021
## 1899 2018-09-15 2020-09-29 2018 2020
## 1900 2017-10-15 2020-10-14 2017 2020
## 1901 2017-12-17 2020-12-17 2017 2020
## 1902 2017-11-13 2020-11-13 2017 2020
## 1903 2018-08-31 2021-08-31 2018 2021
## 1904 2018-03-21 2021-03-20 2018 2021
## 1905 2018-07-31 2021-07-30 2018 2021
## 1906 2017-10-18 2020-10-18 2017 2020
## 1907 2018-08-12 2021-08-11 2018 2021
## 1908 2017-11-12 2020-11-12 2017 2020
## 1909 2018-07-26 2021-07-25 2018 2021
## 1910 2018-07-05 2021-07-03 2018 2021
## 1911 2018-02-22 2021-02-22 2018 2021
## 1912 2018-04-12 2021-04-11 2018 2021
## 1913 2018-03-20 2021-03-19 2018 2021
## 1914 2018-08-04 2021-08-03 2018 2021
## 1915 2018-08-27 2021-08-26 2018 2021
## 1916 2017-11-19 2020-11-18 2017 2020
## 1917 2017-10-31 2020-10-30 2017 2020
## 1918 2018-08-27 2021-08-26 2018 2021
## 1919 2018-09-17 2021-09-16 2018 2021
## 1920 2018-05-06 2021-05-06 2018 2021
## 1921 2018-09-09 2021-09-08 2018 2021
## 1922 2018-09-02 2021-09-01 2018 2021
## 1923 2018-09-17 2021-09-17 2018 2021
## 1924 2018-03-20 2021-03-19 2018 2021
## 1925 2018-02-28 2021-02-28 2018 2021
## 1926 2018-09-06 2021-09-05 2018 2021
## 1927 2018-09-03 2021-09-02 2018 2021
## 1928 2018-08-28 2021-08-27 2018 2021
## 1929 2018-08-02 2021-08-01 2018 2021
## 1930 2018-09-11 2021-09-11 2018 2021
## 1931 2017-12-25 2020-12-25 2017 2020
## 1932 2018-08-03 2021-08-02 2018 2021
## 1933 2018-06-30 2021-06-29 2018 2021
## 1934 2018-08-31 2021-08-30 2018 2021
## 1935 2018-01-21 2021-01-21 2018 2021
## 1936 2018-09-05 2021-09-05 2018 2021
## 1937 2018-03-09 2021-03-08 2018 2021
## 1938 2017-12-13 2020-12-12 2017 2020
## 1939 2018-04-17 2021-04-16 2018 2021
## 1940 2018-08-17 2021-08-16 2018 2021
## 1941 2018-09-18 2021-09-17 2018 2021
## 1942 2018-07-31 2021-07-30 2018 2021
## 1943 2018-10-16 2021-10-15 2018 2021
## 1944 2018-09-04 2021-09-03 2018 2021
## 1945 2018-05-07 2021-05-06 2018 2021
## 1946 2019-01-19 2022-01-18 2019 2022
## 1947 2018-06-03 2021-06-02 2018 2021
## 1948 2018-09-15 2021-09-14 2018 2021
## 1949 2018-09-19 2021-09-18 2018 2021
## 1950 2018-03-04 2021-03-03 2018 2021
## 1951 2018-09-13 2021-09-12 2018 2021
## 1952 2017-12-03 2020-12-02 2017 2020
## 1953 2018-07-31 2021-07-30 2018 2021
## 1954 2018-09-02 2021-09-01 2018 2021
## 1955 2018-08-13 2021-08-12 2018 2021
## 1956 2018-07-04 2021-07-04 2018 2021
## 1957 2018-07-20 2021-07-20 2018 2021
## 1958 2018-08-31 2021-08-31 2018 2021
## 1959 2018-07-14 2021-07-13 2018 2021
## 1960 2018-09-03 2019-08-31 2018 2019
## 1961 2018-02-01 2021-01-31 2018 2021
## 1962 2018-09-14 2021-09-14 2018 2021
## 1963 2018-08-03 2021-08-02 2018 2021
## 1964 2018-03-11 2020-03-10 2018 2020
## 1965 2018-09-18 2021-09-18 2018 2021
## 1966 2018-03-23 2021-03-22 2018 2021
## 1967 2017-11-12 2020-11-12 2017 2020
## 1968 2018-08-25 2021-08-24 2018 2021
## 1969 2018-06-08 2021-06-07 2018 2021
## 1970 2018-06-10 2020-01-12 2018 2020
## 1971 2018-01-07 2020-11-15 2018 2020
## 1972 2018-09-09 2021-08-31 2018 2021
## 1973 2018-05-05 2021-05-05 2018 2021
## 1974 2018-05-20 2021-05-19 2018 2021
## 1975 2018-02-11 2021-02-10 2018 2021
## 1976 2018-08-29 2021-08-28 2018 2021
## 1977 2018-06-30 2019-10-18 2018 2019
## 1978 2017-12-14 2020-12-13 2017 2020
## 1979 2018-06-10 2021-06-09 2018 2021
## 1980 2018-05-14 2021-05-13 2018 2021
## 1981 2018-08-14 2021-08-13 2018 2021
## 1982 2018-01-01 2019-12-31 2018 2019
## 1983 2018-09-30 2021-09-29 2018 2021
## 1984 2018-08-07 2021-08-07 2018 2021
## 1985 2019-01-17 2021-07-16 2019 2021
## 1986 2017-09-27 2020-09-26 2017 2020
## 1987 2018-08-16 2021-08-15 2018 2021
## 1988 2018-02-16 2021-02-16 2018 2021
## 1989 2018-05-20 2021-05-17 2018 2021
## 1990 2019-03-07 2022-03-07 2019 2022
## 1991 2018-05-27 2021-05-26 2018 2021
## 1992 2019-01-03 2022-01-02 2019 2022
## 1993 2018-09-02 2020-12-30 2018 2020
## 1994 2018-01-04 2021-01-03 2018 2021
## 1995 2018-08-24 2021-08-23 2018 2021
## 1996 2018-07-31 2021-07-30 2018 2021
## 1997 2018-06-14 2021-06-14 2018 2021
## 1998 2018-07-31 2021-07-31 2018 2021
## 1999 2018-08-31 2021-08-31 2018 2021
## 2000 2018-06-22 2021-06-21 2018 2021
## 2001 2018-09-12 2021-09-11 2018 2021
## 2002 2018-09-30 2021-09-29 2018 2021
## 2003 2018-09-11 2021-09-10 2018 2021
## 2004 2018-07-15 2018-09-12 2018 2018
## 2005 2018-08-25 2021-08-24 2018 2021
## 2006 2018-08-27 2021-08-26 2018 2021
## 2007 2018-06-17 2021-06-17 2018 2021
## 2008 2018-04-30 2021-04-30 2018 2021
## 2009 2018-04-27 2021-04-26 2018 2021
## 2010 2017-12-03 2020-12-02 2017 2020
## 2011 2018-08-06 2021-08-05 2018 2021
## 2012 2018-08-24 2021-08-23 2018 2021
## 2013 2018-07-31 2020-03-31 2018 2020
## 2014 2018-09-08 2021-09-07 2018 2021
## 2015 2018-08-30 2021-08-29 2018 2021
## 2016 2019-01-10 2022-01-09 2019 2022
## 2017 2018-07-28 2021-07-25 2018 2021
## 2018 2018-10-07 2021-10-07 2018 2021
## 2019 2018-09-16 2021-09-13 2018 2021
## 2020 2018-09-24 2021-09-22 2018 2021
## 2021 2018-09-13 2021-09-13 2018 2021
## 2022 2018-09-01 2021-08-31 2018 2021
## 2023 2018-09-23 2021-09-22 2018 2021
## 2024 2018-08-09 2021-08-09 2018 2021
## 2025 2018-08-29 2021-08-28 2018 2021
## 2026 2018-04-08 2021-04-07 2018 2021
## 2027 2018-08-26 2021-08-25 2018 2021
## 2028 2018-06-14 2021-06-14 2018 2021
## 2029 2018-09-06 2021-09-05 2018 2021
## 2030 2018-01-28 2021-01-27 2018 2021
## 2031 2018-09-16 2021-09-15 2018 2021
## 2032 2018-08-17 2021-08-16 2018 2021
## 2033 2018-08-30 2021-08-29 2018 2021
## 2034 2018-02-06 2021-02-05 2018 2021
## 2035 2018-01-02 2021-01-01 2018 2021
## 2036 2018-06-18 2021-06-17 2018 2021
## 2037 2017-10-29 2020-10-28 2017 2020
## 2038 2018-09-03 2021-09-03 2018 2021
## 2039 2018-06-11 2021-06-10 2018 2021
## 2040 2019-02-04 2020-09-29 2019 2020
## 2041 2018-09-30 2021-09-29 2018 2021
## 2042 2019-01-25 2022-01-24 2019 2022
## 2043 2018-05-07 2021-05-06 2018 2021
## 2044 2017-11-15 2020-11-14 2017 2020
## 2045 2018-08-20 2021-08-19 2018 2021
## 2046 2018-07-29 2021-06-14 2018 2021
## 2047 2018-06-28 2021-06-28 2018 2021
## 2048 2018-12-23 2021-12-23 2018 2021
## 2049 2017-10-08 2020-10-08 2017 2020
## 2050 2018-08-02 2021-08-01 2018 2021
## 2051 2018-04-09 2021-04-08 2018 2021
## 2052 2018-09-08 2021-09-08 2018 2021
## 2053 2018-10-01 2021-09-28 2018 2021
## 2054 2018-09-03 2021-09-03 2018 2021
## 2055 2018-07-13 2021-07-12 2018 2021
## 2056 2018-09-05 2021-09-04 2018 2021
## 2057 2018-07-28 2021-07-27 2018 2021
## 2058 2018-08-30 2021-08-30 2018 2021
## 2059 2018-08-08 2021-08-07 2018 2021
## 2060 2019-01-30 2022-01-29 2019 2022
## 2061 2017-11-19 2020-11-18 2017 2020
## 2062 2018-02-25 2021-02-24 2018 2021
## 2063 2019-03-01 2022-02-28 2019 2022
## 2064 2018-04-25 2021-04-24 2018 2021
## 2065 2018-09-01 2021-08-31 2018 2021
## 2066 2018-07-07 2021-07-07 2018 2021
## 2067 2018-03-02 2021-03-01 2018 2021
## 2068 2018-09-09 2021-09-08 2018 2021
## 2069 2018-08-19 2021-08-18 2018 2021
## 2070 2017-10-29 2020-10-29 2017 2020
## 2071 2018-08-31 2021-08-30 2018 2021
## 2072 2018-03-11 2021-03-11 2018 2021
## 2073 2017-10-11 2020-10-10 2017 2020
## 2074 2018-03-31 2021-03-30 2018 2021
## 2075 2018-09-15 2021-09-14 2018 2021
## 2076 2018-06-24 2021-06-23 2018 2021
## 2077 2018-11-30 2021-11-29 2018 2021
## 2078 2018-09-10 2021-09-10 2018 2021
## 2079 2018-06-30 2021-06-30 2018 2021
## 2080 2018-09-08 2021-09-07 2018 2021
## 2081 2018-07-20 2021-07-19 2018 2021
## 2082 2018-09-04 2021-09-03 2018 2021
## 2083 2018-08-31 2021-08-30 2018 2021
## 2084 2018-06-09 2019-08-30 2018 2019
## 2085 2018-09-16 2021-09-15 2018 2021
## 2086 2018-05-01 2021-04-07 2018 2021
## 2087 2018-01-18 2021-01-17 2018 2021
## 2088 2018-10-31 2021-10-30 2018 2021
## 2089 2018-07-12 2019-07-11 2018 2019
## 2090 2018-09-18 2021-09-17 2018 2021
## 2091 2018-04-15 2021-04-14 2018 2021
## 2092 2018-05-20 2021-05-19 2018 2021
## 2093 2018-01-07 2021-01-06 2018 2021
## 2094 2018-09-12 2021-09-12 2018 2021
## 2095 2018-09-12 2021-09-11 2018 2021
## 2096 2017-10-20 2020-09-29 2017 2020
## 2097 2018-11-24 2021-11-23 2018 2021
## 2098 2018-05-31 2021-05-31 2018 2021
## 2099 2018-11-30 2021-11-29 2018 2021
## 2100 2018-09-09 2021-09-08 2018 2021
## 2101 2018-09-04 2021-09-03 2018 2021
## 2102 2017-11-29 2020-11-28 2017 2020
## 2103 2018-07-31 2019-07-30 2018 2019
## 2104 2018-08-31 2021-08-31 2018 2021
## 2105 2018-08-27 2021-08-26 2018 2021
## 2106 2018-06-10 2021-06-09 2018 2021
## 2107 2018-04-17 2021-04-16 2018 2021
## 2108 2017-10-22 2020-10-22 2017 2020
## 2109 2018-09-13 2021-06-29 2018 2021
## 2110 2018-10-07 2021-10-06 2018 2021
## 2111 2018-05-30 2021-05-29 2018 2021
## 2112 2019-01-16 2022-01-15 2019 2022
## 2113 2017-11-26 2020-11-25 2017 2020
## 2114 2018-03-31 2021-03-30 2018 2021
## 2115 2018-07-23 2021-07-23 2018 2021
## 2116 2018-02-13 2021-02-12 2018 2021
## 2117 2018-08-27 2021-08-27 2018 2021
## 2118 2018-09-16 2021-09-15 2018 2021
## 2119 2018-06-30 2021-06-29 2018 2021
## 2120 2018-04-19 2021-04-18 2018 2021
## 2121 2017-10-25 2020-10-24 2017 2020
## 2122 2018-03-18 2021-03-18 2018 2021
## 2123 2018-06-24 2021-06-24 2018 2021
## 2124 2018-03-29 2021-03-29 2018 2021
## 2125 2018-08-26 2021-08-25 2018 2021
## 2126 2018-09-06 2021-09-05 2018 2021
## 2127 2018-09-30 2021-09-29 2018 2021
## 2128 2018-09-11 2021-09-10 2018 2021
## 2129 2018-09-03 2021-09-02 2018 2021
## 2130 2017-10-15 2020-10-14 2017 2020
## 2131 2018-08-15 2021-08-14 2018 2021
## 2132 2018-09-02 2020-12-30 2018 2020
## 2133 2018-08-11 2021-08-10 2018 2021
## 2134 2017-12-13 2018-02-09 2017 2018
## 2135 2018-01-14 2021-01-13 2018 2021
## 2136 2018-08-08 2021-08-08 2018 2021
## 2137 2018-08-31 2021-08-30 2018 2021
## 2138 2017-12-26 2020-12-25 2017 2020
## 2139 2018-11-28 2021-11-27 2018 2021
## 2140 2018-09-24 2021-09-24 2018 2021
## 2141 2018-08-07 2021-08-06 2018 2021
## 2142 2018-04-23 2021-04-22 2018 2021
## 2143 2018-08-12 2021-08-12 2018 2021
## 2144 2018-11-18 2021-11-17 2018 2021
## 2145 2017-12-05 2020-12-04 2017 2020
## 2146 2018-09-12 2021-09-11 2018 2021
## 2147 2018-09-06 2021-09-05 2018 2021
## 2148 2018-06-20 2021-06-19 2018 2021
## 2149 2017-11-18 2020-11-17 2017 2020
## 2150 2018-09-04 2021-09-03 2018 2021
## 2151 2018-09-06 2021-09-06 2018 2021
## 2152 2017-12-22 2020-12-22 2017 2020
## 2153 2018-09-30 2021-09-29 2018 2021
## 2154 2018-09-09 2021-09-08 2018 2021
## 2155 2018-08-26 2021-08-25 2018 2021
## 2156 2018-12-14 2021-12-13 2018 2021
## 2157 2018-08-14 2021-08-13 2018 2021
## 2158 2018-07-22 2021-07-22 2018 2021
## 2159 2018-10-10 2021-10-09 2018 2021
## 2160 2018-02-25 2020-09-12 2018 2020
## 2161 2018-09-30 2021-09-29 2018 2021
## 2162 2018-08-12 2021-08-11 2018 2021
## 2163 2018-09-19 2021-09-19 2018 2021
## 2164 2018-09-03 2021-09-03 2018 2021
## 2165 2018-05-13 2021-05-12 2018 2021
## 2166 2018-09-18 2021-09-18 2018 2021
## 2167 2018-09-17 2021-09-17 2018 2021
## 2168 2018-09-19 2021-09-18 2018 2021
## 2169 2018-09-06 2021-09-05 2018 2021
## 2170 2018-09-19 2021-09-19 2018 2021
## 2171 2018-02-28 2021-02-27 2018 2021
## 2172 2018-09-01 2021-08-31 2018 2021
## 2173 2018-05-01 2018-12-20 2018 2018
## 2174 2017-10-11 2020-10-10 2017 2020
## 2175 2018-08-11 2021-08-10 2018 2021
## 2176 2018-11-05 2021-11-04 2018 2021
## 2177 2017-11-01 2019-09-05 2017 2019
## 2178 2018-09-01 2021-08-31 2018 2021
## 2179 2018-09-14 2021-09-13 2018 2021
## 2180 2018-05-08 2021-05-07 2018 2021
## 2181 2018-09-04 2021-09-03 2018 2021
## 2182 2018-03-31 2021-03-31 2018 2021
## 2183 2018-09-09 2021-09-08 2018 2021
## 2184 2018-08-23 2021-08-22 2018 2021
## 2185 2018-03-12 2021-03-11 2018 2021
## 2186 2017-11-12 2020-11-11 2017 2020
## 2187 2018-09-16 2021-09-15 2018 2021
## 2188 2018-08-06 2021-08-05 2018 2021
## 2189 2018-09-10 2021-09-10 2018 2021
## 2190 2018-09-14 2021-09-14 2018 2021
## 2191 2019-01-20 2022-01-19 2019 2022
## 2192 2018-02-25 2021-02-24 2018 2021
## 2193 2018-07-01 2019-06-29 2018 2019
## 2194 2018-08-16 2021-08-15 2018 2021
## 2195 2018-10-24 2021-10-24 2018 2021
## 2196 2017-11-14 2020-11-13 2017 2020
## 2197 2018-09-06 2021-09-05 2018 2021
## 2198 2018-09-07 2021-09-06 2018 2021
## 2199 2018-01-24 2021-01-23 2018 2021
## 2200 2018-05-31 2021-05-31 2018 2021
## 2201 2017-10-14 2020-10-11 2017 2020
## 2202 2018-07-21 2021-07-20 2018 2021
## 2203 2018-10-31 2021-10-30 2018 2021
## 2204 2018-07-31 2021-07-30 2018 2021
## 2205 2018-12-11 2021-12-10 2018 2021
## 2206 2018-07-15 2021-07-12 2018 2021
## 2207 2017-10-08 2020-10-07 2017 2020
## 2208 2018-06-29 2021-06-28 2018 2021
## 2209 2018-08-27 2021-08-26 2018 2021
## 2210 2018-09-09 2021-09-08 2018 2021
## 2211 2018-02-11 2021-02-10 2018 2021
## 2212 2018-04-27 2021-04-26 2018 2021
## 2213 2018-08-26 2021-08-26 2018 2021
## 2214 2018-03-19 2021-03-18 2018 2021
## 2215 2018-08-08 2021-08-08 2018 2021
## 2216 2018-02-04 2021-02-03 2018 2021
## 2217 2018-07-01 2021-06-30 2018 2021
## 2218 2018-05-16 2021-05-15 2018 2021
## 2219 2018-03-18 2021-03-17 2018 2021
## 2220 2018-08-23 2021-08-23 2018 2021
## 2221 2018-09-04 2021-09-03 2018 2021
## 2222 2018-09-30 2021-09-29 2018 2021
## 2223 2018-09-10 2021-09-09 2018 2021
## 2224 2018-07-11 2019-04-29 2018 2019
## 2225 2018-09-12 2021-09-11 2018 2021
## 2226 2018-09-30 2021-09-30 2018 2021
## 2227 2018-08-28 2021-08-27 2018 2021
## 2228 2018-03-31 2021-03-30 2018 2021
## 2229 2018-09-13 2021-09-10 2018 2021
## 2230 2018-12-31 2021-12-28 2018 2021
## 2231 2018-09-04 2021-09-03 2018 2021
## 2232 2018-07-05 2021-07-04 2018 2021
## 2233 2018-09-30 2020-10-29 2018 2020
## 2234 2018-05-30 2021-05-29 2018 2021
## 2235 2018-09-16 2021-09-16 2018 2021
## 2236 2018-08-01 2021-07-31 2018 2021
## 2237 2018-08-26 2021-08-26 2018 2021
## 2238 2018-07-10 2020-09-30 2018 2020
## 2239 2018-07-05 2021-07-05 2018 2021
## 2240 2018-09-10 2021-09-09 2018 2021
## 2241 2018-09-13 2021-09-12 2018 2021
## 2242 2018-09-30 2021-09-29 2018 2021
## 2243 2018-09-26 2021-09-25 2018 2021
## 2244 2018-01-03 2020-01-02 2018 2020
## 2245 2018-08-11 2021-08-08 2018 2021
## 2246 2018-06-27 2019-12-18 2018 2019
## 2247 2018-09-14 2021-09-14 2018 2021
## 2248 2018-09-15 2021-09-15 2018 2021
## 2249 2017-10-10 2020-10-09 2017 2020
## 2250 2018-09-11 2021-09-10 2018 2021
## 2251 2018-08-31 2021-06-29 2018 2021
## 2252 2019-01-14 2021-01-13 2019 2021
## 2253 2018-04-02 2021-04-01 2018 2021
## 2254 2017-10-12 2020-10-11 2017 2020
## 2255 2018-08-31 2021-08-29 2018 2021
## 2256 2018-06-07 2021-06-06 2018 2021
## 2257 2018-10-31 2021-10-30 2018 2021
## 2258 2018-06-10 2019-01-24 2018 2019
## 2259 2018-05-20 2021-05-19 2018 2021
## 2260 2018-07-14 2021-07-13 2018 2021
## 2261 2018-05-21 2021-05-21 2018 2021
## 2262 2018-09-11 2021-09-10 2018 2021
## 2263 2017-10-24 2020-10-23 2017 2020
## 2264 2018-06-14 2021-06-14 2018 2021
## 2265 2018-04-26 2021-04-23 2018 2021
## 2266 2018-08-31 2021-08-30 2018 2021
## 2267 2017-11-19 2020-11-19 2017 2020
## 2268 2017-09-30 2020-04-06 2017 2020
## 2269 2018-05-11 2021-05-10 2018 2021
## 2270 2018-09-14 2021-09-13 2018 2021
## 2271 2018-08-26 2021-08-25 2018 2021
## 2272 2018-08-17 2021-08-16 2018 2021
## 2273 2018-06-30 2021-06-29 2018 2021
## 2274 2018-09-03 2021-09-02 2018 2021
## 2275 2017-11-14 2020-11-13 2017 2020
## 2276 2018-08-16 2021-08-15 2018 2021
## 2277 2018-01-09 2019-04-29 2018 2019
## 2278 2018-09-04 2021-09-03 2018 2021
## 2279 2018-03-21 2021-03-21 2018 2021
## 2280 2019-01-09 2022-01-08 2019 2022
## 2281 2018-05-31 2021-05-30 2018 2021
## 2282 2018-01-01 2020-12-31 2018 2020
## 2283 2018-09-02 2021-09-01 2018 2021
## 2284 2018-07-30 2021-07-29 2018 2021
## 2285 2018-09-09 2021-09-08 2018 2021
## 2286 2018-07-19 2021-07-18 2018 2021
## 2287 2017-11-14 2020-11-14 2017 2020
## 2288 2018-04-23 2021-04-22 2018 2021
## 2289 2018-12-21 2021-12-18 2018 2021
## 2290 2017-11-06 2020-11-05 2017 2020
## 2291 2018-12-24 2021-12-23 2018 2021
## 2292 2017-10-20 2020-10-19 2017 2020
## 2293 2018-03-19 2021-03-19 2018 2021
## 2294 2017-11-14 2020-11-13 2017 2020
## 2295 2018-09-30 2021-09-29 2018 2021
## 2296 2018-08-04 2021-08-04 2018 2021
## 2297 2018-07-19 2021-07-17 2018 2021
## 2298 2018-08-28 2021-08-27 2018 2021
## 2299 2017-11-08 2020-11-07 2017 2020
## 2300 2018-08-09 2021-08-08 2018 2021
## 2301 2018-09-13 2021-09-12 2018 2021
## 2302 2017-12-15 2020-12-14 2017 2020
## 2303 2017-10-26 2019-04-25 2017 2019
## 2304 2018-09-01 2021-09-01 2018 2021
## 2305 2018-09-02 2020-12-30 2018 2020
## 2306 2018-09-19 2021-09-19 2018 2021
## 2307 2018-07-13 2021-07-11 2018 2021
## 2308 2018-09-14 2021-09-14 2018 2021
## 2309 2018-08-28 2021-08-28 2018 2021
## 2310 2018-03-24 2021-03-23 2018 2021
## 2311 2018-12-31 2021-12-30 2018 2021
## 2312 2018-07-11 2021-07-11 2018 2021
## 2313 2018-08-14 2021-08-14 2018 2021
## 2314 2018-09-11 2021-09-11 2018 2021
## 2315 2018-09-21 2021-09-20 2018 2021
## 2316 2018-05-13 2021-05-12 2018 2021
## 2317 2018-04-22 2020-09-28 2018 2020
## 2318 2018-09-12 2021-09-12 2018 2021
## 2319 2018-12-14 2021-12-13 2018 2021
## 2320 2018-09-14 2021-09-13 2018 2021
## 2321 2018-09-11 2021-09-11 2018 2021
## 2322 2017-10-15 2020-09-29 2017 2020
## 2323 2018-12-31 2021-12-30 2018 2021
## 2324 2018-08-28 2021-08-27 2018 2021
## 2325 2018-02-04 2021-02-04 2018 2021
## 2326 2018-07-09 2021-07-08 2018 2021
## 2327 2018-08-26 2021-08-25 2018 2021
## 2328 2018-03-13 2021-03-12 2018 2021
## 2329 2018-09-06 2021-09-05 2018 2021
## 2330 2018-04-22 2021-04-21 2018 2021
## 2331 2018-02-25 2021-02-24 2018 2021
## 2332 2018-08-12 2021-08-11 2018 2021
## 2333 2018-07-27 2021-07-25 2018 2021
## 2334 2018-08-23 2021-08-22 2018 2021
## 2335 2018-07-24 2020-07-23 2018 2020
## 2336 2018-08-20 2021-08-19 2018 2021
## 2337 2018-09-17 2021-09-16 2018 2021
## 2338 2018-09-13 2021-09-12 2018 2021
## 2339 2017-12-05 2020-12-05 2017 2020
## 2340 2018-12-15 2021-12-14 2018 2021
## 2341 2018-02-13 2021-02-12 2018 2021
## 2342 2018-08-19 2021-08-18 2018 2021
## 2343 2018-09-09 2021-09-09 2018 2021
## 2344 2018-07-26 2021-07-25 2018 2021
## 2345 2018-07-15 2021-07-15 2018 2021
## 2346 2018-01-01 2020-12-31 2018 2020
## 2347 2018-09-09 2021-09-08 2018 2021
## 2348 2018-09-04 2021-09-04 2018 2021
## 2349 2018-08-10 2021-08-09 2018 2021
## 2350 2018-08-01 2021-07-31 2018 2021
## 2351 2018-09-14 2021-09-13 2018 2021
## 2352 2018-07-31 2021-07-30 2018 2021
## 2353 2018-08-25 2021-08-24 2018 2021
## 2354 2018-09-09 2021-09-08 2018 2021
## 2355 2018-09-19 2021-09-18 2018 2021
## 2356 2018-09-18 2021-09-18 2018 2021
## 2357 2018-08-30 2021-08-29 2018 2021
## 2358 2018-07-07 2021-07-06 2018 2021
## 2359 2018-08-06 2021-08-05 2018 2021
## 2360 2018-09-15 2020-09-29 2018 2020
## 2361 2018-03-31 2021-03-30 2018 2021
## 2362 2018-09-20 2021-09-20 2018 2021
## 2363 2018-07-31 2021-07-30 2018 2021
## 2364 2018-05-28 2021-05-27 2018 2021
## 2365 2018-09-21 2021-09-20 2018 2021
## 2366 2017-10-11 2020-10-10 2017 2020
## 2367 2018-08-24 2021-08-23 2018 2021
## 2368 2018-01-07 2019-09-08 2018 2019
## 2369 2018-09-11 2021-09-11 2018 2021
## 2370 2017-12-19 2020-12-18 2017 2020
## 2371 2017-12-07 2020-12-06 2017 2020
## 2372 2018-09-30 2021-09-29 2018 2021
## 2373 2018-08-08 2021-08-08 2018 2021
## 2374 2018-10-14 2021-10-13 2018 2021
## 2375 2018-08-22 2021-08-21 2018 2021
## 2376 2018-09-10 2021-09-09 2018 2021
## 2377 2018-08-15 2021-08-15 2018 2021
## 2378 2018-08-08 2021-08-07 2018 2021
## 2379 2018-02-18 2021-02-17 2018 2021
## 2380 2018-09-22 2021-09-21 2018 2021
## 2381 2017-10-03 2020-10-02 2017 2020
## 2382 2018-07-27 2021-07-26 2018 2021
## 2383 2018-05-28 2021-05-28 2018 2021
## 2384 2017-12-13 2020-12-12 2017 2020
## 2385 2018-09-11 2021-09-10 2018 2021
## 2386 2017-10-05 2020-10-04 2017 2020
## 2387 2018-08-19 2021-08-18 2018 2021
## 2388 2018-04-25 2021-04-24 2018 2021
## 2389 2018-06-01 2021-06-01 2018 2021
## 2390 2018-06-18 2021-06-17 2018 2021
## 2391 2017-11-12 2020-11-12 2017 2020
## 2392 2018-07-08 2021-07-07 2018 2021
## 2393 2018-04-08 2021-04-07 2018 2021
## 2394 2018-08-03 2021-07-31 2018 2021
## 2395 2018-06-30 2021-06-29 2018 2021
## 2396 2018-02-08 2021-02-08 2018 2021
## 2397 2019-01-14 2022-01-13 2019 2022
## 2398 2018-09-11 2021-09-11 2018 2021
## 2399 2018-04-08 2021-04-07 2018 2021
## 2400 2018-07-23 2021-07-22 2018 2021
## 2401 2018-07-30 2021-07-29 2018 2021
## 2402 2018-09-08 2021-09-07 2018 2021
## 2403 2018-09-30 2021-09-29 2018 2021
## 2404 2018-09-23 2021-09-22 2018 2021
## 2405 2018-05-31 2021-05-30 2018 2021
## 2406 2018-08-23 2021-08-20 2018 2021
## 2407 2018-08-20 2021-08-19 2018 2021
## 2408 2018-09-09 2021-09-08 2018 2021
## 2409 2018-09-13 2021-06-29 2018 2021
## 2410 2018-07-15 2020-08-09 2018 2020
## 2411 2018-09-16 2021-09-16 2018 2021
## 2412 2018-09-03 2021-09-02 2018 2021
## 2413 2018-09-18 2021-09-18 2018 2021
## 2414 2018-09-07 2021-09-06 2018 2021
## 2415 2018-04-22 2021-04-21 2018 2021
## 2416 2018-08-27 2021-08-27 2018 2021
## 2417 2018-09-06 2021-09-05 2018 2021
## 2418 2018-07-17 2021-07-17 2018 2021
## 2419 2017-12-20 2020-12-19 2017 2020
## 2420 2018-01-23 2019-08-30 2018 2019
## 2421 2018-06-10 2021-06-09 2018 2021
## 2422 2018-08-28 2021-08-27 2018 2021
## 2423 2018-05-22 2021-05-22 2018 2021
## 2424 2018-09-02 2021-09-02 2018 2021
## 2425 2018-08-21 2021-08-20 2018 2021
## 2426 2017-09-30 2020-09-30 2017 2020
## 2427 2018-09-10 2021-09-09 2018 2021
## 2428 2018-09-06 2021-09-05 2018 2021
## 2429 2018-05-27 2021-05-27 2018 2021
## 2430 2018-04-19 2021-04-19 2018 2021
## 2431 2018-06-21 2021-06-20 2018 2021
## 2432 2019-01-13 2022-01-12 2019 2022
## 2433 2018-02-13 2021-02-12 2018 2021
## 2434 2018-09-07 2021-09-06 2018 2021
## 2435 2018-03-31 2021-03-30 2018 2021
## 2436 2018-07-03 2021-07-02 2018 2021
## 2437 2018-08-03 2021-08-02 2018 2021
## 2438 2018-08-14 2020-08-13 2018 2020
## 2439 2017-10-22 2020-10-21 2017 2020
## 2440 2018-06-30 2021-06-29 2018 2021
## 2441 2018-09-09 2021-09-08 2018 2021
## 2442 2018-04-29 2021-04-28 2018 2021
## 2443 2018-06-14 2021-06-14 2018 2021
## 2444 2018-03-01 2018-12-17 2018 2018
## 2445 2018-08-28 2021-08-28 2018 2021
## 2446 2018-03-29 2021-03-28 2018 2021
## 2447 2018-09-14 2021-09-13 2018 2021
## 2448 2018-08-31 2021-08-31 2018 2021
## 2449 2018-09-12 2021-09-11 2018 2021
## 2450 2018-07-25 2021-07-23 2018 2021
## 2451 2018-08-19 2021-08-18 2018 2021
## 2452 2018-09-30 2021-09-29 2018 2021
## 2453 2018-09-27 2021-09-26 2018 2021
## 2454 2018-02-21 2021-02-21 2018 2021
## 2455 2018-12-31 2021-12-30 2018 2021
## 2456 2018-08-15 2021-08-15 2018 2021
## 2457 2018-05-31 2021-05-30 2018 2021
## 2458 2018-09-06 2021-09-05 2018 2021
## 2459 2017-12-13 2020-12-13 2017 2020
## 2460 2018-07-31 2021-07-30 2018 2021
## 2461 2018-04-29 2021-04-29 2018 2021
## 2462 2018-02-28 2021-02-27 2018 2021
## 2463 2018-04-24 2021-04-23 2018 2021
## 2464 2018-01-19 2021-01-18 2018 2021
## 2465 2018-03-31 2020-09-29 2018 2020
## 2466 2018-08-31 2021-08-30 2018 2021
## 2467 2017-11-19 2020-11-19 2017 2020
## 2468 2018-04-10 2020-09-18 2018 2020
## 2469 2018-07-31 2021-07-28 2018 2021
## 2470 2018-08-31 2021-08-31 2018 2021
## 2471 2019-03-20 2022-03-19 2019 2022
## 2472 2018-09-06 2021-09-05 2018 2021
## 2473 2018-03-02 2021-03-01 2018 2021
## 2474 2017-11-19 2020-11-19 2017 2020
## 2475 2018-06-25 2021-06-25 2018 2021
## 2476 2018-06-14 2021-06-14 2018 2021
## 2477 2018-08-02 2019-09-07 2018 2019
## 2478 2017-12-11 2020-12-10 2017 2020
## 2479 2018-09-10 2021-09-09 2018 2021
## 2480 2017-11-16 2020-11-15 2017 2020
## 2481 2018-09-30 2021-09-30 2018 2021
## 2482 2018-05-01 2021-04-30 2018 2021
## 2483 2017-09-30 2020-09-08 2017 2020
## 2484 2018-04-29 2021-04-25 2018 2021
## 2485 2017-10-01 2020-09-30 2017 2020
## 2486 2018-07-31 2021-07-30 2018 2021
## 2487 2018-09-17 2021-09-16 2018 2021
## 2488 2018-09-18 2021-09-17 2018 2021
## 2489 2018-02-20 2021-02-17 2018 2021
## 2490 2018-08-31 2021-08-31 2018 2021
## 2491 2018-08-26 2021-06-30 2018 2021
## 2492 2018-05-20 2021-05-19 2018 2021
## 2493 2018-09-14 2021-09-13 2018 2021
## 2494 2017-10-01 2020-10-01 2017 2020
## 2495 2018-08-29 2021-08-29 2018 2021
## 2496 2018-04-30 2021-04-29 2018 2021
## 2497 2018-09-13 2021-09-13 2018 2021
## 2498 2018-06-11 2021-06-10 2018 2021
## 2499 2018-09-07 2021-09-06 2018 2021
## 2500 2018-12-13 2021-12-12 2018 2021
## 2501 2018-09-30 2021-09-29 2018 2021
## 2502 2018-07-16 2021-07-16 2018 2021
## 2503 2018-10-01 2021-09-30 2018 2021
## 2504 2018-08-11 2021-08-10 2018 2021
## 2505 2018-07-24 2021-07-23 2018 2021
## 2506 2018-08-31 2021-08-30 2018 2021
## 2507 2018-09-16 2021-09-16 2018 2021
## 2508 2018-08-01 2021-08-01 2018 2021
## 2509 2018-09-14 2021-09-13 2018 2021
## 2510 2018-08-14 2021-08-13 2018 2021
## 2511 2018-09-07 2021-09-06 2018 2021
## 2512 2018-08-14 2021-08-13 2018 2021
## 2513 2018-09-18 2021-09-17 2018 2021
## 2514 2017-12-03 2020-11-29 2017 2020
## 2515 2018-08-12 2021-08-11 2018 2021
## 2516 2018-08-31 2021-08-31 2018 2021
## 2517 2018-10-03 2021-10-02 2018 2021
## 2518 2018-01-28 2021-01-27 2018 2021
## 2519 2018-01-01 2020-12-31 2018 2020
## 2520 2018-09-14 2021-09-13 2018 2021
## 2521 2018-06-21 2021-06-20 2018 2021
## 2522 2018-06-24 2021-06-23 2018 2021
## 2523 2018-03-29 2021-03-28 2018 2021
## 2524 2018-08-14 2021-08-13 2018 2021
## 2525 2018-11-29 2021-11-28 2018 2021
## 2526 2017-12-17 2020-12-14 2017 2020
## 2527 2018-09-27 2021-09-26 2018 2021
## 2528 2018-05-31 2021-05-30 2018 2021
## 2529 2018-09-13 2021-09-12 2018 2021
## 2530 2018-07-31 2021-03-30 2018 2021
## 2531 2018-07-14 2021-07-14 2018 2021
## 2532 2018-09-23 2021-09-22 2018 2021
## 2533 2018-08-30 2021-08-29 2018 2021
## 2534 2018-04-06 2021-04-05 2018 2021
## 2535 2018-08-31 2021-08-30 2018 2021
## 2536 2018-09-05 2021-09-04 2018 2021
## 2537 2018-03-17 2021-03-16 2018 2021
## 2538 2018-08-25 2021-08-24 2018 2021
## 2539 2017-10-29 2020-10-28 2017 2020
## 2540 2018-08-07 2021-08-06 2018 2021
## 2541 2017-12-10 2020-12-09 2017 2020
## 2542 2018-09-22 2021-09-21 2018 2021
## 2543 2018-07-31 2021-07-30 2018 2021
## 2544 2018-08-05 2021-08-04 2018 2021
## 2545 2018-01-08 2020-01-23 2018 2020
## 2546 2018-09-10 2021-09-09 2018 2021
## 2547 2018-07-08 2021-07-07 2018 2021
## 2548 2018-09-11 2021-09-10 2018 2021
## 2549 2018-11-05 2021-11-05 2018 2021
## 2550 2018-08-31 2021-08-30 2018 2021
## 2551 2018-09-02 2021-09-01 2018 2021
## 2552 2018-05-23 2021-05-23 2018 2021
## 2553 2018-06-14 2021-06-14 2018 2021
## 2554 2018-09-03 2021-09-03 2018 2021
## 2555 2018-01-28 2021-01-27 2018 2021
## 2556 2018-08-17 2021-08-16 2018 2021
## 2557 2018-07-19 2021-07-19 2018 2021
## 2558 2018-09-20 2021-09-20 2018 2021
## 2559 2018-01-15 2021-01-14 2018 2021
## 2560 2018-01-16 2021-01-15 2018 2021
## 2561 2018-05-27 2021-05-26 2018 2021
## 2562 2017-11-12 2020-11-11 2017 2020
## 2563 2018-08-07 2021-08-06 2018 2021
## 2564 2018-08-08 2021-08-05 2018 2021
## 2565 2018-02-08 2021-02-07 2018 2021
## 2566 2018-05-06 2021-05-06 2018 2021
## 2567 2018-06-14 2021-06-13 2018 2021
## 2568 2018-04-08 2019-03-31 2018 2019
## 2569 2018-03-26 2021-03-25 2018 2021
## 2570 2017-10-29 2020-03-09 2017 2020
## 2571 2018-08-05 2021-08-04 2018 2021
## 2572 2018-09-13 2021-09-12 2018 2021
## 2573 2018-03-04 2021-03-03 2018 2021
## 2574 2018-09-16 2021-09-15 2018 2021
## 2575 2018-08-11 2021-08-10 2018 2021
## 2576 2018-08-31 2021-08-30 2018 2021
## 2577 2018-05-23 2020-09-05 2018 2020
## 2578 2017-11-06 2020-11-05 2017 2020
## 2579 2018-12-31 2021-12-28 2018 2021
## 2580 2018-09-04 2021-09-03 2018 2021
## 2581 2018-09-04 2021-09-03 2018 2021
## 2582 2018-09-14 2021-09-13 2018 2021
## 2583 2018-12-31 2021-12-30 2018 2021
## 2584 2018-07-31 2021-07-31 2018 2021
## 2585 2018-09-14 2020-09-13 2018 2020
## 2586 2018-08-19 2021-08-18 2018 2021
## 2587 2018-07-06 2021-07-05 2018 2021
## 2588 2018-09-04 2021-09-04 2018 2021
## 2589 2018-05-06 2021-05-05 2018 2021
## 2590 2018-03-31 2021-03-28 2018 2021
## 2591 2017-10-05 2020-10-04 2017 2020
## 2592 2018-01-23 2021-01-22 2018 2021
## 2593 2018-08-14 2021-08-13 2018 2021
## 2594 2018-08-17 2021-08-17 2018 2021
## 2595 2018-07-08 2021-07-07 2018 2021
## 2596 2018-09-07 2021-09-06 2018 2021
## 2597 2018-08-30 2021-08-29 2018 2021
## 2598 2018-05-22 2021-05-21 2018 2021
## 2599 2018-01-17 2021-01-16 2018 2021
## 2600 2018-09-04 2021-09-04 2018 2021
## 2601 2017-10-23 2020-10-22 2017 2020
## 2602 2018-07-19 2021-07-19 2018 2021
## 2603 2018-09-06 2021-09-06 2018 2021
## 2604 2018-09-02 2021-09-01 2018 2021
## 2605 2018-09-05 2021-09-04 2018 2021
## 2606 2018-02-28 2021-02-27 2018 2021
## 2607 2018-08-31 2021-08-30 2018 2021
## 2608 2018-08-31 2021-08-30 2018 2021
## 2609 2018-07-22 2021-07-21 2018 2021
## 2610 2018-05-20 2021-05-19 2018 2021
## 2611 2018-01-25 2021-01-24 2018 2021
## 2612 2018-09-20 2021-09-19 2018 2021
## 2613 2017-11-12 2020-11-11 2017 2020
## 2614 2017-10-08 2020-10-07 2017 2020
## 2615 2018-04-15 2020-12-30 2018 2020
## 2616 2018-09-16 2021-09-15 2018 2021
## 2617 2018-04-01 2021-03-31 2018 2021
## 2618 2018-01-21 2021-01-21 2018 2021
## 2619 2018-09-17 2021-09-16 2018 2021
## 2620 2018-06-04 2021-06-03 2018 2021
## 2621 2018-07-31 2021-07-30 2018 2021
## 2622 2018-08-08 2021-08-08 2018 2021
## 2623 2018-01-14 2021-01-13 2018 2021
## 2624 2018-08-31 2021-08-31 2018 2021
## 2625 2018-04-02 2021-04-01 2018 2021
## 2626 2017-12-18 2020-12-17 2017 2020
## 2627 2018-07-01 2021-06-30 2018 2021
## 2628 2018-09-17 2021-09-17 2018 2021
## 2629 2018-09-16 2021-09-15 2018 2021
## 2630 2018-05-20 2021-05-19 2018 2021
## 2631 2018-10-10 2021-10-09 2018 2021
## 2632 2018-09-04 2021-09-03 2018 2021
## 2633 2018-08-27 2021-08-26 2018 2021
## 2634 2018-08-28 2021-08-27 2018 2021
## 2635 2018-03-18 2021-03-17 2018 2021
## 2636 2018-11-18 2021-11-17 2018 2021
## 2637 2018-09-15 2021-09-15 2018 2021
## 2638 2018-04-23 2021-04-23 2018 2021
## 2639 2018-08-31 2021-08-31 2018 2021
## 2640 2018-06-14 2021-06-14 2018 2021
## 2641 2018-09-06 2021-09-05 2018 2021
## 2642 2018-04-09 2021-04-09 2018 2021
## 2643 2018-05-02 2020-09-29 2018 2020
## 2644 2018-02-11 2021-02-10 2018 2021
## 2645 2018-05-01 2021-04-30 2018 2021
## 2646 2018-08-31 2021-08-30 2018 2021
## 2647 2018-08-16 2021-08-15 2018 2021
## 2648 2017-12-10 2020-12-10 2017 2020
## 2649 2018-05-01 2021-05-01 2018 2021
## 2650 2018-12-08 2021-12-05 2018 2021
## 2651 2018-07-22 2021-07-19 2018 2021
## 2652 2018-08-31 2021-08-30 2018 2021
## 2653 2018-06-24 2021-06-24 2018 2021
## 2654 2018-02-04 2021-02-03 2018 2021
## 2655 2018-07-19 2021-07-18 2018 2021
## 2656 2018-08-24 2021-08-23 2018 2021
## 2657 2017-11-29 2020-11-28 2017 2020
## 2658 2018-02-04 2021-02-03 2018 2021
## 2659 2018-08-05 2021-08-04 2018 2021
## 2660 2018-06-29 2021-06-28 2018 2021
## 2661 2018-06-11 2021-06-11 2018 2021
## 2662 2019-02-24 2021-12-23 2019 2021
## 2663 2017-11-12 2020-11-11 2017 2020
## 2664 2018-07-31 2021-07-31 2018 2021
## 2665 2018-06-21 2021-06-20 2018 2021
## 2666 2017-10-08 2020-10-07 2017 2020
## 2667 2018-09-18 2021-09-18 2018 2021
## 2668 2018-06-04 2021-06-04 2018 2021
## 2669 2018-08-15 2021-08-15 2018 2021
## 2670 2018-12-31 2021-12-30 2018 2021
## 2671 2018-09-03 2021-09-02 2018 2021
## 2672 2018-03-22 2021-03-21 2018 2021
## 2673 2018-05-13 2021-05-13 2018 2021
## 2674 2018-02-05 2021-02-04 2018 2021
## 2675 2018-06-30 2021-06-29 2018 2021
## 2676 2018-02-12 2021-02-12 2018 2021
## 2677 2018-03-07 2021-03-06 2018 2021
## 2678 2017-11-12 2020-11-11 2017 2020
## 2679 2018-06-14 2021-06-14 2018 2021
## 2680 2018-08-12 2021-08-12 2018 2021
## 2681 2018-08-31 2021-08-29 2018 2021
## 2682 2018-08-31 2021-08-30 2018 2021
## 2683 2018-09-23 2018-11-22 2018 2018
## 2684 2017-11-01 2020-11-01 2017 2020
## 2685 2018-02-13 2021-02-13 2018 2021
## 2686 2018-09-23 2021-09-23 2018 2021
## 2687 2017-10-31 2020-10-31 2017 2020
## 2688 2018-09-22 2021-09-21 2018 2021
## 2689 2018-08-17 2019-05-30 2018 2019
## 2690 2018-08-31 2021-08-31 2018 2021
## 2691 2018-05-31 2021-05-30 2018 2021
## 2692 2018-09-02 2020-12-30 2018 2020
## 2693 2018-09-11 2021-09-10 2018 2021
## 2694 2018-08-14 2021-08-14 2018 2021
## 2695 2018-07-15 2021-07-14 2018 2021
## 2696 2018-08-24 2021-08-24 2018 2021
## 2697 2018-06-10 2021-06-09 2018 2021
## 2698 2018-08-06 2021-08-05 2018 2021
## 2699 2019-02-18 2022-02-17 2019 2022
## 2700 2018-09-06 2021-09-03 2018 2021
## 2701 2018-12-02 2021-12-02 2018 2021
## 2702 2018-09-12 2021-09-11 2018 2021
## 2703 2018-01-14 2021-01-13 2018 2021
## 2704 2018-07-22 2021-07-21 2018 2021
## 2705 2018-09-11 2021-09-10 2018 2021
## 2706 2018-08-17 2021-08-17 2018 2021
## 2707 2018-08-19 2021-08-19 2018 2021
## 2708 2018-06-24 2021-06-23 2018 2021
## 2709 2018-09-27 2021-09-26 2018 2021
## 2710 2017-11-19 2020-09-11 2017 2020
## 2711 2018-05-09 2021-05-08 2018 2021
## 2712 2018-08-20 2021-08-19 2018 2021
## 2713 2018-07-20 2021-07-20 2018 2021
## 2714 2018-09-10 2021-09-10 2018 2021
## 2715 2018-04-29 2020-05-22 2018 2020
## 2716 2018-06-14 2021-06-14 2018 2021
## 2717 2018-04-08 2021-04-08 2018 2021
## 2718 2018-09-09 2021-09-08 2018 2021
## 2719 2018-08-19 2021-08-18 2018 2021
## 2720 2018-03-22 2021-03-21 2018 2021
## 2721 2018-08-31 2021-08-31 2018 2021
## 2722 2018-09-01 2021-09-01 2018 2021
## 2723 2018-09-14 2021-09-14 2018 2021
## 2724 2018-03-19 2021-03-18 2018 2021
## 2725 2018-08-19 2021-08-18 2018 2021
## 2726 2018-04-04 2021-04-04 2018 2021
## 2727 2018-10-18 2021-10-17 2018 2021
## 2728 2017-11-12 2020-11-11 2017 2020
## 2729 2018-07-31 2021-07-30 2018 2021
## 2730 2018-09-04 2021-09-03 2018 2021
## 2731 2018-09-09 2021-09-08 2018 2021
## 2732 2018-09-24 2021-09-24 2018 2021
## 2733 2018-03-01 2021-02-28 2018 2021
## 2734 2018-09-03 2021-09-02 2018 2021
## 2735 2018-08-31 2021-08-30 2018 2021
## 2736 2018-01-14 2021-01-14 2018 2021
## 2737 2018-09-15 2021-09-15 2018 2021
## 2738 2018-09-03 2021-09-03 2018 2021
## 2739 2018-11-11 2021-11-10 2018 2021
## 2740 2018-03-31 2021-03-30 2018 2021
## 2741 2018-09-03 2021-09-03 2018 2021
## 2742 2018-01-25 2021-01-25 2018 2021
## 2743 2018-08-26 2021-08-26 2018 2021
## 2744 2017-12-18 2020-12-17 2017 2020
## 2745 2018-08-11 2021-08-10 2018 2021
## 2746 2018-10-02 2021-10-01 2018 2021
## 2747 2018-01-21 2021-01-20 2018 2021
## 2748 2018-07-27 2021-07-27 2018 2021
## 2749 2018-08-14 2021-08-13 2018 2021
## 2750 2019-02-05 2022-02-04 2019 2022
## 2751 2018-04-22 2021-04-22 2018 2021
## 2752 2017-11-30 2020-11-30 2017 2020
## 2753 2018-08-24 2021-08-24 2018 2021
## 2754 2018-09-19 2021-09-19 2018 2021
## 2755 2018-09-30 2021-09-30 2018 2021
## 2756 2018-02-15 2021-02-14 2018 2021
## 2757 2018-08-20 2021-08-19 2018 2021
## 2758 2018-04-24 2020-03-28 2018 2020
## 2759 2018-04-22 2021-04-21 2018 2021
## 2760 2018-04-07 2021-04-06 2018 2021
## 2761 2018-08-31 2021-08-31 2018 2021
## 2762 2018-09-18 2021-09-18 2018 2021
## 2763 2018-03-11 2021-03-11 2018 2021
## 2764 2018-09-18 2021-09-18 2018 2021
## 2765 2018-09-14 2021-09-13 2018 2021
## 2766 2018-09-29 2021-09-29 2018 2021
## 2767 2018-09-21 2021-09-20 2018 2021
## 2768 2018-11-14 2021-11-13 2018 2021
## 2769 2018-03-14 2021-03-13 2018 2021
## 2770 2018-01-25 2021-01-24 2018 2021
## 2771 2018-09-08 2021-09-08 2018 2021
## 2772 2017-12-28 2020-12-25 2017 2020
## 2773 2018-08-31 2021-08-30 2018 2021
## 2774 2018-06-10 2021-06-10 2018 2021
## 2775 2018-07-26 2021-07-25 2018 2021
## 2776 2018-09-05 2021-09-04 2018 2021
## 2777 2018-10-31 2019-10-30 2018 2019
## 2778 2018-03-27 2020-03-27 2018 2020
## 2779 2018-03-31 2021-03-31 2018 2021
## 2780 2019-02-08 2022-02-08 2019 2022
## 2781 2018-09-06 2021-09-05 2018 2021
## 2782 2018-09-30 2021-09-29 2018 2021
## 2783 2018-06-11 2021-06-10 2018 2021
## 2784 2018-05-31 2021-05-30 2018 2021
## 2785 2018-03-18 2021-03-17 2018 2021
## 2786 2018-03-08 2021-03-07 2018 2021
## 2787 2018-06-14 2021-06-14 2018 2021
## 2788 2018-03-01 2021-03-01 2018 2021
## 2789 2018-08-27 2021-08-27 2018 2021
## 2790 2018-09-14 2021-09-14 2018 2021
## 2791 2018-09-05 2021-09-04 2018 2021
## 2792 2018-08-05 2021-08-04 2018 2021
## 2793 2018-09-19 2021-09-19 2018 2021
## 2794 2018-08-31 2021-08-30 2018 2021
## 2795 2018-06-07 2021-06-06 2018 2021
## 2796 2018-08-25 2021-08-24 2018 2021
## 2797 2018-07-08 2021-07-08 2018 2021
## 2798 2018-08-15 2021-08-14 2018 2021
## 2799 2018-08-02 2021-08-01 2018 2021
## 2800 2018-09-16 2021-09-15 2018 2021
## 2801 2018-02-18 2020-08-08 2018 2020
## 2802 2017-10-31 2019-07-30 2017 2019
## 2803 2018-08-03 2021-08-02 2018 2021
## 2804 2018-09-10 2021-09-09 2018 2021
## 2805 2018-07-26 2021-07-26 2018 2021
## 2806 2018-09-02 2021-09-01 2018 2021
## 2807 2018-09-06 2021-09-05 2018 2021
## 2808 2018-08-14 2021-08-13 2018 2021
## 2809 2018-08-26 2021-08-26 2018 2021
## 2810 2018-07-31 2021-07-31 2018 2021
## 2811 2018-09-06 2021-09-05 2018 2021
## 2812 2018-02-09 2021-02-09 2018 2021
## 2813 2018-09-23 2021-09-22 2018 2021
## 2814 2018-02-15 2021-02-14 2018 2021
## 2815 2018-09-12 2021-09-11 2018 2021
## 2816 2019-03-03 2020-03-02 2019 2020
## 2817 2018-09-14 2021-09-14 2018 2021
## 2818 2018-08-30 2021-08-29 2018 2021
## 2819 2018-07-10 2019-04-24 2018 2019
## 2820 2018-07-02 2021-07-01 2018 2021
## 2821 2018-01-26 2021-01-25 2018 2021
## 2822 2018-09-20 2019-05-30 2018 2019
## 2823 2018-03-25 2021-03-24 2018 2021
## 2824 2017-12-28 2020-12-27 2017 2020
## 2825 2018-09-01 2021-08-31 2018 2021
## 2826 2018-12-31 2021-12-30 2018 2021
## 2827 2018-06-07 2021-06-06 2018 2021
## 2828 2018-02-25 2021-02-14 2018 2021
## 2829 2018-03-01 2021-02-28 2018 2021
## 2830 2018-09-18 2021-09-18 2018 2021
## 2831 2017-10-03 2020-10-02 2017 2020
## 2832 2018-08-31 2021-08-30 2018 2021
## 2833 2018-06-24 2021-06-24 2018 2021
## 2834 2018-09-29 2021-09-28 2018 2021
## 2835 2017-10-14 2020-10-14 2017 2020
## 2836 2017-10-09 2020-10-08 2017 2020
## 2837 2018-09-02 2021-09-02 2018 2021
## 2838 2018-02-26 2021-02-25 2018 2021
## 2839 2017-12-31 2020-12-28 2017 2020
## 2840 2018-09-15 2021-09-14 2018 2021
## 2841 2018-08-28 2021-08-27 2018 2021
## 2842 2018-09-18 2021-09-18 2018 2021
## 2843 2018-02-22 2021-02-21 2018 2021
## 2844 2018-09-14 2021-09-14 2018 2021
## 2845 2018-07-13 2021-07-12 2018 2021
## 2846 2018-06-25 2021-06-25 2018 2021
## 2847 2018-09-14 2021-09-13 2018 2021
## 2848 2018-08-30 2021-08-29 2018 2021
## 2849 2017-11-01 2020-10-31 2017 2020
## 2850 2018-08-19 2021-08-18 2018 2021
## 2851 2018-09-01 2021-08-30 2018 2021
## 2852 2018-07-31 2021-07-31 2018 2021
## 2853 2018-05-30 2018-08-27 2018 2018
## 2854 2018-01-07 2021-01-06 2018 2021
## 2855 2018-05-07 2021-05-06 2018 2021
## 2856 2018-08-19 2021-08-19 2018 2021
## 2857 2018-06-06 2021-06-05 2018 2021
## 2858 2018-02-01 2021-01-31 2018 2021
## 2859 2018-07-11 2021-07-09 2018 2021
## 2860 2018-02-18 2021-02-17 2018 2021
## 2861 2017-11-23 2020-11-20 2017 2020
## 2862 2018-08-30 2021-08-29 2018 2021
## 2863 2018-08-14 2021-08-13 2018 2021
## 2864 2017-11-21 2020-11-20 2017 2020
## 2865 2018-09-19 2021-09-18 2018 2021
## 2866 2018-06-24 2021-06-23 2018 2021
## 2867 2018-10-28 2021-10-27 2018 2021
## 2868 2018-09-14 2021-09-13 2018 2021
## 2869 2018-07-22 2021-07-05 2018 2021
## 2870 2018-09-10 2021-09-10 2018 2021
## 2871 2018-09-10 2021-09-09 2018 2021
## 2872 2018-09-13 2021-09-12 2018 2021
## 2873 2018-08-12 2021-08-11 2018 2021
## 2874 2018-08-23 2021-08-22 2018 2021
## 2875 2018-09-27 2021-09-27 2018 2021
## 2876 2018-04-02 2021-04-01 2018 2021
## 2877 2018-07-31 2021-07-30 2018 2021
## 2878 2018-06-30 2021-06-29 2018 2021
## 2879 2018-03-04 2021-03-03 2018 2021
## 2880 2018-09-17 2021-09-16 2018 2021
## 2881 2018-08-31 2021-08-30 2018 2021
## 2882 2017-11-30 2020-11-29 2017 2020
## 2883 2018-09-17 2021-09-17 2018 2021
## 2884 2018-07-30 2021-07-30 2018 2021
## 2885 2018-09-18 2021-09-18 2018 2021
## 2886 2018-09-23 2021-09-22 2018 2021
## 2887 2018-04-12 2021-04-11 2018 2021
## 2888 2018-08-31 2021-08-30 2018 2021
## 2889 2018-09-10 2021-09-09 2018 2021
## 2890 2018-08-12 2021-08-11 2018 2021
## 2891 2018-09-20 2021-09-19 2018 2021
## 2892 2017-12-16 2020-12-15 2017 2020
## 2893 2018-09-27 2021-09-27 2018 2021
## 2894 2018-09-11 2021-09-10 2018 2021
## 2895 2018-03-30 2021-03-29 2018 2021
## 2896 2017-12-04 2020-12-03 2017 2020
## 2897 2018-04-17 2021-04-16 2018 2021
## 2898 2018-08-31 2021-08-30 2018 2021
## 2899 2018-09-13 2021-09-13 2018 2021
## 2900 2017-12-27 2020-12-26 2017 2020
## 2901 2018-01-17 2021-01-05 2018 2021
## 2902 2017-11-12 2020-11-12 2017 2020
## 2903 2018-09-03 2021-09-02 2018 2021
## 2904 2018-09-22 2021-09-21 2018 2021
## 2905 2017-10-29 2020-10-28 2017 2020
## 2906 2018-01-21 2021-01-21 2018 2021
## 2907 2018-08-21 2021-08-21 2018 2021
## 2908 2018-08-14 2021-08-14 2018 2021
## 2909 2018-07-05 2021-07-04 2018 2021
## 2910 2018-04-17 2021-04-17 2018 2021
## 2911 2018-09-17 2021-09-16 2018 2021
## 2912 2018-09-13 2021-09-13 2018 2021
## 2913 2018-09-14 2020-09-14 2018 2020
## 2914 2018-12-30 2021-12-30 2018 2021
## 2915 2018-06-14 2021-06-14 2018 2021
## 2916 2018-09-14 2021-09-13 2018 2021
## 2917 2018-09-07 2020-04-29 2018 2020
## 2918 2018-08-20 2021-08-19 2018 2021
## 2919 2017-10-20 2020-10-19 2017 2020
## 2920 2018-01-03 2020-01-02 2018 2020
## 2921 2017-10-24 2020-10-23 2017 2020
## 2922 2018-08-26 2021-08-25 2018 2021
## 2923 2018-09-05 2021-09-04 2018 2021
## 2924 2018-07-23 2021-07-22 2018 2021
## 2925 2017-12-27 2020-12-27 2017 2020
## 2926 2018-09-17 2021-09-16 2018 2021
## 2927 2018-08-03 2021-08-03 2018 2021
## 2928 2018-08-14 2021-08-13 2018 2021
## 2929 2018-08-31 2021-08-30 2018 2021
## 2930 2018-06-30 2019-06-29 2018 2019
## 2931 2017-12-13 2020-12-12 2017 2020
## 2932 2018-09-18 2021-09-17 2018 2021
## 2933 2018-03-22 2021-03-22 2018 2021
## 2934 2018-09-13 2021-09-12 2018 2021
## 2935 2018-08-30 2021-08-29 2018 2021
## 2936 2018-06-30 2021-06-29 2018 2021
## 2937 2018-05-17 2021-05-16 2018 2021
## 2938 2018-08-27 2021-08-27 2018 2021
## 2939 2018-08-22 2021-08-21 2018 2021
## 2940 2018-08-31 2020-08-30 2018 2020
## 2941 2017-12-31 2020-12-30 2017 2020
## 2942 2018-07-05 2021-07-05 2018 2021
## 2943 2018-09-05 2021-09-05 2018 2021
## 2944 2018-08-06 2021-08-05 2018 2021
## 2945 2018-09-19 2021-09-18 2018 2021
## 2946 2018-08-31 2021-08-30 2018 2021
## 2947 2018-09-12 2021-09-11 2018 2021
## 2948 2018-07-31 2021-07-30 2018 2021
## 2949 2018-08-10 2021-08-09 2018 2021
## 2950 2018-08-30 2021-08-29 2018 2021
## 2951 2018-09-21 2021-09-20 2018 2021
## 2952 2018-05-22 2020-07-12 2018 2020
## 2953 2018-09-03 2021-09-02 2018 2021
## 2954 2018-09-09 2021-09-08 2018 2021
## 2955 2018-01-31 2021-01-30 2018 2021
## 2956 2018-05-21 2021-05-21 2018 2021
## 2957 2018-02-01 2021-01-30 2018 2021
## 2958 2018-09-16 2021-09-15 2018 2021
## 2959 2018-09-12 2021-09-12 2018 2021
## 2960 2018-05-03 2021-05-02 2018 2021
## 2961 2018-08-31 2021-08-30 2018 2021
## 2962 2018-01-28 2021-01-28 2018 2021
## 2963 2018-03-09 2021-03-09 2018 2021
## 2964 2018-08-31 2021-08-31 2018 2021
## 2965 2017-12-28 2020-12-27 2017 2020
## 2966 2018-08-15 2020-09-29 2018 2020
## 2967 2017-12-16 2020-12-15 2017 2020
## 2968 2018-08-19 2021-08-18 2018 2021
## 2969 2018-06-03 2021-04-27 2018 2021
## 2970 2018-09-11 2021-09-11 2018 2021
## 2971 2018-08-21 2021-08-20 2018 2021
## 2972 2018-08-19 2021-08-18 2018 2021
## 2973 2017-10-31 2020-10-31 2017 2020
## 2974 2018-09-06 2021-09-05 2018 2021
## 2975 2018-09-30 2021-09-29 2018 2021
## 2976 2018-08-09 2021-08-08 2018 2021
## 2977 2017-10-22 2020-10-22 2017 2020
## 2978 2018-09-14 2021-09-13 2018 2021
## 2979 2018-04-03 2021-04-02 2018 2021
## 2980 2018-05-06 2021-05-05 2018 2021
## 2981 2018-02-08 2021-02-07 2018 2021
## 2982 2017-10-29 2019-12-30 2017 2019
## 2983 2018-10-31 2021-10-29 2018 2021
## 2984 2018-09-06 2021-09-05 2018 2021
## 2985 2018-10-08 2021-10-07 2018 2021
## 2986 2018-04-30 2021-04-29 2018 2021
## 2987 2018-09-20 2021-09-19 2018 2021
## 2988 2018-08-07 2021-08-06 2018 2021
## 2989 2018-06-25 2021-06-24 2018 2021
## 2990 2018-08-31 2021-08-31 2018 2021
## 2991 2018-07-31 2021-07-30 2018 2021
## 2992 2018-09-17 2021-09-16 2018 2021
## 2993 2018-09-19 2021-09-19 2018 2021
## 2994 2018-08-25 2021-08-24 2018 2021
## 2995 2017-11-19 2020-11-18 2017 2020
## 2996 2018-07-31 2021-07-30 2018 2021
## 2997 2018-11-23 2021-11-23 2018 2021
## 2998 2018-09-03 2021-09-02 2018 2021
## 2999 2018-08-12 2021-08-11 2018 2021
## 3000 2018-02-26 2021-02-25 2018 2021
## 3001 2018-09-14 2021-09-13 2018 2021
## 3002 2018-09-17 2021-09-16 2018 2021
## 3003 2018-03-04 2021-03-04 2018 2021
## 3004 2018-04-01 2021-03-31 2018 2021
## 3005 2017-12-31 2020-11-12 2017 2020
## 3006 2018-08-15 2021-08-14 2018 2021
## 3007 2018-09-20 2021-09-19 2018 2021
## 3008 2018-06-17 2021-06-16 2018 2021
## 3009 2018-09-03 2021-09-03 2018 2021
## 3010 2018-05-30 2021-05-29 2018 2021
## 3011 2018-07-05 2021-07-04 2018 2021
## 3012 2018-09-23 2021-09-23 2018 2021
## 3013 2018-07-26 2021-07-25 2018 2021
## 3014 2018-07-12 2021-07-11 2018 2021
## 3015 2018-05-26 2021-05-25 2018 2021
## 3016 2018-09-09 2021-09-08 2018 2021
## 3017 2018-06-24 2021-06-24 2018 2021
## 3018 2017-10-25 2020-10-25 2017 2020
## 3019 2018-09-06 2021-09-06 2018 2021
## 3020 2018-09-10 2021-09-09 2018 2021
## 3021 2018-07-27 2021-07-26 2018 2021
## 3022 2017-12-08 2020-12-07 2017 2020
## 3023 2018-07-31 2021-07-31 2018 2021
## 3024 2017-12-20 2020-12-16 2017 2020
## 3025 2018-06-30 2021-06-29 2018 2021
## 3026 2018-08-31 2021-08-30 2018 2021
## 3027 2018-09-30 2021-09-30 2018 2021
## 3028 2018-09-11 2021-09-10 2018 2021
## 3029 2018-08-07 2021-08-06 2018 2021
## 3030 2018-09-02 2020-12-30 2018 2020
## 3031 2018-09-11 2021-09-10 2018 2021
## 3032 2018-08-15 2021-08-14 2018 2021
## 3033 2018-06-30 2020-06-29 2018 2020
## 3034 2018-05-14 2021-05-13 2018 2021
## 3035 2018-09-07 2021-09-06 2018 2021
## 3036 2017-12-14 2020-12-13 2017 2020
## 3037 2018-08-31 2021-08-30 2018 2021
## 3038 2018-03-31 2021-03-30 2018 2021
## 3039 2018-06-14 2021-06-14 2018 2021
## 3040 2018-01-30 2021-01-29 2018 2021
## 3041 2018-07-23 2021-07-22 2018 2021
## 3042 2018-05-14 2021-05-13 2018 2021
## 3043 2018-02-25 2021-02-25 2018 2021
## 3044 2018-09-04 2021-09-04 2018 2021
## 3045 2018-08-07 2021-08-06 2018 2021
## 3046 2017-10-31 2020-10-30 2017 2020
## 3047 2018-08-12 2021-08-12 2018 2021
## 3048 2018-09-20 2021-09-19 2018 2021
## 3049 2018-08-03 2020-12-30 2018 2020
## 3050 2018-09-07 2021-09-07 2018 2021
## 3051 2018-09-10 2021-09-09 2018 2021
## 3052 2018-08-06 2021-08-05 2018 2021
## 3053 2018-11-30 2021-11-29 2018 2021
## 3054 2018-09-10 2020-08-14 2018 2020
## 3055 2018-03-31 2021-03-30 2018 2021
## 3056 2018-08-01 2021-07-31 2018 2021
## 3057 2017-11-15 2020-11-15 2017 2020
## 3058 2018-05-20 2021-05-20 2018 2021
## 3059 2018-09-25 2021-09-24 2018 2021
## 3060 2018-07-15 2021-07-14 2018 2021
## 3061 2018-09-27 2021-09-27 2018 2021
## 3062 2018-07-24 2021-07-23 2018 2021
## 3063 2018-06-09 2021-06-09 2018 2021
## 3064 2018-03-08 2021-03-08 2018 2021
## 3065 2018-07-29 2021-07-28 2018 2021
## 3066 2018-09-06 2021-09-06 2018 2021
## 3067 2018-07-11 2021-07-11 2018 2021
## 3068 2018-01-30 2021-01-30 2018 2021
## 3069 2018-05-21 2021-05-20 2018 2021
## 3070 2018-09-20 2021-09-20 2018 2021
## 3071 2018-06-28 2021-06-27 2018 2021
## 3072 2018-05-20 2021-05-19 2018 2021
## 3073 2018-09-06 2021-09-05 2018 2021
## 3074 2018-01-21 2021-01-20 2018 2021
## 3075 2018-07-31 2021-07-30 2018 2021
## 3076 2018-07-31 2021-07-30 2018 2021
## 3077 2018-06-14 2021-06-13 2018 2021
## 3078 2018-02-11 2021-02-10 2018 2021
## 3079 2018-08-24 2021-08-23 2018 2021
## 3080 2017-11-12 2020-11-11 2017 2020
## 3081 2018-09-12 2021-09-11 2018 2021
## 3082 2018-06-30 2021-06-29 2018 2021
## 3083 2017-10-11 2020-10-10 2017 2020
## 3084 2018-08-07 2021-08-06 2018 2021
## 3085 2018-08-24 2021-08-23 2018 2021
## 3086 2018-08-31 2021-08-30 2018 2021
## 3087 2018-09-07 2021-09-06 2018 2021
## 3088 2018-08-12 2021-08-11 2018 2021
## 3089 2018-09-14 2021-09-13 2018 2021
## 3090 2018-09-07 2021-09-06 2018 2021
## 3091 2018-07-15 2021-07-14 2018 2021
## 3092 2018-08-31 2021-08-31 2018 2021
## 3093 2018-04-09 2021-04-09 2018 2021
## 3094 2018-09-04 2021-09-04 2018 2021
## 3095 2017-10-19 2020-10-19 2017 2020
## 3096 2018-09-16 2021-09-15 2018 2021
## 3097 2018-01-02 2021-01-01 2018 2021
## 3098 2018-09-07 2021-09-06 2018 2021
## 3099 2018-04-27 2021-04-24 2018 2021
## 3100 2018-09-05 2021-09-04 2018 2021
## 3101 2018-07-31 2021-07-30 2018 2021
## 3102 2018-08-31 2021-08-30 2018 2021
## 3103 2018-07-29 2021-07-26 2018 2021
## 3104 2018-02-14 2021-02-13 2018 2021
## 3105 2018-09-03 2021-09-02 2018 2021
## 3106 2017-11-08 2020-11-07 2017 2020
## 3107 2018-05-16 2021-05-15 2018 2021
## 3108 2017-11-15 2020-11-14 2017 2020
## 3109 2017-12-19 2020-02-26 2017 2020
## 3110 2018-09-11 2021-09-10 2018 2021
## 3111 2017-11-30 2020-11-29 2017 2020
## 3112 2018-04-08 2021-04-08 2018 2021
## 3113 2018-08-26 2021-08-25 2018 2021
## 3114 2018-09-13 2021-09-12 2018 2021
## 3115 2018-08-31 2021-08-30 2018 2021
## 3116 2018-09-03 2021-09-02 2018 2021
## 3117 2018-01-15 2021-01-15 2018 2021
## 3118 2018-08-16 2021-08-15 2018 2021
## 3119 2018-04-15 2021-04-14 2018 2021
## 3120 2018-09-30 2021-09-29 2018 2021
## 3121 2018-09-14 2021-09-14 2018 2021
## 3122 2018-03-30 2020-03-29 2018 2020
## 3123 2018-08-08 2021-08-07 2018 2021
## 3124 2018-09-29 2021-09-28 2018 2021
## 3125 2017-10-17 2018-06-29 2017 2018
## 3126 2018-06-21 2021-06-18 2018 2021
## 3127 2018-08-14 2021-08-13 2018 2021
## 3128 2018-08-21 2021-08-20 2018 2021
## 3129 2018-08-14 2021-08-13 2018 2021
## 3130 2018-03-14 2021-03-13 2018 2021
## 3131 2018-08-26 2021-08-25 2018 2021
## 3132 2018-05-24 2021-05-23 2018 2021
## 3133 2019-01-18 2022-01-17 2019 2022
## 3134 2018-07-29 2021-07-28 2018 2021
## 3135 2018-07-09 2021-07-09 2018 2021
## 3136 2018-12-31 2021-12-30 2018 2021
## 3137 2017-09-26 2020-09-25 2017 2020
## 3138 2018-06-24 2021-06-23 2018 2021
## 3139 2018-12-09 2021-12-08 2018 2021
## 3140 2018-05-06 2021-05-06 2018 2021
## 3141 2018-06-04 2021-06-02 2018 2021
## 3142 2018-09-10 2021-09-09 2018 2021
## 3143 2017-10-15 2020-10-15 2017 2020
## 3144 2018-08-30 2021-08-29 2018 2021
## 3145 2018-06-03 2021-06-02 2018 2021
## 3146 2018-08-19 2021-08-18 2018 2021
## 3147 2018-06-25 2021-06-22 2018 2021
## 3148 2018-01-21 2021-01-20 2018 2021
## 3149 2018-04-15 2021-04-14 2018 2021
## 3150 2018-08-31 2021-08-30 2018 2021
## 3151 2018-09-05 2021-09-04 2018 2021
## 3152 2018-09-05 2021-09-04 2018 2021
## 3153 2018-05-20 2021-05-18 2018 2021
## 3154 2018-10-03 2021-10-02 2018 2021
## 3155 2018-01-25 2021-01-22 2018 2021
## 3156 2018-07-10 2021-07-09 2018 2021
## 3157 2018-09-03 2021-09-02 2018 2021
## 3158 2018-07-16 2021-07-16 2018 2021
## 3159 2018-09-24 2021-09-24 2018 2021
## 3160 2018-07-30 2021-07-29 2018 2021
## 3161 2018-08-31 2021-08-29 2018 2021
## 3162 2018-09-09 2021-09-09 2018 2021
## 3163 2018-03-11 2021-03-10 2018 2021
## 3164 2018-07-20 2021-07-20 2018 2021
## 3165 2018-04-12 2021-04-11 2018 2021
## 3166 2018-06-28 2021-06-27 2018 2021
## 3167 2018-07-27 2021-07-27 2018 2021
## 3168 2018-09-17 2021-09-17 2018 2021
## 3169 2018-01-31 2021-01-30 2018 2021
## 3170 2018-06-30 2021-06-29 2018 2021
## 3171 2018-09-16 2021-08-30 2018 2021
## 3172 2019-02-19 2022-02-18 2019 2022
## 3173 2018-09-18 2021-09-17 2018 2021
## 3174 2017-11-29 2019-09-29 2017 2019
## 3175 2018-08-27 2021-08-26 2018 2021
## 3176 2018-05-31 2021-05-30 2018 2021
## 3177 2018-04-18 2021-04-17 2018 2021
## 3178 2018-06-06 2021-06-05 2018 2021
## 3179 2018-09-16 2021-09-15 2018 2021
## 3180 2017-12-17 2020-12-17 2017 2020
## 3181 2018-08-31 2021-08-30 2018 2021
## 3182 2018-07-28 2021-07-27 2018 2021
## 3183 2018-09-01 2021-08-31 2018 2021
## 3184 2018-09-15 2020-06-14 2018 2020
## 3185 2018-09-05 2021-08-29 2018 2021
## 3186 2018-08-03 2021-08-02 2018 2021
## 3187 2018-09-16 2021-09-15 2018 2021
## 3188 2018-09-17 2021-09-16 2018 2021
## 3189 2018-01-29 2021-01-28 2018 2021
## 3190 2018-09-21 2021-09-21 2018 2021
## 3191 2018-08-25 2021-08-24 2018 2021
## 3192 2018-04-24 2020-09-30 2018 2020
## 3193 2017-12-18 2019-04-04 2017 2019
## 3194 2018-02-15 2021-02-14 2018 2021
## 3195 2018-09-06 2021-09-05 2018 2021
## 3196 2018-09-14 2021-09-13 2018 2021
## 3197 2018-08-16 2021-08-15 2018 2021
## 3198 2018-02-28 2021-02-27 2018 2021
## 3199 2017-10-08 2020-10-08 2017 2020
## 3200 2018-06-25 2021-06-24 2018 2021
## 3201 2018-09-06 2021-09-05 2018 2021
## 3202 2018-09-14 2020-09-13 2018 2020
## 3203 2018-08-19 2021-08-18 2018 2021
## 3204 2017-12-18 2020-12-17 2017 2020
## 3205 2018-06-10 2021-06-06 2018 2021
## 3206 2018-09-09 2021-09-08 2018 2021
## 3207 2018-09-14 2021-09-13 2018 2021
## 3208 2018-05-19 2021-05-16 2018 2021
## 3209 2018-09-05 2021-09-04 2018 2021
## 3210 2018-09-21 2021-09-20 2018 2021
## 3211 2018-08-23 2021-08-23 2018 2021
## 3212 2018-06-30 2021-06-29 2018 2021
## 3213 2018-09-02 2021-09-01 2018 2021
## 3214 2018-09-18 2021-09-17 2018 2021
## 3215 2017-10-23 2020-10-22 2017 2020
## 3216 2018-08-30 2021-08-30 2018 2021
## 3217 2018-08-20 2021-08-19 2018 2021
## 3218 2018-08-28 2021-08-28 2018 2021
## 3219 2017-12-07 2020-12-07 2017 2020
## 3220 2018-07-31 2021-07-30 2018 2021
## 3221 2017-12-11 2020-12-10 2017 2020
## 3222 2018-09-16 2021-09-16 2018 2021
## 3223 2017-10-05 2020-10-04 2017 2020
## 3224 2018-09-02 2021-09-01 2018 2021
## 3225 2018-08-26 2021-08-25 2018 2021
## 3226 2018-08-31 2021-08-30 2018 2021
## 3227 2018-06-17 2021-06-16 2018 2021
## 3228 2018-03-22 2021-03-21 2018 2021
## 3229 2018-09-24 2021-09-22 2018 2021
## 3230 2018-10-30 2021-10-30 2018 2021
## 3231 2018-09-05 2021-09-05 2018 2021
## 3232 2017-12-12 2020-12-11 2017 2020
## 3233 2018-12-31 2019-12-30 2018 2019
## 3234 2018-09-21 2021-09-20 2018 2021
## 3235 2018-08-21 2021-08-20 2018 2021
## 3236 2018-05-01 2021-04-30 2018 2021
## 3237 2017-10-31 2020-10-30 2017 2020
## 3238 2018-09-18 2021-09-17 2018 2021
## 3239 2018-05-28 2019-05-05 2018 2019
## 3240 2017-10-09 2020-10-08 2017 2020
## 3241 2018-07-18 2021-07-18 2018 2021
## 3242 2018-02-19 2021-02-18 2018 2021
## 3243 2018-09-06 2021-09-05 2018 2021
## 3244 2018-09-28 2021-09-28 2018 2021
## 3245 2018-12-06 2021-12-05 2018 2021
## 3246 2018-09-03 2021-09-02 2018 2021
## 3247 2018-06-06 2021-06-05 2018 2021
## 3248 2018-02-25 2021-02-24 2018 2021
## 3249 2018-05-31 2021-05-30 2018 2021
## 3250 2018-03-26 2021-03-24 2018 2021
## 3251 2018-09-06 2021-09-05 2018 2021
## 3252 2018-08-23 2021-08-22 2018 2021
## 3253 2018-07-19 2020-07-18 2018 2020
## 3254 2018-05-09 2020-03-04 2018 2020
## 3255 2018-04-14 2020-09-10 2018 2020
## 3256 2018-08-27 2021-08-27 2018 2021
## 3257 2018-09-04 2021-09-03 2018 2021
## 3258 2018-09-09 2021-09-08 2018 2021
## 3259 2018-07-29 2021-07-29 2018 2021
## 3260 2018-11-09 2021-11-09 2018 2021
## 3261 2018-09-29 2021-09-29 2018 2021
## 3262 2018-05-19 2021-05-18 2018 2021
## 3263 2018-06-03 2021-06-02 2018 2021
## 3264 2018-08-04 2021-08-03 2018 2021
## 3265 2019-02-27 2022-02-27 2019 2022
## 3266 2018-06-18 2021-06-17 2018 2021
## 3267 2018-03-17 2021-03-17 2018 2021
## 3268 2018-09-07 2021-09-07 2018 2021
## 3269 2018-08-22 2021-08-21 2018 2021
## 3270 2018-09-04 2021-09-03 2018 2021
## 3271 2018-09-17 2021-09-17 2018 2021
## 3272 2018-04-09 2021-04-08 2018 2021
## 3273 2018-09-25 2021-09-24 2018 2021
## 3274 2018-09-02 2021-08-30 2018 2021
## 3275 2018-08-28 2021-08-27 2018 2021
## 3276 2018-06-30 2020-06-29 2018 2020
## 3277 2018-07-22 2021-07-22 2018 2021
## 3278 2018-02-08 2020-10-16 2018 2020
## 3279 2018-07-29 2019-07-29 2018 2019
## 3280 2017-10-01 2020-09-30 2017 2020
## 3281 2018-08-31 2021-08-30 2018 2021
## 3282 2018-09-11 2021-09-11 2018 2021
## 3283 2018-03-02 2021-03-01 2018 2021
## 3284 2018-06-30 2021-06-29 2018 2021
## 3285 2018-07-24 2021-07-23 2018 2021
## 3286 2018-06-10 2021-06-10 2018 2021
## 3287 2018-08-21 2021-08-20 2018 2021
## 3288 2018-02-04 2021-02-03 2018 2021
## 3289 2018-08-23 2021-08-22 2018 2021
## 3290 2018-07-30 2021-07-30 2018 2021
## 3291 2018-08-18 2021-08-18 2018 2021
## 3292 2018-09-05 2021-09-04 2018 2021
## 3293 2018-08-28 2021-08-27 2018 2021
## 3294 2018-07-11 2021-07-08 2018 2021
## 3295 2018-08-06 2021-08-06 2018 2021
## 3296 2018-08-31 2021-08-31 2018 2021
## 3297 2019-02-06 2022-02-05 2019 2022
## 3298 2018-02-19 2021-02-18 2018 2021
## 3299 2018-09-08 2021-09-07 2018 2021
## 3300 2018-01-14 2021-01-13 2018 2021
## 3301 2018-09-13 2020-12-29 2018 2020
## 3302 2018-09-20 2021-09-19 2018 2021
## 3303 2018-10-28 2021-10-27 2018 2021
## 3304 2018-04-19 2021-04-18 2018 2021
## 3305 2018-06-17 2021-06-17 2018 2021
## 3306 2018-03-01 2021-02-28 2018 2021
## 3307 2018-02-07 2021-02-06 2018 2021
## 3308 2018-09-18 2021-09-17 2018 2021
## 3309 2018-05-15 2021-05-14 2018 2021
## 3310 2018-11-30 2021-11-29 2018 2021
## 3311 2018-08-31 2021-08-31 2018 2021
## 3312 2018-03-12 2021-03-11 2018 2021
## 3313 2018-04-05 2021-04-04 2018 2021
## 3314 2018-06-03 2021-06-02 2018 2021
## 3315 2018-06-24 2021-06-23 2018 2021
## 3316 2018-03-25 2021-03-22 2018 2021
## 3317 2018-05-31 2021-05-30 2018 2021
## 3318 2018-08-16 2021-08-16 2018 2021
## 3319 2018-08-27 2021-08-27 2018 2021
## 3320 2018-09-04 2021-09-03 2018 2021
## 3321 2018-08-25 2021-08-24 2018 2021
## 3322 2018-04-30 2021-04-29 2018 2021
## 3323 2018-08-31 2021-08-30 2018 2021
## 3324 2018-08-19 2021-08-18 2018 2021
## 3325 2018-09-06 2021-09-05 2018 2021
## 3326 2018-09-13 2021-09-12 2018 2021
## 3327 2018-09-07 2021-09-06 2018 2021
## 3328 2017-11-14 2018-01-24 2017 2018
## 3329 2018-06-24 2021-06-24 2018 2021
## 3330 2017-11-15 2020-11-14 2017 2020
## 3331 2018-07-08 2021-07-07 2018 2021
## 3332 2018-04-05 2021-04-04 2018 2021
## 3333 2018-02-07 2021-02-06 2018 2021
## 3334 2018-03-03 2021-03-03 2018 2021
## 3335 2018-08-31 2021-08-31 2018 2021
## 3336 2018-02-28 2021-02-28 2018 2021
## 3337 2018-09-07 2021-09-06 2018 2021
## 3338 2018-06-24 2021-06-24 2018 2021
## 3339 2018-09-14 2021-09-14 2018 2021
## 3340 2017-12-21 2020-12-20 2017 2020
## 3341 2017-11-26 2020-11-25 2017 2020
## 3342 2018-03-05 2021-03-04 2018 2021
## 3343 2018-06-14 2021-06-14 2018 2021
## 3344 2018-08-14 2021-08-13 2018 2021
## 3345 2018-08-30 2021-08-29 2018 2021
## 3346 2018-08-02 2021-08-02 2018 2021
## 3347 2018-08-10 2021-08-09 2018 2021
## 3348 2018-06-19 2021-06-18 2018 2021
## 3349 2018-07-30 2021-07-29 2018 2021
## 3350 2017-12-14 2020-12-13 2017 2020
## 3351 2018-10-21 2021-10-20 2018 2021
## 3352 2018-07-01 2020-08-31 2018 2020
## 3353 2018-08-30 2021-08-29 2018 2021
## 3354 2018-09-01 2021-08-31 2018 2021
## 3355 2018-08-31 2021-08-29 2018 2021
## 3356 2018-08-13 2021-08-13 2018 2021
## 3357 2018-08-29 2020-02-07 2018 2020
## 3358 2018-04-14 2021-04-13 2018 2021
## 3359 2018-03-25 2021-03-25 2018 2021
## 3360 2018-09-15 2021-09-14 2018 2021
## 3361 2018-06-30 2020-06-29 2018 2020
## 3362 2018-05-15 2021-05-14 2018 2021
## 3363 2018-09-26 2021-09-26 2018 2021
## 3364 2018-08-19 2021-08-18 2018 2021
## 3365 2018-12-03 2021-12-02 2018 2021
## 3366 2018-09-16 2021-09-16 2018 2021
## 3367 2018-12-31 2021-12-31 2018 2021
## 3368 2018-07-30 2021-07-29 2018 2021
## 3369 2018-05-20 2021-05-19 2018 2021
## 3370 2018-07-23 2021-07-22 2018 2021
## 3371 2018-07-31 2021-07-31 2018 2021
## 3372 2017-12-25 2020-12-24 2017 2020
## 3373 2017-12-10 2020-12-10 2017 2020
## 3374 2018-08-06 2021-08-05 2018 2021
## 3375 2018-09-20 2020-06-15 2018 2020
## 3376 2018-09-30 2021-09-30 2018 2021
## 3377 2018-11-30 2021-11-29 2018 2021
## 3378 2018-02-12 2021-02-11 2018 2021
## 3379 2018-07-01 2021-06-30 2018 2021
## 3380 2018-06-03 2021-06-02 2018 2021
## 3381 2018-08-31 2021-08-30 2018 2021
## 3382 2018-06-29 2021-06-28 2018 2021
## 3383 2019-02-25 2022-02-24 2019 2022
## 3384 2018-09-30 2021-09-29 2018 2021
## 3385 2018-08-21 2021-08-20 2018 2021
## 3386 2018-09-12 2021-09-11 2018 2021
## 3387 2018-01-09 2021-01-08 2018 2021
## 3388 2018-09-09 2021-09-09 2018 2021
## 3389 2017-10-15 2020-10-14 2017 2020
## 3390 2018-08-27 2021-08-27 2018 2021
## 3391 2018-03-11 2018-10-13 2018 2018
## 3392 2018-07-25 2021-07-24 2018 2021
## 3393 2018-07-24 2021-07-24 2018 2021
## 3394 2018-06-23 2021-04-20 2018 2021
## 3395 2018-03-31 2021-03-31 2018 2021
## 3396 2018-09-23 2021-09-23 2018 2021
## 3397 2018-07-19 2021-07-18 2018 2021
## 3398 2018-08-09 2021-08-08 2018 2021
## 3399 2018-08-31 2021-08-31 2018 2021
## 3400 2018-09-16 2021-09-15 2018 2021
## 3401 2018-09-20 2021-09-20 2018 2021
## 3402 2018-08-07 2021-08-06 2018 2021
## 3403 2017-10-22 2020-10-21 2017 2020
## 3404 2018-09-30 2021-09-29 2018 2021
## 3405 2018-07-31 2021-07-30 2018 2021
## 3406 2018-05-01 2021-04-30 2018 2021
## 3407 2018-06-28 2021-06-27 2018 2021
## 3408 2018-03-08 2021-03-05 2018 2021
## 3409 2018-08-09 2021-08-06 2018 2021
## 3410 2018-08-28 2021-08-27 2018 2021
## 3411 2018-08-07 2021-08-06 2018 2021
## 3412 2018-06-05 2021-06-04 2018 2021
## 3413 2018-05-15 2021-05-14 2018 2021
## 3414 2018-12-08 2020-12-07 2018 2020
## 3415 2018-04-12 2021-04-11 2018 2021
## 3416 2018-08-20 2021-08-19 2018 2021
## 3417 2018-03-31 2021-03-30 2018 2021
## 3418 2018-06-03 2021-06-02 2018 2021
## 3419 2018-05-01 2021-04-30 2018 2021
## 3420 2018-06-14 2021-06-14 2018 2021
## 3421 2018-10-22 2021-10-21 2018 2021
## 3422 2018-09-10 2021-09-10 2018 2021
## 3423 2018-08-23 2021-08-20 2018 2021
## 3424 2018-09-15 2021-09-14 2018 2021
## 3425 2018-05-08 2019-12-30 2018 2019
## 3426 2018-08-26 2021-08-26 2018 2021
## 3427 2018-08-12 2021-08-11 2018 2021
## 3428 2018-06-14 2021-06-14 2018 2021
## 3429 2018-08-31 2021-08-29 2018 2021
## 3430 2018-03-15 2021-03-15 2018 2021
## 3431 2018-02-26 2021-02-25 2018 2021
## 3432 2018-08-14 2021-08-13 2018 2021
## 3433 2018-04-08 2021-04-07 2018 2021
## 3434 2017-12-03 2020-12-03 2017 2020
## 3435 2018-08-12 2021-08-11 2018 2021
## 3436 2018-09-30 2021-09-27 2018 2021
## 3437 2018-09-07 2021-09-07 2018 2021
## 3438 2018-08-26 2021-08-25 2018 2021
## 3439 2018-02-26 2021-02-25 2018 2021
## 3440 2018-09-10 2021-09-09 2018 2021
## 3441 2018-06-24 2021-06-23 2018 2021
## 3442 2018-09-06 2021-09-05 2018 2021
## 3443 2018-08-31 2021-08-30 2018 2021
## 3444 2018-09-07 2021-09-06 2018 2021
## 3445 2018-09-05 2021-09-04 2018 2021
## 3446 2018-09-04 2021-09-03 2018 2021
## 3447 2018-06-27 2021-06-27 2018 2021
## 3448 2018-09-06 2021-09-05 2018 2021
## 3449 2018-06-30 2021-06-29 2018 2021
## 3450 2018-09-04 2021-09-03 2018 2021
## 3451 2018-08-31 2021-08-30 2018 2021
## 3452 2017-10-22 2020-10-21 2017 2020
## 3453 2018-08-31 2021-08-30 2018 2021
## 3454 2018-09-23 2021-09-22 2018 2021
## 3455 2018-08-19 2021-08-18 2018 2021
## 3456 2018-09-13 2021-09-13 2018 2021
## 3457 2018-09-03 2021-09-03 2018 2021
## 3458 2018-06-14 2021-06-14 2018 2021
## 3459 2018-09-04 2021-09-04 2018 2021
## 3460 2018-08-22 2021-08-21 2018 2021
## 3461 2018-04-30 2021-04-30 2018 2021
## 3462 2018-04-25 2021-04-24 2018 2021
## 3463 2018-07-02 2021-07-01 2018 2021
## 3464 2018-09-10 2021-09-09 2018 2021
## 3465 2017-12-31 2019-12-30 2017 2019
## 3466 2018-08-26 2021-08-25 2018 2021
## 3467 2018-10-01 2021-09-30 2018 2021
## 3468 2018-08-03 2021-08-02 2018 2021
## 3469 2017-10-30 2020-10-27 2017 2020
## 3470 2018-07-31 2021-07-31 2018 2021
## 3471 2018-04-26 2021-04-25 2018 2021
## 3472 2017-11-12 2020-11-11 2017 2020
## 3473 2018-08-19 2021-08-18 2018 2021
## 3474 2018-06-22 2021-06-21 2018 2021
## 3475 2018-08-02 2021-08-01 2018 2021
## 3476 2018-09-07 2021-09-06 2018 2021
## 3477 2018-09-12 2021-09-11 2018 2021
## 3478 2018-08-22 2021-08-21 2018 2021
## 3479 2017-12-14 2020-12-13 2017 2020
## 3480 2018-09-06 2021-09-06 2018 2021
## 3481 2018-03-08 2021-03-07 2018 2021
## 3482 2018-05-02 2021-05-01 2018 2021
## 3483 2018-08-31 2021-08-30 2018 2021
## 3484 2017-10-10 2020-10-09 2017 2020
## 3485 2017-10-10 2020-10-09 2017 2020
## 3486 2018-09-01 2021-08-31 2018 2021
## 3487 2017-11-29 2020-11-29 2017 2020
## 3488 2018-09-01 2021-09-01 2018 2021
## 3489 2018-08-31 2021-08-30 2018 2021
## 3490 2017-12-17 2020-12-16 2017 2020
## 3491 2017-10-29 2020-10-28 2017 2020
## 3492 2017-11-05 2020-11-05 2017 2020
## 3493 2018-08-31 2021-08-30 2018 2021
## 3494 2019-01-27 2022-01-26 2019 2022
## 3495 2017-11-02 2020-11-02 2017 2020
## 3496 2018-08-31 2021-08-30 2018 2021
## 3497 2019-01-04 2022-01-04 2019 2022
## 3498 2019-02-01 2022-01-31 2019 2022
## 3499 2018-11-23 2021-11-22 2018 2021
## 3500 2018-07-26 2021-07-25 2018 2021
## 3501 2018-09-12 2021-09-11 2018 2021
## 3502 2018-08-29 2021-08-28 2018 2021
## 3503 2018-08-24 2021-08-24 2018 2021
## 3504 2018-04-24 2021-04-23 2018 2021
## 3505 2018-06-30 2021-06-29 2018 2021
## 3506 2017-12-04 2020-12-03 2017 2020
## 3507 2018-09-16 2021-09-15 2018 2021
## 3508 2017-12-19 2020-12-18 2017 2020
## 3509 2018-05-01 2021-05-01 2018 2021
## 3510 2018-01-16 2021-01-15 2018 2021
## 3511 2019-01-06 2021-01-06 2019 2021
## 3512 2018-08-31 2021-08-30 2018 2021
## 3513 2018-09-18 2021-09-17 2018 2021
## 3514 2018-03-31 2021-03-30 2018 2021
## 3515 2018-03-01 2021-02-28 2018 2021
## 3516 2018-09-06 2021-09-05 2018 2021
## 3517 2018-08-29 2021-08-28 2018 2021
## 3518 2018-09-19 2021-09-18 2018 2021
## 3519 2018-09-11 2021-09-10 2018 2021
## 3520 2018-08-31 2021-08-30 2018 2021
## 3521 2018-04-12 2021-04-11 2018 2021
## 3522 2018-08-19 2021-08-18 2018 2021
## 3523 2018-08-19 2021-08-18 2018 2021
## 3524 2018-07-27 2019-07-26 2018 2019
## 3525 2019-01-28 2022-01-28 2019 2022
## 3526 2017-10-09 2020-10-08 2017 2020
## 3527 2018-06-30 2021-06-29 2018 2021
## 3528 2018-02-14 2021-02-13 2018 2021
## 3529 2018-08-30 2021-08-29 2018 2021
## 3530 2017-10-22 2020-10-21 2017 2020
## 3531 2018-08-27 2021-08-27 2018 2021
## 3532 2017-10-24 2020-10-23 2017 2020
## 3533 2018-08-21 2021-08-20 2018 2021
## 3534 2018-09-20 2021-09-20 2018 2021
## 3535 2018-02-28 2021-02-28 2018 2021
## 3536 2018-08-19 2021-08-18 2018 2021
## 3537 2018-09-05 2021-09-04 2018 2021
## 3538 2018-08-30 2021-08-29 2018 2021
## 3539 2018-06-17 2021-06-17 2018 2021
## 3540 2018-09-10 2021-09-10 2018 2021
## 3541 2018-08-02 2021-08-02 2018 2021
## 3542 2018-08-29 2021-08-28 2018 2021
## 3543 2017-12-13 2020-12-12 2017 2020
## 3544 2018-07-05 2021-07-04 2018 2021
## 3545 2018-02-19 2021-02-19 2018 2021
## 3546 2018-06-17 2021-06-16 2018 2021
## 3547 2018-01-09 2021-01-08 2018 2021
## 3548 2018-03-06 2021-03-05 2018 2021
## 3549 2017-12-27 2020-12-27 2017 2020
## 3550 2018-10-11 2021-10-11 2018 2021
## 3551 2018-04-04 2021-04-03 2018 2021
## 3552 2018-06-08 2021-06-07 2018 2021
## 3553 2017-11-19 2019-07-30 2017 2019
## 3554 2018-10-31 2021-10-30 2018 2021
## 3555 2018-09-07 2021-09-06 2018 2021
## 3556 2018-08-31 2021-08-31 2018 2021
## 3557 2018-08-03 2021-08-02 2018 2021
## 3558 2018-08-21 2021-08-21 2018 2021
## 3559 2018-05-10 2021-01-27 2018 2021
## 3560 2018-08-21 2021-08-20 2018 2021
## 3561 2018-09-20 2021-09-19 2018 2021
## 3562 2018-07-31 2021-07-30 2018 2021
## 3563 2018-08-31 2021-08-31 2018 2021
## 3564 2018-09-05 2021-09-05 2018 2021
## 3565 2018-09-09 2021-09-08 2018 2021
## 3566 2017-12-10 2020-12-09 2017 2020
## 3567 2018-09-18 2021-09-17 2018 2021
## 3568 2018-01-30 2021-01-29 2018 2021
## 3569 2017-09-26 2020-09-25 2017 2020
## 3570 2018-08-30 2021-08-29 2018 2021
## 3571 2018-06-11 2021-06-10 2018 2021
## 3572 2018-03-18 2021-03-17 2018 2021
## 3573 2017-10-29 2020-10-25 2017 2020
## 3574 2018-09-10 2021-09-09 2018 2021
## 3575 2018-02-04 2021-02-03 2018 2021
## 3576 2018-09-16 2021-09-16 2018 2021
## 3577 2017-09-28 2020-09-27 2017 2020
## 3578 2018-06-27 2021-06-26 2018 2021
## 3579 2018-01-31 2021-01-30 2018 2021
## 3580 2017-12-10 2020-12-09 2017 2020
## 3581 2018-07-17 2021-07-14 2018 2021
## 3582 2018-09-07 2021-09-07 2018 2021
## 3583 2018-08-20 2021-08-19 2018 2021
## 3584 2018-05-21 2021-05-21 2018 2021
## 3585 2018-08-09 2021-08-09 2018 2021
## 3586 2018-07-10 2021-07-09 2018 2021
## 3587 2019-03-15 2022-03-14 2019 2022
## 3588 2018-09-14 2021-09-13 2018 2021
## 3589 2018-08-20 2021-08-19 2018 2021
## 3590 2018-08-20 2021-08-19 2018 2021
## 3591 2018-08-27 2021-08-26 2018 2021
## 3592 2018-06-07 2021-06-06 2018 2021
## 3593 2018-05-01 2021-04-30 2018 2021
## 3594 2018-09-19 2021-09-19 2018 2021
## 3595 2017-11-02 2020-11-01 2017 2020
## 3596 2018-08-08 2021-08-07 2018 2021
## 3597 2018-09-06 2021-09-05 2018 2021
## 3598 2018-04-16 2021-04-13 2018 2021
## 3599 2018-08-31 2021-08-30 2018 2021
## 3600 2018-04-15 2021-04-15 2018 2021
## 3601 2017-10-31 2020-10-31 2017 2020
## 3602 2018-09-03 2021-09-02 2018 2021
## 3603 2018-09-26 2021-09-25 2018 2021
## 3604 2017-11-12 2020-11-11 2017 2020
## 3605 2017-10-17 2020-10-17 2017 2020
## 3606 2018-09-02 2021-09-01 2018 2021
## 3607 2018-08-20 2021-08-12 2018 2021
## 3608 2018-09-07 2021-09-07 2018 2021
## 3609 2017-12-06 2020-12-05 2017 2020
## 3610 2018-09-20 2021-09-19 2018 2021
## 3611 2018-09-11 2021-09-10 2018 2021
## 3612 2018-07-01 2021-06-30 2018 2021
## 3613 2018-09-30 2021-09-29 2018 2021
## 3614 2018-09-17 2021-09-16 2018 2021
## 3615 2018-07-31 2021-07-30 2018 2021
## 3616 2018-07-31 2021-07-31 2018 2021
## 3617 2018-09-17 2021-09-17 2018 2021
## 3618 2018-06-14 2021-06-14 2018 2021
## 3619 2018-08-16 2021-08-15 2018 2021
## 3620 2019-01-17 2022-01-16 2019 2022
## 3621 2018-04-08 2021-04-07 2018 2021
## 3622 2018-09-09 2021-09-08 2018 2021
## 3623 2018-08-29 2021-08-28 2018 2021
## 3624 2018-09-11 2021-09-10 2018 2021
## 3625 2018-01-31 2021-01-30 2018 2021
## 3626 2018-09-02 2020-12-30 2018 2020
## 3627 2018-08-31 2021-08-30 2018 2021
## 3628 2018-08-31 2021-08-30 2018 2021
## 3629 2018-09-07 2021-09-07 2018 2021
## 3630 2018-09-06 2021-09-06 2018 2021
## 3631 2018-09-14 2021-09-14 2018 2021
## 3632 2018-07-31 2021-07-28 2018 2021
## 3633 2018-07-24 2019-10-22 2018 2019
## 3634 2018-02-18 2021-02-17 2018 2021
## 3635 2018-08-05 2021-08-04 2018 2021
## 3636 2019-01-24 2022-01-24 2019 2022
## 3637 2018-05-07 2021-05-06 2018 2021
## 3638 2018-08-15 2021-08-14 2018 2021
## 3639 2018-09-10 2021-09-10 2018 2021
## 3640 2018-07-31 2021-07-30 2018 2021
## 3641 2018-09-30 2021-09-29 2018 2021
## 3642 2018-02-25 2019-09-03 2018 2019
## 3643 2018-11-30 2021-11-30 2018 2021
## 3644 2018-06-14 2021-06-14 2018 2021
## 3645 2017-12-31 2020-12-30 2017 2020
## 3646 2018-07-31 2021-07-31 2018 2021
## 3647 2018-08-11 2021-08-10 2018 2021
## 3648 2018-09-16 2021-09-15 2018 2021
## 3649 2018-08-04 2021-08-03 2018 2021
## 3650 2018-06-03 2021-06-02 2018 2021
## 3651 2018-09-17 2021-09-16 2018 2021
## 3652 2018-09-27 2021-09-24 2018 2021
## 3653 2018-03-08 2021-03-08 2018 2021
## 3654 2018-09-12 2021-09-12 2018 2021
## 3655 2018-07-27 2021-07-26 2018 2021
## 3656 2018-08-31 2021-08-30 2018 2021
## 3657 2017-09-26 2020-09-25 2017 2020
## 3658 2019-02-07 2022-02-06 2019 2022
## 3659 2018-09-08 2021-09-07 2018 2021
## 3660 2019-01-31 2022-01-30 2019 2022
## 3661 2018-09-10 2021-09-09 2018 2021
## 3662 2018-09-01 2021-08-31 2018 2021
## 3663 2018-08-22 2021-08-22 2018 2021
## 3664 2018-08-03 2021-08-03 2018 2021
## 3665 2018-08-30 2021-08-29 2018 2021
## 3666 2017-10-02 2020-10-02 2017 2020
## 3667 2018-06-03 2021-06-02 2018 2021
## 3668 2018-07-08 2021-07-07 2018 2021
## 3669 2018-04-08 2021-04-07 2018 2021
## 3670 2017-11-02 2020-11-02 2017 2020
## 3671 2017-10-14 2020-10-14 2017 2020
## 3672 2018-11-06 2021-11-06 2018 2021
## 3673 2018-06-10 2021-06-09 2018 2021
## 3674 2018-08-25 2021-08-24 2018 2021
## 3675 2018-10-28 2021-10-28 2018 2021
## 3676 2018-09-13 2021-09-12 2018 2021
## 3677 2017-12-31 2020-12-30 2017 2020
## 3678 2018-08-31 2021-08-30 2018 2021
## 3679 2018-04-29 2021-04-28 2018 2021
## 3680 2018-11-30 2021-11-29 2018 2021
## 3681 2018-09-05 2021-09-04 2018 2021
## 3682 2018-07-18 2021-07-18 2018 2021
## 3683 2018-07-29 2021-07-28 2018 2021
## 3684 2018-08-19 2021-08-18 2018 2021
## 3685 2018-07-31 2021-07-30 2018 2021
## 3686 2018-06-28 2021-06-27 2018 2021
## 3687 2018-08-20 2021-08-19 2018 2021
## 3688 2017-12-24 2018-09-29 2017 2018
## 3689 2018-09-13 2021-09-12 2018 2021
## 3690 2018-09-11 2021-09-10 2018 2021
## 3691 2018-08-31 2021-03-30 2018 2021
## 3692 2018-09-24 2021-09-23 2018 2021
## 3693 2018-09-06 2021-09-05 2018 2021
## 3694 2018-09-16 2021-09-15 2018 2021
## 3695 2018-04-01 2020-08-30 2018 2020
## 3696 2018-08-31 2021-08-30 2018 2021
## 3697 2018-08-12 2021-08-12 2018 2021
## 3698 2018-09-16 2021-09-15 2018 2021
## 3699 2019-02-08 2022-02-07 2019 2022
## 3700 2018-07-15 2021-07-14 2018 2021
## 3701 2018-12-12 2021-12-11 2018 2021
## 3702 2018-09-30 2021-09-29 2018 2021
## 3703 2018-08-26 2021-08-25 2018 2021
## 3704 2018-07-30 2021-07-29 2018 2021
## 3705 2018-04-11 2021-04-10 2018 2021
## 3706 2018-05-20 2021-05-20 2018 2021
## 3707 2018-07-15 2021-07-12 2018 2021
## 3708 2018-08-27 2021-08-27 2018 2021
## 3709 2018-09-30 2021-09-29 2018 2021
## 3710 2018-06-30 2021-06-29 2018 2021
## 3711 2018-09-06 2021-09-05 2018 2021
## 3712 2018-04-16 2019-08-30 2018 2019
## 3713 2017-11-30 2020-11-29 2017 2020
## 3714 2017-12-09 2020-12-09 2017 2020
## 3715 2018-07-01 2020-08-31 2018 2020
## 3716 2018-12-30 2021-12-30 2018 2021
## 3717 2018-09-14 2021-09-13 2018 2021
## 3718 2018-09-05 2021-09-04 2018 2021
## 3719 2019-01-24 2022-01-23 2019 2022
## 3720 2018-08-26 2021-08-25 2018 2021
## 3721 2018-09-03 2021-09-02 2018 2021
## 3722 2018-11-05 2021-11-04 2018 2021
## 3723 2018-03-29 2021-03-28 2018 2021
## 3724 2018-09-08 2021-09-07 2018 2021
## 3725 2018-04-04 2021-04-03 2018 2021
## 3726 2018-07-05 2021-07-04 2018 2021
## 3727 2018-09-17 2021-09-16 2018 2021
## 3728 2018-07-31 2021-07-31 2018 2021
## 3729 2018-08-19 2021-08-19 2018 2021
## 3730 2017-12-31 2020-12-30 2017 2020
## 3731 2018-02-04 2021-02-04 2018 2021
## 3732 2018-08-25 2021-08-24 2018 2021
## 3733 2018-03-25 2021-03-24 2018 2021
## 3734 2018-09-10 2021-09-09 2018 2021
## 3735 2018-06-26 2021-06-26 2018 2021
## 3736 2018-09-03 2021-09-03 2018 2021
## 3737 2018-07-05 2021-07-04 2018 2021
## 3738 2018-09-10 2021-09-09 2018 2021
## 3739 2018-08-14 2021-08-14 2018 2021
## 3740 2018-02-25 2021-02-24 2018 2021
## 3741 2018-05-24 2021-05-23 2018 2021
## 3742 2018-09-04 2021-09-03 2018 2021
## 3743 2018-06-30 2021-06-29 2018 2021
## 3744 2018-09-13 2021-09-13 2018 2021
## 3745 2017-12-13 2020-12-12 2017 2020
## 3746 2018-09-03 2021-09-03 2018 2021
## 3747 2018-08-25 2021-08-24 2018 2021
## 3748 2018-09-14 2021-09-14 2018 2021
## 3749 2017-10-09 2020-10-09 2017 2020
## 3750 2018-09-30 2019-09-29 2018 2019
## 3751 2018-09-14 2019-09-13 2018 2019
## 3752 2017-11-16 2020-11-16 2017 2020
## 3753 2018-09-14 2021-09-13 2018 2021
## 3754 2018-04-28 2021-04-27 2018 2021
## 3755 2018-09-09 2021-09-08 2018 2021
## 3756 2018-08-29 2021-08-29 2018 2021
## 3757 2018-08-19 2021-08-19 2018 2021
## 3758 2018-02-21 2021-02-21 2018 2021
## 3759 2018-09-08 2021-09-08 2018 2021
## 3760 2018-07-30 2021-07-29 2018 2021
## 3761 2018-09-17 2021-09-16 2018 2021
## 3762 2018-08-20 2021-08-20 2018 2021
## 3763 2018-08-07 2021-08-06 2018 2021
## 3764 2017-10-25 2020-10-25 2017 2020
## 3765 2018-12-13 2021-12-12 2018 2021
## 3766 2018-06-30 2021-06-29 2018 2021
## 3767 2017-11-29 2020-11-28 2017 2020
## 3768 2018-06-30 2020-12-02 2018 2020
## 3769 2018-08-14 2021-08-14 2018 2021
## 3770 2018-09-19 2021-09-18 2018 2021
## 3771 2018-01-09 2021-01-08 2018 2021
## 3772 2018-08-31 2021-08-30 2018 2021
## 3773 2018-01-30 2021-01-30 2018 2021
## 3774 2018-12-27 2021-12-26 2018 2021
## 3775 2019-02-19 2022-02-18 2019 2022
## 3776 2018-08-21 2021-08-20 2018 2021
## 3777 2017-12-27 2020-12-27 2017 2020
## 3778 2018-01-31 2021-01-31 2018 2021
## 3779 2018-07-07 2021-07-04 2018 2021
## 3780 2018-02-27 2021-02-26 2018 2021
## 3781 2018-01-30 2021-01-29 2018 2021
## 3782 2018-09-03 2021-09-03 2018 2021
## 3783 2018-09-07 2021-09-07 2018 2021
## 3784 2018-02-28 2019-06-04 2018 2019
## 3785 2017-11-15 2020-11-15 2017 2020
## 3786 2018-06-24 2021-06-24 2018 2021
## 3787 2018-08-02 2021-08-01 2018 2021
## 3788 2018-01-14 2021-01-13 2018 2021
## 3789 2017-12-26 2020-12-26 2017 2020
## 3790 2018-09-26 2021-09-26 2018 2021
## 3791 2018-11-07 2021-11-06 2018 2021
## 3792 2018-09-24 2021-09-24 2018 2021
## 3793 2018-09-06 2021-09-05 2018 2021
## 3794 2018-04-02 2021-03-30 2018 2021
## 3795 2018-01-07 2019-11-14 2018 2019
## 3796 2018-03-11 2020-06-29 2018 2020
## 3797 2018-09-15 2021-09-14 2018 2021
## 3798 2017-10-15 2020-10-14 2017 2020
## 3799 2018-10-22 2021-10-22 2018 2021
## 3800 2018-08-22 2021-08-21 2018 2021
## 3801 2018-08-12 2021-08-11 2018 2021
## 3802 2018-02-18 2021-02-17 2018 2021
## 3803 2018-01-14 2021-01-13 2018 2021
## 3804 2017-12-03 2020-10-30 2017 2020
## 3805 2019-03-09 2022-03-08 2019 2022
## 3806 2018-09-09 2021-09-08 2018 2021
## 3807 2018-10-27 2021-10-26 2018 2021
## 3808 2017-12-31 2020-12-30 2017 2020
## 3809 2018-06-13 2021-06-12 2018 2021
## 3810 2018-08-28 2021-08-27 2018 2021
## 3811 2018-09-15 2021-09-14 2018 2021
## 3812 2018-09-24 2021-09-24 2018 2021
## 3813 2017-11-15 2020-11-14 2017 2020
## 3814 2018-08-31 2021-08-30 2018 2021
## 3815 2018-11-08 2021-11-07 2018 2021
## 3816 2018-06-30 2021-06-30 2018 2021
## 3817 2018-04-23 2021-04-22 2018 2021
## 3818 2018-09-13 2021-09-12 2018 2021
## 3819 2018-09-13 2021-09-12 2018 2021
## 3820 2018-09-04 2021-09-03 2018 2021
## 3821 2018-09-14 2021-09-13 2018 2021
## 3822 2018-07-15 2021-07-15 2018 2021
## 3823 2018-09-19 2021-09-18 2018 2021
## 3824 2017-12-31 2020-12-30 2017 2020
## 3825 2018-07-19 2021-07-18 2018 2021
## 3826 2018-07-01 2021-06-30 2018 2021
## 3827 2018-05-13 2021-05-13 2018 2021
## 3828 2018-05-16 2021-05-15 2018 2021
## 3829 2018-08-05 2021-08-05 2018 2021
## 3830 2018-08-31 2021-08-30 2018 2021
## 3831 2018-04-30 2021-04-29 2018 2021
## 3832 2018-06-14 2021-06-14 2018 2021
## 3833 2018-09-06 2021-09-05 2018 2021
## 3834 2018-06-15 2021-06-14 2018 2021
## 3835 2017-10-14 2020-10-14 2017 2020
## 3836 2018-05-15 2021-05-15 2018 2021
## 3837 2018-06-03 2021-06-02 2018 2021
## 3838 2018-10-31 2021-10-30 2018 2021
## 3839 2018-09-30 2021-09-29 2018 2021
## 3840 2018-07-31 2021-07-30 2018 2021
## 3841 2018-08-28 2021-08-27 2018 2021
## 3842 2018-08-18 2021-08-17 2018 2021
## 3843 2018-09-14 2021-09-13 2018 2021
## 3844 2018-10-18 2021-10-17 2018 2021
## 3845 2018-05-21 2021-05-20 2018 2021
## 3846 2018-06-24 2021-06-24 2018 2021
## 3847 2017-10-05 2020-10-05 2017 2020
## 3848 2018-09-14 2020-03-31 2018 2020
## 3849 2018-03-18 2021-03-17 2018 2021
## 3850 2018-08-31 2021-08-30 2018 2021
## 3851 2018-11-05 2021-11-04 2018 2021
## 3852 2018-08-14 2021-08-14 2018 2021
## 3853 2018-08-28 2021-08-27 2018 2021
## 3854 2018-09-07 2021-09-06 2018 2021
## 3855 2018-03-04 2021-03-04 2018 2021
## 3856 2018-01-28 2021-01-28 2018 2021
## 3857 2018-07-30 2021-07-29 2018 2021
## 3858 2018-06-24 2021-05-30 2018 2021
## 3859 2017-12-21 2020-12-20 2017 2020
## 3860 2018-07-26 2021-07-25 2018 2021
## 3861 2018-08-29 2021-08-28 2018 2021
## 3862 2017-10-18 2020-10-17 2017 2020
## 3863 2018-09-09 2021-09-08 2018 2021
## 3864 2018-10-28 2021-10-27 2018 2021
## 3865 2018-04-04 2021-04-03 2018 2021
## 3866 2018-07-15 2021-07-14 2018 2021
## 3867 2018-03-22 2021-03-21 2018 2021
## 3868 2017-12-17 2020-12-16 2017 2020
## 3869 2017-11-20 2020-11-19 2017 2020
## 3870 2018-06-24 2021-06-23 2018 2021
## 3871 2018-08-27 2021-08-27 2018 2021
## 3872 2018-06-14 2021-06-14 2018 2021
## 3873 2018-07-31 2021-07-30 2018 2021
## 3874 2018-03-11 2021-03-11 2018 2021
## 3875 2018-08-31 2021-08-30 2018 2021
## 3876 2018-07-04 2021-07-03 2018 2021
## 3877 2018-08-02 2021-08-02 2018 2021
## 3878 2018-12-13 2021-12-12 2018 2021
## 3879 2018-08-14 2021-08-14 2018 2021
## 3880 2018-02-18 2021-02-17 2018 2021
## 3881 2018-08-19 2021-08-18 2018 2021
## 3882 2018-09-20 2021-01-25 2018 2021
## 3883 2018-03-28 2021-03-28 2018 2021
## 3884 2018-09-14 2021-09-13 2018 2021
## 3885 2018-01-11 2021-01-10 2018 2021
## 3886 2018-05-18 2021-05-15 2018 2021
## 3887 2018-07-31 2021-07-30 2018 2021
## 3888 2018-05-13 2021-05-12 2018 2021
## 3889 2018-01-01 2020-12-31 2018 2020
## 3890 2018-09-14 2021-09-13 2018 2021
## 3891 2018-09-10 2021-09-09 2018 2021
## 3892 2018-08-26 2021-08-26 2018 2021
## 3893 2018-11-03 2021-11-02 2018 2021
## 3894 2018-07-31 2021-07-30 2018 2021
## 3895 2018-07-31 2021-07-31 2018 2021
## 3896 2018-09-12 2021-09-12 2018 2021
## 3897 2018-09-19 2021-09-18 2018 2021
## 3898 2018-07-31 2021-07-30 2018 2021
## 3899 2018-03-18 2021-03-18 2018 2021
## 3900 2018-07-02 2021-07-02 2018 2021
## 3901 2018-09-17 2021-09-17 2018 2021
## 3902 2018-06-12 2021-06-12 2018 2021
## 3903 2017-12-17 2020-12-16 2017 2020
## 3904 2018-09-24 2021-09-24 2018 2021
## 3905 2018-09-06 2021-09-06 2018 2021
## 3906 2017-12-31 2020-12-30 2017 2020
## 3907 2018-08-22 2021-08-22 2018 2021
## 3908 2017-12-06 2020-12-05 2017 2020
## 3909 2018-08-26 2021-08-25 2018 2021
## 3910 2017-10-14 2019-11-26 2017 2019
## 3911 2017-11-26 2018-06-29 2017 2018
## 3912 2018-09-19 2021-09-18 2018 2021
## 3913 2018-09-09 2021-09-08 2018 2021
## 3914 2018-02-08 2021-02-07 2018 2021
## 3915 2018-09-03 2021-09-02 2018 2021
## 3916 2017-11-21 2020-11-20 2017 2020
## 3917 2018-11-12 2021-11-12 2018 2021
## 3918 2018-07-25 2021-07-24 2018 2021
## 3919 2018-08-25 2021-08-24 2018 2021
## 3920 2018-03-31 2020-11-30 2018 2020
## 3921 2018-06-21 2021-06-20 2018 2021
## 3922 2017-12-17 2020-12-16 2017 2020
## 3923 2018-05-27 2021-05-26 2018 2021
## 3924 2018-03-18 2021-03-17 2018 2021
## 3925 2018-09-21 2021-09-21 2018 2021
## 3926 2018-03-24 2021-03-23 2018 2021
## 3927 2018-07-31 2021-07-30 2018 2021
## 3928 2018-08-31 2021-08-30 2018 2021
## 3929 2018-08-04 2021-08-03 2018 2021
## 3930 2018-07-16 2021-07-15 2018 2021
## 3931 2018-08-31 2021-08-30 2018 2021
## 3932 2018-08-10 2021-08-09 2018 2021
## 3933 2018-10-04 2021-10-03 2018 2021
## 3934 2018-08-05 2021-06-29 2018 2021
## 3935 2018-08-09 2021-08-09 2018 2021
## 3936 2018-06-30 2021-06-29 2018 2021
## 3937 2018-02-28 2021-02-28 2018 2021
## 3938 2018-08-26 2021-08-25 2018 2021
## 3939 2018-08-24 2021-08-23 2018 2021
## 3940 2018-07-12 2021-07-12 2018 2021
## 3941 2017-10-03 2020-10-02 2017 2020
## 3942 2018-06-20 2021-06-20 2018 2021
## 3943 2018-02-18 2021-02-18 2018 2021
## 3944 2018-03-04 2021-03-03 2018 2021
## 3945 2018-09-15 2021-09-14 2018 2021
## 3946 2018-08-31 2021-03-30 2018 2021
## 3947 2017-11-23 2020-11-22 2017 2020
## 3948 2018-05-13 2021-05-12 2018 2021
## 3949 2018-01-21 2021-01-20 2018 2021
## 3950 2018-04-29 2021-04-28 2018 2021
## 3951 2018-02-26 2021-02-25 2018 2021
## 3952 2018-06-30 2021-06-29 2018 2021
## 3953 2018-05-10 2021-05-09 2018 2021
## 3954 2018-09-13 2021-09-13 2018 2021
## 3955 2018-09-19 2021-09-19 2018 2021
## 3956 2018-05-10 2021-05-09 2018 2021
## 3957 2018-04-08 2021-04-07 2018 2021
## 3958 2018-03-20 2021-03-19 2018 2021
## 3959 2018-08-04 2021-08-03 2018 2021
## 3960 2017-11-14 2020-11-12 2017 2020
## 3961 2018-07-31 2021-07-31 2018 2021
## 3962 2018-04-30 2021-04-29 2018 2021
## 3963 2017-10-14 2020-10-11 2017 2020
## 3964 2018-01-26 2021-01-25 2018 2021
## 3965 2018-12-21 2021-12-18 2018 2021
## 3966 2018-01-25 2020-01-24 2018 2020
## 3967 2018-08-20 2021-08-20 2018 2021
## 3968 2018-09-30 2021-09-29 2018 2021
## 3969 2018-09-04 2021-09-04 2018 2021
## 3970 2018-09-26 2021-09-25 2018 2021
## 3971 2018-09-01 2021-08-31 2018 2021
## 3972 2018-06-14 2021-06-14 2018 2021
## 3973 2018-08-31 2021-08-29 2018 2021
## 3974 2017-11-12 2020-11-12 2017 2020
## 3975 2018-08-31 2021-08-30 2018 2021
## 3976 2018-08-12 2021-08-12 2018 2021
## 3977 2018-08-06 2021-08-06 2018 2021
## 3978 2018-02-27 2019-04-01 2018 2019
## 3979 2018-05-09 2021-05-09 2018 2021
## 3980 2018-09-11 2021-09-10 2018 2021
## 3981 2018-08-27 2021-08-26 2018 2021
## 3982 2018-09-14 2021-09-13 2018 2021
## 3983 2018-03-29 2021-03-28 2018 2021
## 3984 2018-03-15 2021-03-14 2018 2021
## 3985 2018-09-26 2021-09-25 2018 2021
## 3986 2018-01-02 2021-01-02 2018 2021
## 3987 2018-02-28 2021-02-27 2018 2021
## 3988 2018-06-04 2021-06-03 2018 2021
## 3989 2017-10-29 2020-10-28 2017 2020
## 3990 2018-03-25 2021-03-24 2018 2021
## 3991 2018-08-24 2021-08-23 2018 2021
## 3992 2018-09-10 2021-09-09 2018 2021
## 3993 2018-03-25 2021-03-24 2018 2021
## 3994 2018-01-14 2021-01-13 2018 2021
## 3995 2018-03-24 2021-03-24 2018 2021
## 3996 2018-08-26 2021-08-25 2018 2021
## 3997 2018-08-22 2021-08-21 2018 2021
## 3998 2017-12-17 2020-12-17 2017 2020
## 3999 2018-07-16 2021-07-16 2018 2021
## 4000 2018-06-30 2021-06-29 2018 2021
## 4001 2018-06-04 2021-06-03 2018 2021
## 4002 2018-06-20 2021-06-19 2018 2021
## 4003 2018-09-07 2021-09-06 2018 2021
## 4004 2017-10-18 2019-10-17 2017 2019
## 4005 2018-06-14 2021-06-14 2018 2021
## 4006 2018-09-27 2021-09-27 2018 2021
## 4007 2018-06-14 2021-06-14 2018 2021
## 4008 2018-08-02 2021-08-01 2018 2021
## 4009 2018-09-20 2021-09-19 2018 2021
## 4010 2018-08-30 2021-08-29 2018 2021
## 4011 2017-10-29 2020-10-26 2017 2020
## 4012 2018-07-26 2021-07-25 2018 2021
## 4013 2018-08-31 2021-08-30 2018 2021
## 4014 2018-07-01 2021-06-30 2018 2021
## 4015 2017-10-23 2020-10-22 2017 2020
## 4016 2018-09-19 2021-09-18 2018 2021
## 4017 2018-06-26 2021-06-25 2018 2021
## 4018 2018-03-18 2021-03-17 2018 2021
## 4019 2018-04-16 2021-04-15 2018 2021
## 4020 2018-08-10 2021-08-09 2018 2021
## 4021 2017-12-02 2020-12-01 2017 2020
## 4022 2018-10-07 2021-10-06 2018 2021
## 4023 2017-12-01 2020-11-30 2017 2020
## 4024 2018-01-31 2021-01-30 2018 2021
## 4025 2017-11-30 2020-11-29 2017 2020
## 4026 2017-12-14 2020-12-13 2017 2020
## 4027 2018-09-19 2021-09-19 2018 2021
## 4028 2018-11-09 2021-11-08 2018 2021
## 4029 2018-06-14 2021-06-14 2018 2021
## 4030 2018-03-21 2021-03-20 2018 2021
## 4031 2018-04-01 2021-03-29 2018 2021
## 4032 2018-08-12 2021-08-11 2018 2021
## 4033 2018-08-14 2021-08-13 2018 2021
## 4034 2018-03-14 2021-03-13 2018 2021
## 4035 2018-07-08 2021-07-07 2018 2021
## 4036 2018-09-13 2021-09-12 2018 2021
## 4037 2018-08-15 2021-08-14 2018 2021
## 4038 2018-03-07 2021-03-06 2018 2021
## 4039 2018-08-31 2021-08-31 2018 2021
## 4040 2018-08-28 2021-08-27 2018 2021
## 4041 2018-01-07 2021-01-06 2018 2021
## 4042 2018-01-14 2021-01-14 2018 2021
## 4043 2018-08-28 2021-08-28 2018 2021
## 4044 2018-08-28 2021-08-27 2018 2021
## 4045 2018-11-02 2021-11-02 2018 2021
## 4046 2017-10-24 2020-10-23 2017 2020
## 4047 2018-06-25 2021-06-24 2018 2021
## 4048 2018-09-02 2021-08-30 2018 2021
## 4049 2018-10-02 2021-10-01 2018 2021
## 4050 2018-09-15 2021-09-14 2018 2021
## 4051 2018-09-14 2021-09-13 2018 2021
## 4052 2018-09-04 2021-09-03 2018 2021
## 4053 2018-09-23 2021-09-22 2018 2021
## 4054 2018-09-09 2021-09-09 2018 2021
## 4055 2018-06-14 2019-01-25 2018 2019
## 4056 2018-08-29 2021-08-28 2018 2021
## 4057 2018-09-30 2021-09-29 2018 2021
## 4058 2018-12-10 2021-12-09 2018 2021
## 4059 2018-06-23 2021-06-22 2018 2021
## 4060 2018-08-31 2021-08-30 2018 2021
## 4061 2018-02-19 2021-02-18 2018 2021
## 4062 2017-10-15 2020-10-01 2017 2020
## 4063 2018-06-03 2021-06-03 2018 2021
## 4064 2018-06-28 2021-06-27 2018 2021
## 4065 2018-01-28 2021-01-27 2018 2021
## 4066 2018-04-15 2021-04-14 2018 2021
## 4067 2018-09-12 2021-09-11 2018 2021
## 4068 2018-07-20 2021-07-19 2018 2021
## 4069 2018-08-31 2021-08-30 2018 2021
## 4070 2018-07-31 2021-07-30 2018 2021
## 4071 2018-07-03 2021-07-02 2018 2021
## 4072 2018-09-15 2021-09-15 2018 2021
## 4073 2018-01-14 2019-07-27 2018 2019
## 4074 2018-12-10 2021-12-10 2018 2021
## 4075 2018-09-13 2021-09-12 2018 2021
## 4076 2019-02-14 2022-02-13 2019 2022
## 4077 2018-12-07 2021-12-06 2018 2021
## 4078 2018-03-18 2020-12-30 2018 2020
## 4079 2018-03-08 2021-03-07 2018 2021
## 4080 2018-06-14 2021-06-14 2018 2021
## 4081 2018-06-10 2021-06-10 2018 2021
## 4082 2018-03-17 2021-03-14 2018 2021
## 4083 2018-05-03 2021-04-30 2018 2021
## 4084 2018-09-21 2021-09-21 2018 2021
## 4085 2018-07-18 2020-12-30 2018 2020
## 4086 2018-03-18 2021-03-17 2018 2021
## 4087 2018-01-28 2021-01-25 2018 2021
## 4088 2018-09-02 2021-09-01 2018 2021
## 4089 2018-05-06 2021-05-05 2018 2021
## 4090 2018-04-26 2021-04-25 2018 2021
## 4091 2018-08-15 2021-08-14 2018 2021
## 4092 2018-08-01 2021-07-31 2018 2021
## 4093 2018-02-21 2020-06-29 2018 2020
## 4094 2018-01-31 2021-01-31 2018 2021
## 4095 2018-08-31 2021-08-31 2018 2021
## 4096 2018-09-14 2021-09-13 2018 2021
## 4097 2018-10-31 2021-10-30 2018 2021
## 4098 2018-08-31 2021-08-30 2018 2021
## 4099 2018-08-31 2021-08-31 2018 2021
## 4100 2018-03-10 2021-03-09 2018 2021
## 4101 2018-04-10 2021-04-09 2018 2021
## 4102 2018-10-24 2021-10-24 2018 2021
## 4103 2018-01-09 2021-01-09 2018 2021
## 4104 2018-03-11 2021-03-10 2018 2021
## 4105 2018-09-08 2021-09-07 2018 2021
## 4106 2018-06-03 2021-06-02 2018 2021
## 4107 2018-08-16 2020-10-31 2018 2020
## 4108 2018-09-25 2021-09-24 2018 2021
## 4109 2018-08-27 2021-08-26 2018 2021
## 4110 2018-09-18 2021-09-17 2018 2021
## 4111 2017-11-26 2020-11-14 2017 2020
## 4112 2018-09-13 2021-09-13 2018 2021
## 4113 2018-09-09 2021-09-09 2018 2021
## 4114 2018-06-30 2021-06-29 2018 2021
## 4115 2017-11-07 2020-11-06 2017 2020
## 4116 2018-09-10 2021-09-10 2018 2021
## 4117 2018-04-01 2021-03-31 2018 2021
## 4118 2018-09-30 2021-09-29 2018 2021
## 4119 2017-11-14 2020-11-13 2017 2020
## 4120 2018-08-16 2021-08-15 2018 2021
## 4121 2018-08-01 2021-07-31 2018 2021
## 4122 2018-08-19 2021-08-18 2018 2021
## 4123 2018-09-16 2021-09-15 2018 2021
## 4124 2018-06-10 2021-06-10 2018 2021
## 4125 2018-03-31 2021-03-30 2018 2021
## 4126 2018-05-28 2021-05-27 2018 2021
## 4127 2017-12-07 2020-12-06 2017 2020
## 4128 2018-02-15 2021-02-14 2018 2021
## 4129 2017-11-14 2020-11-13 2017 2020
## 4130 2018-08-10 2021-08-07 2018 2021
## 4131 2018-11-06 2021-11-06 2018 2021
## 4132 2018-08-25 2021-08-24 2018 2021
## 4133 2018-05-31 2020-05-30 2018 2020
## 4134 2018-05-10 2021-05-09 2018 2021
## 4135 2018-08-30 2021-08-29 2018 2021
## 4136 2018-10-31 2021-10-30 2018 2021
## 4137 2018-08-02 2020-10-30 2018 2020
## 4138 2018-09-06 2021-09-05 2018 2021
## 4139 2018-12-31 2021-12-30 2018 2021
## 4140 2018-09-29 2021-09-29 2018 2021
## 4141 2018-06-30 2021-06-29 2018 2021
## 4142 2018-09-09 2021-09-08 2018 2021
## 4143 2018-09-07 2021-09-06 2018 2021
## 4144 2018-12-27 2021-12-27 2018 2021
## 4145 2018-09-23 2021-09-19 2018 2021
## 4146 2018-08-25 2021-08-24 2018 2021
## 4147 2018-08-14 2021-08-13 2018 2021
## 4148 2018-09-06 2021-09-05 2018 2021
## 4149 2018-09-02 2018-09-29 2018 2018
## 4150 2018-08-26 2021-08-25 2018 2021
## 4151 2017-10-26 2020-10-25 2017 2020
## 4152 2017-12-21 2020-12-20 2017 2020
## 4153 2017-12-10 2020-12-09 2017 2020
## 4154 2018-05-23 2021-05-19 2018 2021
## 4155 2018-08-07 2021-07-06 2018 2021
## 4156 2018-08-21 2021-08-20 2018 2021
## 4157 2018-04-29 2021-04-29 2018 2021
## 4158 2018-02-28 2021-02-27 2018 2021
## 4159 2018-08-31 2021-08-30 2018 2021
## 4160 2017-12-20 2020-12-19 2017 2020
## 4161 2018-03-13 2021-03-12 2018 2021
## 4162 2017-11-01 2020-10-31 2017 2020
## 4163 2018-04-01 2021-03-31 2018 2021
## 4164 2018-07-26 2021-07-25 2018 2021
## 4165 2018-09-07 2021-09-06 2018 2021
## 4166 2018-10-26 2021-10-25 2018 2021
## 4167 2018-08-31 2021-08-29 2018 2021
## 4168 2018-08-19 2021-08-16 2018 2021
## 4169 2018-09-14 2021-09-14 2018 2021
## 4170 2017-11-05 2020-11-05 2017 2020
## 4171 2018-01-04 2021-01-03 2018 2021
## 4172 2018-03-28 2021-03-27 2018 2021
## 4173 2018-09-13 2021-09-12 2018 2021
## 4174 2018-08-14 2021-08-13 2018 2021
## 4175 2018-03-08 2019-09-28 2018 2019
## 4176 2018-02-18 2021-02-17 2018 2021
## 4177 2018-09-12 2021-09-12 2018 2021
## 4178 2018-07-12 2020-08-31 2018 2020
## 4179 2018-08-14 2021-08-13 2018 2021
## 4180 2018-02-08 2021-02-07 2018 2021
## 4181 2018-08-31 2021-08-29 2018 2021
## 4182 2018-09-23 2021-09-22 2018 2021
## 4183 2017-11-19 2020-11-18 2017 2020
## 4184 2018-04-15 2021-04-09 2018 2021
## 4185 2018-08-31 2021-08-31 2018 2021
## 4186 2018-02-11 2021-02-05 2018 2021
## 4187 2018-09-06 2021-09-06 2018 2021
## 4188 2018-04-19 2021-04-19 2018 2021
## 4189 2018-03-15 2021-03-14 2018 2021
## 4190 2018-06-30 2021-06-29 2018 2021
## 4191 2018-04-29 2021-04-28 2018 2021
## 4192 2018-02-04 2021-02-03 2018 2021
## 4193 2018-09-16 2021-09-15 2018 2021
## 4194 2018-05-27 2021-05-27 2018 2021
## 4195 2018-04-22 2021-04-22 2018 2021
## 4196 2018-08-14 2021-08-14 2018 2021
## 4197 2018-08-14 2021-08-13 2018 2021
## 4198 2018-08-27 2021-08-27 2018 2021
## 4199 2018-02-18 2021-02-17 2018 2021
## 4200 2017-10-16 2020-10-15 2017 2020
## 4201 2018-08-04 2021-08-03 2018 2021
## 4202 2018-09-28 2019-07-29 2018 2019
## 4203 2018-08-12 2021-08-11 2018 2021
## 4204 2018-07-22 2021-07-21 2018 2021
## 4205 2018-09-18 2021-09-18 2018 2021
## 4206 2018-09-13 2021-09-12 2018 2021
## 4207 2018-09-18 2021-09-17 2018 2021
## 4208 2018-03-14 2021-03-13 2018 2021
## 4209 2018-01-21 2021-01-21 2018 2021
## 4210 2018-09-17 2021-09-16 2018 2021
## 4211 2018-09-09 2021-09-08 2018 2021
## 4212 2018-08-12 2021-08-11 2018 2021
## 4213 2018-07-15 2021-07-14 2018 2021
## 4214 2019-02-10 2022-02-07 2019 2022
## 4215 2018-07-01 2021-07-01 2018 2021
## 4216 2018-08-23 2021-08-23 2018 2021
## 4217 2018-09-14 2021-09-14 2018 2021
## 4218 2018-07-25 2021-07-24 2018 2021
## 4219 2018-09-12 2021-09-11 2018 2021
## 4220 2018-01-07 2021-01-06 2018 2021
## 4221 2018-09-19 2021-09-19 2018 2021
## 4222 2018-09-10 2021-09-09 2018 2021
## 4223 2018-08-30 2021-08-29 2018 2021
## 4224 2018-01-21 2021-01-21 2018 2021
## 4225 2018-08-30 2021-08-29 2018 2021
## 4226 2018-09-09 2021-09-08 2018 2021
## 4227 2017-11-14 2020-11-13 2017 2020
## 4228 2018-09-13 2021-09-12 2018 2021
## 4229 2018-08-29 2021-08-29 2018 2021
## 4230 2018-09-03 2021-09-02 2018 2021
## 4231 2018-02-11 2021-02-10 2018 2021
## 4232 2018-04-23 2021-04-22 2018 2021
## 4233 2019-01-15 2022-01-14 2019 2022
## 4234 2019-02-20 2022-02-19 2019 2022
## 4235 2018-08-14 2021-08-13 2018 2021
## 4236 2018-09-30 2021-09-29 2018 2021
## 4237 2018-07-01 2021-07-01 2018 2021
## 4238 2018-09-06 2021-09-05 2018 2021
## 4239 2018-09-30 2021-09-29 2018 2021
## 4240 2018-07-15 2021-07-14 2018 2021
## 4241 2017-11-29 2020-11-28 2017 2020
## 4242 2018-08-17 2021-08-16 2018 2021
## 4243 2018-08-27 2021-08-26 2018 2021
## 4244 2018-03-15 2021-03-14 2018 2021
## 4245 2018-05-01 2018-09-10 2018 2018
## 4246 2018-06-24 2021-06-23 2018 2021
## 4247 2018-06-17 2021-06-17 2018 2021
## 4248 2018-09-10 2021-09-10 2018 2021
## 4249 2018-08-23 2021-08-23 2018 2021
## 4250 2018-12-12 2019-12-11 2018 2019
## 4251 2018-07-12 2021-07-12 2018 2021
## 4252 2017-10-31 2020-10-30 2017 2020
## 4253 2018-04-12 2021-04-11 2018 2021
## 4254 2018-11-05 2021-11-04 2018 2021
## 4255 2018-08-13 2021-08-12 2018 2021
## 4256 2018-07-31 2021-07-30 2018 2021
## 4257 2018-08-29 2021-08-28 2018 2021
## 4258 2018-01-14 2021-01-14 2018 2021
## 4259 2018-07-25 2020-09-29 2018 2020
## 4260 2018-08-26 2021-08-25 2018 2021
## 4261 2018-08-05 2021-08-02 2018 2021
## 4262 2018-07-18 2021-07-17 2018 2021
## 4263 2018-09-05 2021-09-04 2018 2021
## 4264 2018-06-30 2021-06-27 2018 2021
## 4265 2018-01-21 2021-01-20 2018 2021
## 4266 2017-10-05 2020-10-04 2017 2020
## 4267 2018-12-31 2021-12-30 2018 2021
## 4268 2018-09-13 2021-09-13 2018 2021
## 4269 2018-05-14 2020-08-26 2018 2020
## 4270 2017-12-03 2020-12-02 2017 2020
## 4271 2018-09-11 2021-09-11 2018 2021
## 4272 2018-10-16 2021-10-16 2018 2021
## 4273 2018-02-25 2021-02-25 2018 2021
## 4274 2018-08-24 2021-08-23 2018 2021
## 4275 2018-05-09 2021-05-08 2018 2021
## 4276 2017-10-31 2020-10-28 2017 2020
## 4277 2018-09-06 2021-09-05 2018 2021
## 4278 2018-06-27 2021-06-26 2018 2021
## 4279 2018-07-07 2021-07-06 2018 2021
## 4280 2018-09-27 2021-09-27 2018 2021
## 4281 2018-07-29 2021-07-28 2018 2021
## 4282 2018-09-02 2021-09-01 2018 2021
## 4283 2018-07-26 2021-07-25 2018 2021
## 4284 2018-09-19 2021-09-18 2018 2021
## 4285 2018-09-10 2021-09-09 2018 2021
## 4286 2017-10-05 2020-10-04 2017 2020
## 4287 2018-08-31 2021-08-28 2018 2021
## 4288 2018-09-04 2021-09-03 2018 2021
## 4289 2018-05-07 2021-05-06 2018 2021
## 4290 2017-12-03 2020-08-31 2017 2020
## 4291 2017-11-30 2020-11-30 2017 2020
## 4292 2018-09-03 2021-09-02 2018 2021
## 4293 2018-08-19 2021-08-18 2018 2021
## 4294 2018-09-03 2021-09-02 2018 2021
## 4295 2018-06-02 2021-06-01 2018 2021
## 4296 2018-02-13 2021-01-30 2018 2021
## 4297 2018-05-02 2021-05-01 2018 2021
## 4298 2018-02-21 2021-02-17 2018 2021
## 4299 2018-03-31 2021-03-30 2018 2021
## 4300 2018-06-03 2021-06-03 2018 2021
## 4301 2018-01-21 2019-12-30 2018 2019
## 4302 2018-06-30 2019-06-29 2018 2019
## 4303 2018-09-14 2020-09-29 2018 2020
## 4304 2018-08-31 2021-08-30 2018 2021
## 4305 2018-09-20 2021-09-19 2018 2021
## 4306 2018-06-30 2021-06-29 2018 2021
## 4307 2018-06-12 2021-06-11 2018 2021
## 4308 2018-08-20 2021-08-19 2018 2021
## 4309 2018-08-26 2021-08-25 2018 2021
## 4310 2018-09-03 2020-03-31 2018 2020
## 4311 2018-10-28 2021-10-27 2018 2021
## 4312 2018-05-13 2021-05-12 2018 2021
## 4313 2018-09-12 2021-09-11 2018 2021
## 4314 2018-01-18 2021-01-18 2018 2021
## 4315 2018-08-27 2021-08-26 2018 2021
## 4316 2018-05-07 2021-05-06 2018 2021
## 4317 2018-04-09 2020-09-18 2018 2020
## 4318 2018-09-11 2021-09-10 2018 2021
## 4319 2018-03-27 2021-03-26 2018 2021
## 4320 2017-11-19 2020-11-18 2017 2020
## 4321 2018-12-29 2021-12-28 2018 2021
## 4322 2018-08-26 2021-08-25 2018 2021
## 4323 2018-03-26 2021-03-25 2018 2021
## 4324 2018-02-04 2021-02-04 2018 2021
## 4325 2018-04-18 2021-04-17 2018 2021
## 4326 2018-07-12 2020-12-31 2018 2020
## 4327 2018-04-13 2021-04-12 2018 2021
## 4328 2018-05-31 2021-05-30 2018 2021
## 4329 2018-08-05 2021-08-04 2018 2021
## 4330 2018-10-25 2021-10-24 2018 2021
## 4331 2018-05-24 2021-05-24 2018 2021
## 4332 2018-02-26 2021-02-26 2018 2021
## 4333 2018-08-14 2021-08-13 2018 2021
## 4334 2018-03-26 2021-03-11 2018 2021
## 4335 2018-01-17 2021-01-16 2018 2021
## 4336 2018-08-05 2021-08-04 2018 2021
## 4337 2018-08-03 2021-08-02 2018 2021
## 4338 2018-08-07 2021-08-07 2018 2021
## 4339 2018-01-25 2021-01-25 2018 2021
## 4340 2018-07-19 2019-06-14 2018 2019
## 4341 2018-09-18 2021-09-18 2018 2021
## 4342 2018-04-01 2021-03-31 2018 2021
## 4343 2018-07-07 2021-07-06 2018 2021
## 4344 2018-07-04 2021-07-04 2018 2021
## 4345 2018-07-08 2021-07-07 2018 2021
## 4346 2018-08-23 2021-08-22 2018 2021
## 4347 2017-12-03 2020-12-03 2017 2020
## 4348 2017-11-20 2020-11-15 2017 2020
## 4349 2018-08-27 2021-08-27 2018 2021
## 4350 2018-09-03 2021-09-03 2018 2021
## 4351 2018-05-31 2020-06-29 2018 2020
## 4352 2018-09-18 2021-09-18 2018 2021
## 4353 2017-10-16 2020-10-15 2017 2020
## 4354 2018-09-28 2021-09-27 2018 2021
## 4355 2018-09-14 2021-09-13 2018 2021
## 4356 2018-09-10 2021-09-09 2018 2021
## 4357 2018-05-04 2021-05-03 2018 2021
## 4358 2018-08-30 2021-08-30 2018 2021
## 4359 2018-09-02 2021-09-01 2018 2021
## 4360 2018-08-20 2020-02-08 2018 2020
## 4361 2018-05-14 2021-05-13 2018 2021
## 4362 2018-08-03 2021-08-02 2018 2021
## 4363 2018-09-02 2021-09-01 2018 2021
## 4364 2018-07-30 2021-07-29 2018 2021
## 4365 2018-06-17 2021-06-17 2018 2021
## 4366 2018-09-05 2021-08-29 2018 2021
## 4367 2018-06-06 2021-06-05 2018 2021
## 4368 2018-08-31 2021-08-30 2018 2021
## 4369 2018-09-18 2021-09-17 2018 2021
## 4370 2018-06-30 2021-06-29 2018 2021
## 4371 2018-08-30 2021-08-30 2018 2021
## 4372 2018-09-08 2021-09-07 2018 2021
## 4373 2018-03-23 2021-03-22 2018 2021
## 4374 2018-09-08 2021-09-08 2018 2021
## 4375 2018-12-31 2021-12-30 2018 2021
## 4376 2018-08-11 2021-08-10 2018 2021
## 4377 2017-11-23 2020-11-22 2017 2020
## 4378 2019-01-02 2022-01-02 2019 2022
## 4379 2017-12-25 2018-11-13 2017 2018
## 4380 2018-08-23 2021-08-23 2018 2021
## 4381 2018-08-14 2021-08-13 2018 2021
## 4382 2018-11-09 2021-11-08 2018 2021
## 4383 2018-09-30 2020-09-29 2018 2020
## 4384 2018-09-08 2021-09-07 2018 2021
## 4385 2017-10-30 2020-10-29 2017 2020
## 4386 2018-06-14 2021-06-14 2018 2021
## 4387 2018-09-12 2021-09-11 2018 2021
## 4388 2018-09-30 2021-09-30 2018 2021
## 4389 2018-05-20 2021-05-19 2018 2021
## 4390 2019-01-31 2022-01-31 2019 2022
## 4391 2018-03-09 2021-03-06 2018 2021
## 4392 2018-10-30 2021-10-29 2018 2021
## 4393 2018-08-19 2021-08-18 2018 2021
## 4394 2018-08-26 2021-08-25 2018 2021
## 4395 2018-01-02 2021-01-01 2018 2021
## 4396 2018-08-14 2021-08-14 2018 2021
## 4397 2018-08-31 2021-08-29 2018 2021
## 4398 2018-06-30 2021-06-29 2018 2021
## 4399 2018-09-21 2021-09-20 2018 2021
## 4400 2019-01-09 2021-01-09 2019 2021
## 4401 2018-02-23 2021-02-22 2018 2021
## 4402 2018-01-11 2021-01-10 2018 2021
## 4403 2017-10-29 2020-10-28 2017 2020
## 4404 2018-09-05 2021-09-04 2018 2021
## 4405 2018-01-14 2021-01-13 2018 2021
## 4406 2017-11-12 2020-11-11 2017 2020
## 4407 2018-02-09 2021-02-09 2018 2021
## 4408 2018-08-05 2021-08-04 2018 2021
## 4409 2018-09-01 2021-08-31 2018 2021
## 4410 2018-09-19 2021-09-18 2018 2021
## 4411 2017-10-15 2020-10-15 2017 2020
## 4412 2018-05-08 2021-05-07 2018 2021
## 4413 2017-12-17 2020-12-17 2017 2020
## 4414 2018-07-15 2021-07-14 2018 2021
## 4415 2017-12-14 2020-12-13 2017 2020
## 4416 2018-08-30 2021-08-29 2018 2021
## 4417 2018-07-25 2021-07-24 2018 2021
## 4418 2018-09-09 2021-09-08 2018 2021
## 4419 2018-07-24 2021-07-23 2018 2021
## 4420 2018-06-14 2021-06-14 2018 2021
## 4421 2018-01-30 2021-01-29 2018 2021
## 4422 2018-09-01 2021-08-31 2018 2021
## 4423 2018-09-25 2021-09-25 2018 2021
## 4424 2018-07-08 2021-07-07 2018 2021
## 4425 2018-03-14 2020-03-13 2018 2020
## 4426 2018-08-11 2021-08-10 2018 2021
## 4427 2018-03-23 2021-03-22 2018 2021
## 4428 2019-02-16 2022-02-15 2019 2022
## 4429 2018-09-30 2021-09-29 2018 2021
## 4430 2018-04-08 2021-04-07 2018 2021
## 4431 2018-06-28 2021-06-26 2018 2021
## 4432 2018-08-31 2021-08-30 2018 2021
## 4433 2018-12-21 2021-12-18 2018 2021
## 4434 2018-03-01 2021-02-28 2018 2021
## 4435 2018-06-30 2021-06-29 2018 2021
## 4436 2018-07-04 2021-07-04 2018 2021
## 4437 2018-07-17 2021-07-17 2018 2021
## 4438 2018-01-01 2021-01-01 2018 2021
## 4439 2018-08-31 2021-08-30 2018 2021
## 4440 2018-05-14 2021-05-14 2018 2021
## 4441 2018-01-28 2021-01-28 2018 2021
## 4442 2018-03-05 2021-03-04 2018 2021
## 4443 2018-08-31 2021-08-30 2018 2021
## 4444 2018-05-20 2021-05-19 2018 2021
## 4445 2018-05-31 2021-05-30 2018 2021
## 4446 2019-01-06 2022-01-03 2019 2022
## 4447 2018-08-27 2021-08-26 2018 2021
## 4448 2018-08-27 2021-08-26 2018 2021
## 4449 2018-08-28 2021-08-27 2018 2021
## 4450 2018-10-08 2021-10-07 2018 2021
## 4451 2018-08-31 2021-08-30 2018 2021
## 4452 2018-06-14 2021-06-14 2018 2021
## 4453 2018-01-14 2021-01-13 2018 2021
## 4454 2018-09-11 2021-09-10 2018 2021
## 4455 2018-07-31 2021-07-29 2018 2021
## 4456 2018-09-09 2021-09-08 2018 2021
## 4457 2018-02-15 2021-02-14 2018 2021
## 4458 2018-07-12 2021-07-11 2018 2021
## 4459 2018-08-28 2021-08-27 2018 2021
## 4460 2017-12-14 2020-12-13 2017 2020
## 4461 2018-08-29 2021-08-28 2018 2021
## 4462 2018-08-26 2021-08-23 2018 2021
## 4463 2018-08-30 2021-08-29 2018 2021
## 4464 2017-12-31 2020-12-30 2017 2020
## 4465 2018-07-24 2021-07-23 2018 2021
## 4466 2018-05-06 2020-05-30 2018 2020
## 4467 2017-10-15 2020-10-14 2017 2020
## 4468 2018-08-31 2021-08-30 2018 2021
## 4469 2018-08-05 2021-08-04 2018 2021
## 4470 2018-09-30 2021-09-30 2018 2021
## 4471 2018-01-08 2021-01-07 2018 2021
## 4472 2018-08-31 2021-08-30 2018 2021
## 4473 2018-08-31 2020-12-29 2018 2020
## 4474 2018-02-26 2021-02-24 2018 2021
## 4475 2018-08-05 2021-08-05 2018 2021
## 4476 2017-10-17 2020-10-16 2017 2020
## 4477 2018-09-11 2021-09-11 2018 2021
## 4478 2018-05-23 2021-05-22 2018 2021
## 4479 2018-09-19 2021-09-18 2018 2021
## 4480 2018-08-31 2021-08-31 2018 2021
## 4481 2018-05-30 2021-05-29 2018 2021
## 4482 2017-11-14 2020-11-13 2017 2020
## 4483 2018-07-02 2021-07-01 2018 2021
## 4484 2018-08-19 2021-08-18 2018 2021
## 4485 2018-04-22 2020-09-29 2018 2020
## 4486 2018-09-02 2021-09-01 2018 2021
## 4487 2018-05-08 2021-05-07 2018 2021
## 4488 2018-08-30 2021-08-29 2018 2021
## 4489 2018-06-14 2021-06-14 2018 2021
## 4490 2018-09-13 2021-09-12 2018 2021
## 4491 2018-08-12 2021-08-11 2018 2021
## 4492 2018-06-10 2021-06-09 2018 2021
## 4493 2018-03-18 2021-03-17 2018 2021
## 4494 2018-09-10 2021-09-09 2018 2021
## 4495 2018-09-14 2021-09-13 2018 2021
## 4496 2018-08-25 2021-08-24 2018 2021
## 4497 2018-01-14 2021-01-13 2018 2021
## 4498 2018-09-03 2021-09-02 2018 2021
## 4499 2018-11-01 2021-10-31 2018 2021
## 4500 2018-08-24 2021-08-23 2018 2021
## 4501 2018-05-31 2021-05-30 2018 2021
## 4502 2018-06-17 2021-06-16 2018 2021
## 4503 2018-06-29 2021-06-27 2018 2021
## 4504 2018-09-12 2021-09-12 2018 2021
## 4505 2018-07-05 2021-07-05 2018 2021
## 4506 2018-09-06 2021-09-05 2018 2021
## 4507 2018-08-31 2021-08-31 2018 2021
## 4508 2018-08-20 2021-08-19 2018 2021
## 4509 2018-05-31 2021-05-30 2018 2021
## 4510 2018-12-12 2021-12-11 2018 2021
## 4511 2018-07-19 2021-07-18 2018 2021
## 4512 2018-09-07 2021-09-07 2018 2021
## 4513 2018-06-01 2021-06-01 2018 2021
## 4514 2018-09-13 2021-09-12 2018 2021
## 4515 2018-12-04 2021-12-04 2018 2021
## 4516 2018-06-13 2020-06-29 2018 2020
## 4517 2018-09-21 2021-09-20 2018 2021
## 4518 2018-07-18 2021-07-17 2018 2021
## 4519 2018-08-12 2021-08-11 2018 2021
## 4520 2018-08-31 2021-08-31 2018 2021
## 4521 2018-05-31 2021-05-30 2018 2021
## 4522 2018-07-31 2019-08-30 2018 2019
## 4523 2018-09-30 2021-09-30 2018 2021
## 4524 2018-09-04 2021-09-04 2018 2021
## 4525 2018-09-20 2021-09-19 2018 2021
## 4526 2018-09-18 2021-09-17 2018 2021
## 4527 2018-08-27 2021-08-27 2018 2021
## 4528 2018-05-16 2021-05-15 2018 2021
## 4529 2018-02-22 2021-02-21 2018 2021
## 4530 2018-09-09 2021-09-08 2018 2021
## 4531 2018-06-19 2021-06-18 2018 2021
## 4532 2018-08-31 2021-08-30 2018 2021
## 4533 2018-05-01 2019-05-16 2018 2019
## 4534 2019-01-01 2021-12-31 2019 2021
## 4535 2017-12-06 2020-04-09 2017 2020
## 4536 2018-09-11 2021-09-10 2018 2021
## 4537 2018-01-31 2019-01-30 2018 2019
## 4538 2018-08-20 2021-08-19 2018 2021
## 4539 2018-07-02 2021-06-29 2018 2021
## 4540 2019-02-15 2022-02-12 2019 2022
## 4541 2018-08-22 2021-08-21 2018 2021
## 4542 2018-07-08 2021-07-04 2018 2021
## 4543 2017-11-27 2019-09-30 2017 2019
## 4544 2018-07-16 2019-12-30 2018 2019
## 4545 2017-12-31 2020-12-30 2017 2020
## 4546 2018-08-31 2021-08-30 2018 2021
## 4547 2018-09-16 2021-09-15 2018 2021
## 4548 2018-07-24 2021-07-23 2018 2021
## 4549 2018-01-21 2021-01-20 2018 2021
## 4550 2018-08-05 2021-08-04 2018 2021
## 4551 2018-07-05 2020-06-05 2018 2020
## 4552 2018-09-09 2021-09-08 2018 2021
## 4553 2017-12-25 2020-12-24 2017 2020
## 4554 2018-08-16 2021-08-15 2018 2021
## 4555 2018-09-19 2021-09-18 2018 2021
## 4556 2018-07-30 2021-07-29 2018 2021
## 4557 2018-07-23 2021-07-23 2018 2021
## 4558 2018-08-25 2021-08-24 2018 2021
## 4559 2018-04-23 2021-04-22 2018 2021
## 4560 2018-09-22 2021-09-22 2018 2021
## 4561 2018-03-06 2021-03-05 2018 2021
## 4562 2018-11-15 2021-11-14 2018 2021
## 4563 2018-09-11 2021-09-10 2018 2021
## 4564 2018-08-14 2021-08-13 2018 2021
## 4565 2017-12-10 2020-12-09 2017 2020
## 4566 2018-06-30 2021-06-29 2018 2021
## 4567 2018-09-20 2021-09-20 2018 2021
## 4568 2018-01-21 2021-01-20 2018 2021
## 4569 2018-05-10 2021-05-09 2018 2021
## 4570 2018-08-30 2021-08-29 2018 2021
## 4571 2017-11-16 2020-11-16 2017 2020
## 4572 2018-09-13 2021-09-12 2018 2021
## 4573 2018-08-31 2021-08-30 2018 2021
## 4574 2018-08-21 2021-08-21 2018 2021
## 4575 2017-12-11 2020-12-11 2017 2020
## 4576 2018-07-24 2021-07-24 2018 2021
## 4577 2018-09-30 2021-09-30 2018 2021
## 4578 2018-09-26 2021-09-25 2018 2021
## 4579 2018-01-21 2021-01-20 2018 2021
## 4580 2018-09-17 2021-09-16 2018 2021
## 4581 2018-08-27 2021-08-26 2018 2021
## 4582 2018-04-29 2021-04-29 2018 2021
## 4583 2018-07-31 2021-07-30 2018 2021
## 4584 2018-08-23 2021-08-22 2018 2021
## 4585 2018-05-20 2021-05-19 2018 2021
## 4586 2018-08-12 2021-08-12 2018 2021
## 4587 2018-12-30 2021-12-29 2018 2021
## 4588 2018-03-08 2021-03-07 2018 2021
## 4589 2018-09-02 2020-12-30 2018 2020
## 4590 2018-09-03 2021-09-02 2018 2021
## 4591 2018-06-30 2020-04-29 2018 2020
## 4592 2018-08-30 2021-08-30 2018 2021
## 4593 2017-11-14 2019-07-04 2017 2019
## 4594 2018-03-29 2021-03-28 2018 2021
## 4595 2018-05-16 2021-05-15 2018 2021
## 4596 2018-07-31 2021-07-30 2018 2021
## 4597 2018-07-29 2021-07-26 2018 2021
## 4598 2018-09-12 2021-09-11 2018 2021
## 4599 2018-02-05 2021-02-04 2018 2021
## 4600 2018-09-07 2021-09-06 2018 2021
## 4601 2018-03-07 2021-03-06 2018 2021
## 4602 2018-03-01 2018-06-21 2018 2018
## 4603 2018-09-03 2021-09-02 2018 2021
## 4604 2019-01-07 2022-01-06 2019 2022
## 4605 2017-11-14 2020-11-13 2017 2020
## 4606 2017-12-14 2020-12-14 2017 2020
## 4607 2018-03-31 2021-03-30 2018 2021
## 4608 2018-06-14 2021-06-11 2018 2021
## 4609 2018-09-15 2021-09-14 2018 2021
## 4610 2018-08-31 2021-08-31 2018 2021
## 4611 2018-08-12 2021-08-11 2018 2021
## 4612 2018-08-31 2021-03-30 2018 2021
## 4613 2018-08-31 2021-08-30 2018 2021
## 4614 2018-08-13 2021-08-12 2018 2021
## 4615 2018-08-31 2021-08-30 2018 2021
## 4616 2018-08-31 2021-08-30 2018 2021
## 4617 2018-07-28 2021-07-27 2018 2021
## 4618 2018-01-07 2021-01-06 2018 2021
## 4619 2018-08-14 2021-08-13 2018 2021
## 4620 2018-09-10 2021-09-10 2018 2021
## 4621 2018-01-28 2021-01-27 2018 2021
## 4622 2018-08-09 2021-08-08 2018 2021
## 4623 2017-11-12 2020-11-11 2017 2020
## 4624 2018-09-04 2021-09-04 2018 2021
## 4625 2018-07-24 2021-07-23 2018 2021
## 4626 2018-05-24 2021-05-23 2018 2021
## 4627 2018-08-25 2021-08-24 2018 2021
## 4628 2018-08-27 2021-08-26 2018 2021
## 4629 2018-08-31 2021-08-30 2018 2021
## 4630 2018-03-04 2020-09-10 2018 2020
## 4631 2018-09-02 2021-09-01 2018 2021
## 4632 2017-11-26 2020-11-25 2017 2020
## 4633 2019-01-26 2022-01-26 2019 2022
## 4634 2018-09-19 2021-09-19 2018 2021
## 4635 2018-03-13 2021-03-12 2018 2021
## 4636 2018-06-30 2021-06-29 2018 2021
## 4637 2018-08-31 2021-08-31 2018 2021
## 4638 2018-09-16 2021-09-15 2018 2021
## 4639 2018-08-19 2021-08-18 2018 2021
## 4640 2018-12-14 2021-12-13 2018 2021
## 4641 2018-08-16 2021-08-15 2018 2021
## 4642 2017-12-17 2020-12-17 2017 2020
## 4643 2018-08-31 2021-08-31 2018 2021
## 4644 2018-02-01 2021-02-01 2018 2021
## 4645 2018-08-22 2021-08-21 2018 2021
## 4646 2018-08-24 2021-08-23 2018 2021
## 4647 2018-07-19 2021-07-09 2018 2021
## 4648 2018-09-07 2021-09-07 2018 2021
## 4649 2018-05-23 2021-05-22 2018 2021
## 4650 2018-09-13 2021-09-12 2018 2021
## 4651 2018-09-07 2021-09-07 2018 2021
## 4652 2018-01-29 2020-01-28 2018 2020
## 4653 2018-08-31 2021-08-30 2018 2021
## 4654 2018-08-13 2021-08-12 2018 2021
## 4655 2018-09-12 2021-09-12 2018 2021
## 4656 2018-06-14 2021-06-14 2018 2021
## 4657 2018-07-19 2021-07-18 2018 2021
## 4658 2018-06-30 2021-06-29 2018 2021
## 4659 2018-08-26 2021-08-25 2018 2021
## 4660 2017-12-05 2020-12-04 2017 2020
## 4661 2018-12-26 2021-12-26 2018 2021
## 4662 2017-10-22 2020-10-21 2017 2020
## 4663 2018-04-26 2021-04-25 2018 2021
## 4664 2017-10-15 2020-10-14 2017 2020
## 4665 2018-09-05 2021-09-04 2018 2021
## 4666 2018-09-30 2021-09-29 2018 2021
## 4667 2018-01-15 2021-01-14 2018 2021
## 4668 2018-07-31 2021-07-30 2018 2021
## 4669 2018-01-27 2021-01-24 2018 2021
## 4670 2018-08-31 2021-08-30 2018 2021
## 4671 2018-07-29 2020-07-01 2018 2020
## 4672 2018-08-26 2021-08-25 2018 2021
## 4673 2018-09-19 2021-09-18 2018 2021
## 4674 2018-03-14 2021-03-14 2018 2021
## 4675 2018-09-14 2021-09-14 2018 2021
## 4676 2018-05-31 2021-05-30 2018 2021
## 4677 2018-08-07 2021-08-06 2018 2021
## 4678 2018-05-17 2019-06-29 2018 2019
## 4679 2018-05-07 2021-05-04 2018 2021
## 4680 2018-08-16 2021-08-16 2018 2021
## 4681 2018-11-14 2021-11-13 2018 2021
## 4682 2018-02-20 2021-02-19 2018 2021
## 4683 2018-08-27 2021-08-27 2018 2021
## 4684 2018-12-31 2021-08-18 2018 2021
## 4685 2018-09-10 2021-09-10 2018 2021
## 4686 2018-05-07 2021-05-06 2018 2021
## 4687 2018-09-07 2021-09-06 2018 2021
## 4688 2018-01-21 2021-01-20 2018 2021
## 4689 2017-11-21 2020-11-20 2017 2020
## 4690 2017-12-19 2020-12-19 2017 2020
## 4691 2018-08-11 2021-08-11 2018 2021
## 4692 2018-08-31 2021-08-30 2018 2021
## 4693 2018-09-11 2021-09-11 2018 2021
## 4694 2018-09-09 2021-09-08 2018 2021
## 4695 2018-09-27 2021-09-27 2018 2021
## 4696 2018-08-31 2021-08-31 2018 2021
## 4697 2018-09-18 2021-09-18 2018 2021
## 4698 2018-07-24 2021-07-23 2018 2021
## 4699 2018-09-22 2021-09-21 2018 2021
## 4700 2018-03-11 2021-03-10 2018 2021
## 4701 2017-11-19 2020-11-16 2017 2020
## 4702 2017-10-15 2020-10-15 2017 2020
## 4703 2018-08-10 2021-08-09 2018 2021
## 4704 2018-08-06 2021-08-05 2018 2021
## 4705 2018-08-15 2021-08-14 2018 2021
## 4706 2018-05-16 2021-05-15 2018 2021
## 4707 2018-07-31 2021-07-30 2018 2021
## 4708 2018-09-28 2021-09-28 2018 2021
## 4709 2017-12-24 2020-12-23 2017 2020
## 4710 2017-12-25 2020-12-25 2017 2020
## 4711 2018-02-09 2021-02-09 2018 2021
## 4712 2018-03-24 2021-03-23 2018 2021
## 4713 2018-08-31 2021-08-30 2018 2021
## 4714 2018-08-15 2021-08-15 2018 2021
## 4715 2018-03-11 2021-03-10 2018 2021
## 4716 2018-09-06 2021-09-05 2018 2021
## 4717 2018-07-15 2021-07-14 2018 2021
## 4718 2018-09-17 2021-09-16 2018 2021
## 4719 2018-05-17 2021-05-14 2018 2021
## 4720 2018-09-07 2021-09-07 2018 2021
## 4721 2018-09-05 2021-09-04 2018 2021
## 4722 2018-02-12 2021-02-11 2018 2021
## 4723 2018-08-31 2021-08-30 2018 2021
## 4724 2018-08-11 2021-08-10 2018 2021
## 4725 2019-01-02 2022-01-01 2019 2022
## 4726 2018-09-23 2021-09-22 2018 2021
## 4727 2018-06-30 2021-06-30 2018 2021
## 4728 2018-08-26 2021-08-25 2018 2021
## 4729 2018-02-08 2021-02-08 2018 2021
## 4730 2018-08-30 2021-08-29 2018 2021
## 4731 2018-08-19 2021-08-19 2018 2021
## 4732 2018-08-12 2021-08-11 2018 2021
## 4733 2018-04-21 2020-11-05 2018 2020
## 4734 2018-08-18 2021-08-18 2018 2021
## 4735 2018-06-01 2021-06-01 2018 2021
## 4736 2018-04-30 2020-04-29 2018 2020
## 4737 2018-01-16 2021-01-15 2018 2021
## 4738 2018-09-28 2021-09-28 2018 2021
## 4739 2018-09-09 2021-09-08 2018 2021
## 4740 2018-03-12 2021-03-12 2018 2021
## 4741 2017-11-16 2019-08-26 2017 2019
## 4742 2018-09-05 2021-09-04 2018 2021
## 4743 2018-09-30 2021-09-29 2018 2021
## 4744 2018-07-08 2021-07-08 2018 2021
## 4745 2018-08-12 2021-08-11 2018 2021
## 4746 2018-07-31 2021-07-30 2018 2021
## 4747 2018-09-12 2021-09-11 2018 2021
## 4748 2018-08-21 2021-08-20 2018 2021
## 4749 2017-12-17 2020-12-16 2017 2020
## 4750 2018-09-14 2021-09-14 2018 2021
## 4751 2018-08-31 2021-08-29 2018 2021
## 4752 2018-10-14 2021-10-13 2018 2021
## 4753 2018-08-08 2021-08-08 2018 2021
## 4754 2018-07-31 2021-07-31 2018 2021
## 4755 2018-01-10 2021-01-09 2018 2021
## 4756 2018-08-14 2021-08-14 2018 2021
## 4757 2018-07-24 2021-07-21 2018 2021
## 4758 2018-08-31 2021-08-30 2018 2021
## 4759 2018-07-31 2021-07-30 2018 2021
## 4760 2018-06-30 2021-06-29 2018 2021
## 4761 2018-07-08 2021-07-08 2018 2021
## 4762 2018-09-30 2021-09-29 2018 2021
## 4763 2018-08-31 2021-08-31 2018 2021
## 4764 2018-02-13 2021-02-12 2018 2021
## 4765 2018-09-05 2021-09-04 2018 2021
## 4766 2017-12-06 2020-12-06 2017 2020
## 4767 2017-12-11 2020-12-10 2017 2020
## 4768 2018-09-12 2021-09-11 2018 2021
## 4769 2018-10-15 2021-10-14 2018 2021
## 4770 2018-08-03 2021-08-02 2018 2021
## 4771 2018-05-20 2021-05-20 2018 2021
## 4772 2018-08-14 2021-08-13 2018 2021
## 4773 2018-09-17 2021-09-17 2018 2021
## 4774 2018-08-26 2021-08-25 2018 2021
## 4775 2017-12-05 2020-12-04 2017 2020
## 4776 2018-08-05 2021-01-23 2018 2021
## 4777 2018-09-24 2021-09-24 2018 2021
## 4778 2018-05-14 2021-05-14 2018 2021
## 4779 2018-01-15 2021-01-14 2018 2021
## 4780 2018-08-31 2021-08-30 2018 2021
## 4781 2017-10-11 2020-10-10 2017 2020
## 4782 2017-12-31 2020-12-30 2017 2020
## 4783 2018-04-29 2021-04-26 2018 2021
## 4784 2018-07-31 2021-07-29 2018 2021
## 4785 2018-06-05 2021-06-05 2018 2021
## 4786 2018-09-05 2019-04-25 2018 2019
## 4787 2018-09-19 2021-09-19 2018 2021
## 4788 2018-08-22 2021-08-22 2018 2021
## 4789 2018-09-02 2021-09-01 2018 2021
## 4790 2018-08-14 2021-08-14 2018 2021
## 4791 2017-10-05 2019-06-25 2017 2019
## 4792 2017-11-26 2020-11-25 2017 2020
## 4793 2018-09-18 2021-09-17 2018 2021
## 4794 2018-09-16 2021-09-16 2018 2021
## 4795 2018-08-26 2020-03-16 2018 2020
## 4796 2018-08-31 2021-08-30 2018 2021
## 4797 2018-09-23 2021-09-22 2018 2021
## 4798 2017-12-31 2020-12-28 2017 2020
## 4799 2018-09-06 2021-09-05 2018 2021
## 4800 2018-08-07 2021-08-07 2018 2021
## 4801 2018-09-11 2021-09-10 2018 2021
## 4802 2018-07-12 2021-07-11 2018 2021
## 4803 2018-11-07 2021-11-06 2018 2021
## 4804 2018-02-05 2021-02-04 2018 2021
## 4805 2018-05-14 2020-12-30 2018 2020
## 4806 2018-12-18 2021-12-17 2018 2021
## 4807 2018-07-16 2021-07-15 2018 2021
## 4808 2018-04-08 2021-03-24 2018 2021
## 4809 2018-09-10 2021-09-10 2018 2021
## 4810 2018-09-15 2021-09-15 2018 2021
## 4811 2018-07-22 2021-07-21 2018 2021
## 4812 2018-04-17 2021-04-16 2018 2021
## 4813 2018-07-24 2021-07-23 2018 2021
## 4814 2018-05-29 2021-05-28 2018 2021
## 4815 2018-02-11 2021-02-10 2018 2021
## 4816 2018-08-01 2021-07-31 2018 2021
## 4817 2018-09-09 2021-09-08 2018 2021
## 4818 2018-07-05 2021-07-05 2018 2021
## 4819 2018-07-30 2021-07-30 2018 2021
## 4820 2018-08-05 2021-08-04 2018 2021
## 4821 2018-08-01 2021-07-31 2018 2021
## 4822 2018-01-17 2021-01-17 2018 2021
## 4823 2018-07-29 2021-07-28 2018 2021
## 4824 2018-04-16 2021-04-15 2018 2021
## 4825 2018-08-11 2021-08-08 2018 2021
## 4826 2017-11-12 2020-11-11 2017 2020
## 4827 2018-06-27 2021-06-27 2018 2021
## 4828 2018-08-05 2021-08-05 2018 2021
## 4829 2018-07-20 2021-07-19 2018 2021
## 4830 2018-09-06 2021-09-05 2018 2021
## 4831 2018-02-28 2018-03-30 2018 2018
## 4832 2018-12-31 2021-12-28 2018 2021
## 4833 2018-09-05 2021-09-04 2018 2021
## 4834 2017-12-03 2020-12-02 2017 2020
## 4835 2018-09-08 2021-09-08 2018 2021
## 4836 2017-12-10 2020-12-09 2017 2020
## 4837 2018-01-03 2021-01-02 2018 2021
## 4838 2018-12-31 2021-12-30 2018 2021
## 4839 2018-10-10 2020-10-30 2018 2020
## 4840 2018-03-14 2021-03-13 2018 2021
## 4841 2018-07-25 2021-07-23 2018 2021
## 4842 2018-07-30 2021-07-29 2018 2021
## 4843 2018-09-19 2021-09-19 2018 2021
## 4844 2018-09-20 2021-09-19 2018 2021
## 4845 2018-08-23 2021-08-22 2018 2021
## 4846 2018-08-22 2021-08-21 2018 2021
## 4847 2018-04-30 2021-04-29 2018 2021
## 4848 2018-08-21 2021-08-20 2018 2021
## 4849 2018-08-19 2021-08-18 2018 2021
## 4850 2018-09-26 2021-09-25 2018 2021
## 4851 2018-09-13 2021-09-12 2018 2021
## 4852 2018-02-13 2021-02-12 2018 2021
## 4853 2018-03-18 2021-03-17 2018 2021
## 4854 2018-02-06 2021-02-05 2018 2021
## 4855 2018-09-18 2021-09-17 2018 2021
## 4856 2018-01-28 2021-01-27 2018 2021
## 4857 2017-11-16 2020-11-15 2017 2020
## 4858 2018-07-31 2021-07-31 2018 2021
## 4859 2018-04-25 2021-04-24 2018 2021
## 4860 2018-09-14 2020-09-13 2018 2020
## 4861 2018-08-31 2021-08-31 2018 2021
## 4862 2018-07-13 2021-07-12 2018 2021
## 4863 2018-09-04 2021-09-03 2018 2021
## 4864 2018-06-30 2020-06-29 2018 2020
## 4865 2018-06-07 2021-06-07 2018 2021
## 4866 2018-07-22 2021-07-19 2018 2021
## 4867 2018-02-18 2021-02-17 2018 2021
## 4868 2018-07-31 2021-07-31 2018 2021
## 4869 2018-09-25 2021-09-24 2018 2021
## 4870 2018-02-06 2021-02-06 2018 2021
## 4871 2017-11-30 2020-11-30 2017 2020
## 4872 2018-12-27 2019-09-29 2018 2019
## 4873 2018-09-21 2021-09-20 2018 2021
## 4874 2017-11-05 2020-11-04 2017 2020
## 4875 2018-09-02 2021-09-01 2018 2021
## 4876 2017-11-27 2020-11-26 2017 2020
## 4877 2018-08-17 2021-08-16 2018 2021
## 4878 2018-07-25 2021-07-25 2018 2021
## 4879 2018-09-15 2021-09-14 2018 2021
## 4880 2017-11-27 2020-11-26 2017 2020
## 4881 2018-08-19 2020-08-18 2018 2020
## 4882 2018-09-27 2021-09-20 2018 2021
## 4883 2018-09-14 2021-09-13 2018 2021
## 4884 2018-01-18 2021-01-17 2018 2021
## 4885 2018-08-31 2021-08-30 2018 2021
## 4886 2018-09-13 2021-09-12 2018 2021
## 4887 2018-02-18 2021-02-17 2018 2021
## 4888 2018-09-02 2021-09-01 2018 2021
## 4889 2018-07-30 2021-07-30 2018 2021
## 4890 2018-11-08 2021-11-07 2018 2021
## 4891 2018-08-29 2021-07-29 2018 2021
## 4892 2018-07-18 2021-07-18 2018 2021
## 4893 2018-09-17 2021-09-17 2018 2021
## 4894 2018-08-31 2021-08-31 2018 2021
## 4895 2018-09-30 2021-09-29 2018 2021
## 4896 2018-08-10 2021-08-10 2018 2021
## 4897 2018-08-14 2021-08-13 2018 2021
## 4898 2018-06-17 2021-06-16 2018 2021
## 4899 2017-10-15 2020-10-15 2017 2020
## 4900 2018-08-25 2021-08-24 2018 2021
## 4901 2018-01-25 2021-01-25 2018 2021
## 4902 2018-07-23 2021-07-22 2018 2021
## 4903 2018-09-30 2021-09-29 2018 2021
## 4904 2018-08-17 2021-08-17 2018 2021
## 4905 2018-08-08 2021-08-07 2018 2021
## 4906 2018-09-04 2021-09-03 2018 2021
## 4907 2018-09-10 2021-09-08 2018 2021
## 4908 2018-06-03 2021-06-03 2018 2021
## 4909 2018-05-27 2021-05-26 2018 2021
## 4910 2018-09-13 2021-09-13 2018 2021
## 4911 2018-06-14 2021-06-13 2018 2021
## 4912 2018-02-25 2021-02-24 2018 2021
## 4913 2018-01-28 2021-01-27 2018 2021
## 4914 2018-02-06 2020-03-01 2018 2020
## 4915 2018-02-25 2021-02-24 2018 2021
## 4916 2018-07-03 2021-07-02 2018 2021
## 4917 2018-03-15 2021-03-14 2018 2021
## 4918 2018-02-22 2021-02-22 2018 2021
## 4919 2018-09-29 2021-09-29 2018 2021
## 4920 2018-09-25 2021-09-24 2018 2021
## 4921 2018-08-27 2021-08-26 2018 2021
## 4922 2018-06-19 2021-06-18 2018 2021
## 4923 2017-11-19 2020-11-18 2017 2020
## 4924 2018-06-27 2021-06-26 2018 2021
## 4925 2018-09-13 2021-09-12 2018 2021
## 4926 2018-09-06 2021-09-05 2018 2021
## 4927 2018-06-30 2020-06-29 2018 2020
## 4928 2018-09-12 2021-09-10 2018 2021
## 4929 2018-09-22 2021-09-21 2018 2021
## 4930 2018-08-31 2021-08-30 2018 2021
## 4931 2018-08-31 2021-08-30 2018 2021
## 4932 2018-08-11 2021-08-10 2018 2021
## 4933 2018-02-20 2021-02-19 2018 2021
## 4934 2018-09-14 2021-09-13 2018 2021
## 4935 2018-05-22 2021-05-21 2018 2021
## 4936 2018-03-18 2021-03-18 2018 2021
## 4937 2018-09-09 2021-09-09 2018 2021
## 4938 2018-09-23 2021-09-22 2018 2021
## 4939 2018-04-25 2019-08-14 2018 2019
## 4940 2017-09-29 2020-09-29 2017 2020
## 4941 2017-10-04 2020-09-10 2017 2020
## 4942 2018-09-30 2021-09-29 2018 2021
## 4943 2019-01-14 2022-01-13 2019 2022
## 4944 2018-09-01 2021-08-31 2018 2021
## 4945 2018-08-05 2021-08-04 2018 2021
## 4946 2018-09-09 2021-09-08 2018 2021
## 4947 2018-09-22 2021-09-22 2018 2021
## 4948 2018-09-11 2021-09-10 2018 2021
## 4949 2018-07-29 2021-07-28 2018 2021
## 4950 2018-05-04 2021-05-01 2018 2021
## 4951 2018-06-06 2021-06-05 2018 2021
## 4952 2018-09-04 2021-09-03 2018 2021
## 4953 2018-05-03 2021-05-02 2018 2021
## 4954 2018-03-21 2021-03-20 2018 2021
## 4955 2018-06-14 2021-06-14 2018 2021
## 4956 2018-09-13 2021-09-13 2018 2021
## 4957 2018-12-31 2021-12-31 2018 2021
## 4958 2018-09-06 2021-09-06 2018 2021
## 4959 2018-08-10 2021-08-10 2018 2021
## 4960 2018-03-08 2021-03-07 2018 2021
## 4961 2018-07-01 2021-06-30 2018 2021
## 4962 2018-01-19 2021-01-18 2018 2021
## 4963 2018-01-07 2021-01-06 2018 2021
## 4964 2018-09-07 2021-09-07 2018 2021
## 4965 2018-09-29 2020-09-28 2018 2020
## 4966 2018-05-10 2021-05-09 2018 2021
## 4967 2018-01-14 2021-01-13 2018 2021
## 4968 2018-03-12 2021-03-11 2018 2021
## 4969 2018-02-17 2021-02-16 2018 2021
## 4970 2018-06-11 2020-09-18 2018 2020
## 4971 2018-12-21 2021-12-20 2018 2021
## 4972 2018-09-02 2021-09-01 2018 2021
## 4973 2018-06-30 2019-06-29 2018 2019
## 4974 2018-06-14 2021-06-14 2018 2021
## 4975 2017-11-28 2020-11-27 2017 2020
## 4976 2018-02-04 2021-01-30 2018 2021
## 4977 2018-06-14 2021-06-14 2018 2021
## 4978 2018-09-07 2021-09-07 2018 2021
## 4979 2017-10-14 2020-10-14 2017 2020
## 4980 2018-08-30 2021-08-29 2018 2021
## 4981 2018-09-21 2021-09-20 2018 2021
## 4982 2018-07-28 2021-07-27 2018 2021
## 4983 2018-07-26 2021-07-23 2018 2021
## 4984 2017-10-22 2020-10-22 2017 2020
## 4985 2018-09-11 2021-09-11 2018 2021
## 4986 2018-04-26 2021-04-25 2018 2021
## 4987 2019-03-15 2022-03-14 2019 2022
## 4988 2018-06-18 2021-06-17 2018 2021
## 4989 2018-02-17 2021-02-16 2018 2021
## 4990 2018-08-31 2021-08-30 2018 2021
## 4991 2018-02-25 2021-02-24 2018 2021
## 4992 2018-09-18 2021-09-18 2018 2021
## 4993 2018-02-15 2021-02-14 2018 2021
## 4994 2018-05-14 2021-05-13 2018 2021
## 4995 2018-07-13 2021-07-12 2018 2021
## 4996 2018-09-10 2021-09-09 2018 2021
## 4997 2018-01-31 2021-01-30 2018 2021
## 4998 2018-09-08 2021-09-07 2018 2021
## 4999 2018-04-21 2021-04-20 2018 2021
## 5000 2018-09-19 2021-09-19 2018 2021
## 5001 2018-09-30 2021-09-29 2018 2021
## 5002 2018-07-31 2021-07-29 2018 2021
## 5003 2018-09-14 2021-09-14 2018 2021
## 5004 2018-03-18 2021-03-17 2018 2021
## 5005 2017-11-30 2020-11-29 2017 2020
## 5006 2018-09-15 2021-09-14 2018 2021
## 5007 2018-08-27 2021-08-27 2018 2021
## 5008 2017-12-10 2020-03-19 2017 2020
## 5009 2018-09-12 2021-09-11 2018 2021
## 5010 2018-09-18 2021-09-18 2018 2021
## 5011 2017-09-27 2020-09-27 2017 2020
## 5012 2018-01-30 2021-01-30 2018 2021
## 5013 2018-02-11 2021-02-10 2018 2021
## 5014 2018-08-27 2021-08-26 2018 2021
## 5015 2018-04-27 2021-04-26 2018 2021
## 5016 2017-12-31 2020-08-26 2017 2020
## 5017 2019-01-01 2021-12-31 2019 2021
## 5018 2018-03-18 2021-03-18 2018 2021
## 5019 2018-09-12 2021-09-12 2018 2021
## 5020 2018-02-15 2021-02-14 2018 2021
## 5021 2018-08-27 2021-08-26 2018 2021
## 5022 2018-08-25 2021-08-24 2018 2021
## 5023 2018-08-29 2021-08-29 2018 2021
## 5024 2018-04-09 2020-08-31 2018 2020
## 5025 2018-07-17 2021-07-16 2018 2021
## 5026 2018-04-29 2021-04-28 2018 2021
## 5027 2018-08-31 2021-08-30 2018 2021
## 5028 2017-12-18 2020-12-18 2017 2020
## 5029 2018-08-03 2021-08-03 2018 2021
## 5030 2018-09-01 2021-09-01 2018 2021
## 5031 2018-07-15 2021-07-14 2018 2021
## 5032 2018-09-09 2021-09-08 2018 2021
## 5033 2018-08-13 2021-08-12 2018 2021
## 5034 2018-11-21 2021-11-20 2018 2021
## 5035 2018-08-26 2021-08-25 2018 2021
## 5036 2018-07-27 2021-07-26 2018 2021
## 5037 2018-06-14 2021-06-13 2018 2021
## 5038 2018-03-22 2021-03-21 2018 2021
## 5039 2018-08-09 2021-08-08 2018 2021
## 5040 2018-09-06 2021-09-05 2018 2021
## 5041 2018-02-04 2021-02-03 2018 2021
## 5042 2018-08-03 2021-08-02 2018 2021
## 5043 2018-07-08 2021-07-08 2018 2021
## 5044 2018-09-11 2021-09-10 2018 2021
## 5045 2018-09-30 2021-09-29 2018 2021
## 5046 2018-09-17 2021-09-17 2018 2021
## 5047 2018-08-12 2021-08-11 2018 2021
## 5048 2018-03-31 2021-03-30 2018 2021
## 5049 2018-09-15 2021-09-15 2018 2021
## 5050 2018-09-14 2021-09-14 2018 2021
## 5051 2018-09-06 2021-09-05 2018 2021
## 5052 2017-12-03 2020-12-03 2017 2020
## 5053 2017-10-08 2020-10-07 2017 2020
## 5054 2018-04-13 2021-04-12 2018 2021
## 5055 2018-08-07 2021-08-06 2018 2021
## 5056 2018-07-12 2019-09-05 2018 2019
## 5057 2018-09-23 2021-09-23 2018 2021
## 5058 2018-08-11 2021-08-10 2018 2021
## 5059 2017-12-03 2020-12-02 2017 2020
## 5060 2017-12-18 2020-12-17 2017 2020
## 5061 2018-09-01 2021-08-31 2018 2021
## 5062 2018-10-03 2021-10-03 2018 2021
## 5063 2018-01-08 2021-01-08 2018 2021
## 5064 2017-11-07 2020-11-06 2017 2020
## 5065 2018-09-09 2019-11-04 2018 2019
## 5066 2018-01-02 2020-12-29 2018 2020
## 5067 2018-08-23 2021-08-20 2018 2021
## 5068 2018-08-31 2021-08-30 2018 2021
## 5069 2018-07-01 2021-06-30 2018 2021
## 5070 2018-03-04 2021-03-03 2018 2021
## 5071 2018-08-17 2021-08-16 2018 2021
## 5072 2018-01-24 2021-01-23 2018 2021
## 5073 2018-09-07 2021-09-06 2018 2021
## 5074 2018-09-30 2021-09-29 2018 2021
## 5075 2018-09-04 2021-09-03 2018 2021
## 5076 2018-09-26 2021-09-25 2018 2021
## 5077 2018-04-10 2021-04-09 2018 2021
## 5078 2018-02-25 2021-02-24 2018 2021
## 5079 2018-07-29 2021-07-28 2018 2021
## 5080 2018-09-01 2021-08-31 2018 2021
## 5081 2018-01-28 2021-01-27 2018 2021
## 5082 2018-03-18 2021-03-17 2018 2021
## 5083 2018-08-23 2021-08-22 2018 2021
## 5084 2018-09-18 2021-09-17 2018 2021
## 5085 2018-06-14 2021-06-14 2018 2021
## 5086 2018-08-14 2021-08-14 2018 2021
## 5087 2018-09-03 2021-09-03 2018 2021
## 5088 2017-11-05 2020-09-29 2017 2020
## 5089 2018-08-31 2021-08-31 2018 2021
## 5090 2018-09-04 2021-09-03 2018 2021
## 5091 2018-08-09 2021-08-08 2018 2021
## 5092 2018-09-10 2021-09-09 2018 2021
## 5093 2018-03-12 2019-05-19 2018 2019
## 5094 2018-08-31 2021-08-30 2018 2021
## 5095 2018-08-30 2021-08-29 2018 2021
## 5096 2018-09-04 2021-09-03 2018 2021
## 5097 2018-05-01 2021-04-30 2018 2021
## 5098 2018-02-01 2021-01-31 2018 2021
## 5099 2018-09-23 2021-09-22 2018 2021
## 5100 2018-08-31 2019-08-30 2018 2019
## 5101 2018-09-17 2021-09-16 2018 2021
## 5102 2018-09-17 2021-09-16 2018 2021
## 5103 2018-09-13 2021-09-13 2018 2021
## 5104 2018-09-07 2021-09-07 2018 2021
## 5105 2018-08-23 2021-08-15 2018 2021
## 5106 2018-10-04 2021-10-04 2018 2021
## 5107 2018-08-01 2021-08-01 2018 2021
## 5108 2017-11-19 2020-11-18 2017 2020
## 5109 2018-07-31 2021-07-31 2018 2021
## 5110 2018-05-01 2021-04-30 2018 2021
## 5111 2018-09-06 2021-09-05 2018 2021
## 5112 2018-08-31 2021-08-30 2018 2021
## 5113 2017-11-08 2020-11-08 2017 2020
## 5114 2017-12-03 2020-12-02 2017 2020
## 5115 2018-08-05 2021-08-04 2018 2021
## 5116 2018-08-30 2021-08-30 2018 2021
## 5117 2018-10-17 2021-10-17 2018 2021
## 5118 2018-08-31 2021-08-31 2018 2021
## 5119 2017-11-26 2020-11-25 2017 2020
## 5120 2018-09-30 2021-09-29 2018 2021
## 5121 2018-02-28 2021-02-28 2018 2021
## 5122 2018-09-01 2021-08-31 2018 2021
## 5123 2017-10-10 2020-10-09 2017 2020
## 5124 2018-07-31 2021-07-30 2018 2021
## 5125 2018-08-05 2021-08-04 2018 2021
## 5126 2018-04-04 2021-04-04 2018 2021
## 5127 2018-08-23 2021-08-23 2018 2021
## 5128 2018-09-14 2021-09-13 2018 2021
## 5129 2018-09-16 2021-09-15 2018 2021
## 5130 2018-09-25 2021-09-24 2018 2021
## 5131 2018-09-07 2021-09-06 2018 2021
## 5132 2018-07-27 2021-07-26 2018 2021
## 5133 2018-09-06 2021-09-05 2018 2021
## 5134 2018-06-04 2021-06-03 2018 2021
## 5135 2018-09-09 2021-09-08 2018 2021
## 5136 2018-09-07 2021-09-07 2018 2021
## 5137 2018-06-24 2021-06-24 2018 2021
## 5138 2018-01-02 2021-01-01 2018 2021
## 5139 2018-08-12 2021-05-30 2018 2021
## 5140 2018-01-01 2020-12-31 2018 2020
## 5141 2018-05-25 2021-05-24 2018 2021
## 5142 2018-07-31 2021-07-30 2018 2021
## 5143 2018-06-30 2021-06-30 2018 2021
## 5144 2018-05-15 2021-05-13 2018 2021
## 5145 2018-04-15 2021-04-14 2018 2021
## 5146 2017-10-30 2020-10-29 2017 2020
## 5147 2018-07-15 2021-07-15 2018 2021
## 5148 2018-06-07 2021-06-06 2018 2021
## 5149 2018-07-05 2021-07-04 2018 2021
## 5150 2018-01-07 2021-01-06 2018 2021
## 5151 2018-07-26 2021-07-25 2018 2021
## 5152 2018-10-03 2021-10-02 2018 2021
## 5153 2018-09-03 2021-09-02 2018 2021
## 5154 2018-08-27 2021-08-26 2018 2021
## 5155 2018-08-31 2021-08-30 2018 2021
## 5156 2018-03-18 2021-03-17 2018 2021
## 5157 2018-04-18 2021-04-18 2018 2021
## 5158 2018-09-01 2021-08-31 2018 2021
## 5159 2018-01-22 2021-01-22 2018 2021
## 5160 2018-01-03 2021-01-02 2018 2021
## 5161 2018-02-28 2019-02-27 2018 2019
## 5162 2018-07-25 2021-07-24 2018 2021
## 5163 2018-08-19 2021-08-18 2018 2021
## 5164 2018-06-03 2020-09-22 2018 2020
## 5165 2017-12-31 2020-12-30 2017 2020
## 5166 2019-02-24 2021-11-23 2019 2021
## 5167 2018-09-21 2021-09-21 2018 2021
## 5168 2018-08-14 2021-08-13 2018 2021
## 5169 2018-09-13 2021-09-12 2018 2021
## 5170 2019-02-13 2022-02-12 2019 2022
## 5171 2018-04-19 2021-04-16 2018 2021
## 5172 2018-08-20 2021-08-19 2018 2021
## 5173 2018-08-31 2021-08-30 2018 2021
## 5174 2018-05-15 2021-05-14 2018 2021
## 5175 2017-12-31 2020-12-30 2017 2020
## 5176 2018-09-13 2021-09-12 2018 2021
## 5177 2018-06-14 2021-06-14 2018 2021
## 5178 2018-05-14 2021-05-13 2018 2021
## 5179 2018-05-09 2021-05-07 2018 2021
## 5180 2018-08-31 2021-08-30 2018 2021
## 5181 2018-08-31 2021-08-31 2018 2021
## 5182 2018-07-31 2021-07-30 2018 2021
## 5183 2018-08-18 2021-08-17 2018 2021
## 5184 2018-09-08 2021-09-07 2018 2021
## 5185 2018-07-15 2021-07-14 2018 2021
## 5186 2018-07-09 2021-07-08 2018 2021
## 5187 2018-08-31 2019-08-30 2018 2019
## 5188 2018-07-20 2021-07-20 2018 2021
## 5189 2018-07-31 2021-07-30 2018 2021
## 5190 2018-03-12 2021-03-11 2018 2021
## 5191 2018-11-28 2021-11-26 2018 2021
## 5192 2018-03-19 2021-03-18 2018 2021
## 5193 2018-09-09 2021-09-08 2018 2021
## 5194 2018-09-06 2021-09-05 2018 2021
## 5195 2018-02-27 2021-02-26 2018 2021
## 5196 2018-09-16 2021-09-15 2018 2021
## 5197 2018-07-26 2021-07-25 2018 2021
## 5198 2018-09-06 2021-09-06 2018 2021
## 5199 2018-04-22 2021-04-21 2018 2021
## 5200 2018-08-31 2021-08-30 2018 2021
## 5201 2018-09-17 2021-09-16 2018 2021
## 5202 2018-09-21 2021-09-20 2018 2021
## 5203 2018-06-14 2021-06-14 2018 2021
## 5204 2018-08-28 2021-08-27 2018 2021
## 5205 2018-07-05 2021-07-04 2018 2021
## 5206 2018-06-14 2021-06-13 2018 2021
## 5207 2018-03-21 2021-03-21 2018 2021
## 5208 2018-09-05 2021-09-05 2018 2021
## 5209 2017-10-14 2020-10-11 2017 2020
## 5210 2018-07-21 2021-07-21 2018 2021
## 5211 2017-10-29 2020-10-29 2017 2020
## 5212 2018-09-07 2021-09-06 2018 2021
## 5213 2017-11-09 2020-11-08 2017 2020
## 5214 2017-12-01 2020-11-28 2017 2020
## 5215 2018-09-15 2020-06-14 2018 2020
## 5216 2018-07-26 2021-07-19 2018 2021
## 5217 2018-06-21 2021-06-20 2018 2021
## 5218 2018-09-14 2021-09-13 2018 2021
## 5219 2018-09-14 2021-09-14 2018 2021
## 5220 2018-08-31 2021-08-30 2018 2021
## 5221 2018-06-14 2021-06-14 2018 2021
## 5222 2018-08-27 2021-08-26 2018 2021
## 5223 2018-07-31 2021-07-30 2018 2021
## 5224 2017-09-26 2018-10-14 2017 2018
## 5225 2017-12-31 2020-12-30 2017 2020
## 5226 2018-01-30 2021-01-28 2018 2021
## 5227 2018-06-07 2019-11-19 2018 2019
## 5228 2018-10-01 2021-06-29 2018 2021
## 5229 2018-07-23 2021-07-22 2018 2021
## 5230 2017-11-17 2020-11-16 2017 2020
## 5231 2018-06-11 2021-06-10 2018 2021
## 5232 2018-04-14 2021-04-13 2018 2021
## 5233 2017-12-26 2020-12-25 2017 2020
## 5234 2018-02-04 2021-02-03 2018 2021
## 5235 2018-09-09 2021-09-08 2018 2021
## 5236 2017-10-30 2019-04-24 2017 2019
## 5237 2018-05-31 2020-07-31 2018 2020
## 5238 2018-08-31 2020-08-31 2018 2020
## 5239 2018-06-22 2021-06-22 2018 2021
## 5240 2018-08-13 2021-08-12 2018 2021
## 5241 2018-09-18 2021-09-18 2018 2021
## 5242 2018-08-26 2021-08-25 2018 2021
## 5243 2018-09-03 2021-09-03 2018 2021
## 5244 2018-08-05 2021-08-05 2018 2021
## 5245 2017-11-20 2020-11-19 2017 2020
## 5246 2018-11-08 2021-11-07 2018 2021
## 5247 2018-05-06 2021-05-05 2018 2021
## 5248 2018-02-27 2020-02-10 2018 2020
## 5249 2018-08-31 2021-08-31 2018 2021
## 5250 2018-10-07 2021-10-06 2018 2021
## 5251 2018-09-18 2021-09-17 2018 2021
## 5252 2018-07-03 2021-07-03 2018 2021
## 5253 2018-05-27 2021-05-27 2018 2021
## 5254 2018-07-26 2021-07-07 2018 2021
## 5255 2018-01-18 2021-01-17 2018 2021
## 5256 2018-02-11 2019-06-07 2018 2019
## 5257 2018-09-16 2021-09-15 2018 2021
## 5258 2018-05-10 2021-05-09 2018 2021
## 5259 2018-03-25 2020-08-30 2018 2020
## 5260 2018-08-14 2021-08-14 2018 2021
## 5261 2018-09-13 2021-09-13 2018 2021
## 5262 2018-02-09 2021-02-08 2018 2021
## 5263 2018-08-31 2021-08-30 2018 2021
## 5264 2018-07-01 2021-06-30 2018 2021
## 5265 2018-09-08 2021-09-07 2018 2021
## 5266 2018-11-23 2021-11-22 2018 2021
## 5267 2018-12-26 2021-12-25 2018 2021
## 5268 2018-08-31 2021-08-30 2018 2021
## 5269 2018-03-06 2018-12-30 2018 2018
## 5270 2018-07-20 2021-07-20 2018 2021
## 5271 2018-09-11 2021-09-11 2018 2021
## 5272 2018-09-03 2021-09-02 2018 2021
## 5273 2018-08-10 2021-08-09 2018 2021
## 5274 2018-11-28 2021-11-27 2018 2021
## 5275 2017-12-31 2019-01-30 2017 2019
## 5276 2018-04-12 2021-04-11 2018 2021
## 5277 2018-02-28 2021-02-27 2018 2021
## 5278 2018-10-14 2021-10-13 2018 2021
## 5279 2018-08-11 2021-08-10 2018 2021
## 5280 2018-09-20 2021-09-19 2018 2021
## 5281 2018-08-05 2021-08-05 2018 2021
## 5282 2018-09-10 2021-09-10 2018 2021
## 5283 2018-02-21 2021-02-20 2018 2021
## 5284 2018-08-27 2021-08-26 2018 2021
## 5285 2018-05-30 2021-05-29 2018 2021
## 5286 2017-12-24 2020-12-23 2017 2020
## 5287 2018-09-17 2021-09-17 2018 2021
## 5288 2018-09-27 2021-09-26 2018 2021
## 5289 2018-08-27 2021-08-26 2018 2021
## 5290 2018-07-22 2020-06-20 2018 2020
## 5291 2019-03-16 2022-03-15 2019 2022
## 5292 2018-02-03 2021-02-03 2018 2021
## 5293 2018-04-01 2021-04-01 2018 2021
## 5294 2018-06-08 2021-06-07 2018 2021
## 5295 2018-10-31 2021-10-30 2018 2021
## 5296 2018-07-05 2021-07-04 2018 2021
## 5297 2018-09-13 2021-09-12 2018 2021
## 5298 2018-07-26 2021-07-25 2018 2021
## 5299 2018-05-23 2021-05-23 2018 2021
## 5300 2017-11-29 2020-11-28 2017 2020
## 5301 2018-08-02 2021-08-01 2018 2021
## 5302 2018-09-30 2021-09-29 2018 2021
## 5303 2019-01-11 2022-01-10 2019 2022
## 5304 2018-08-31 2021-08-30 2018 2021
## 5305 2018-04-29 2021-04-28 2018 2021
## 5306 2018-09-09 2021-09-08 2018 2021
## 5307 2018-08-04 2021-08-03 2018 2021
## 5308 2018-08-11 2021-08-10 2018 2021
## 5309 2018-09-11 2021-09-11 2018 2021
## 5310 2018-09-07 2021-09-06 2018 2021
## 5311 2018-08-30 2021-08-30 2018 2021
## 5312 2018-01-22 2021-01-19 2018 2021
## 5313 2018-08-23 2021-08-23 2018 2021
## 5314 2018-09-25 2021-09-24 2018 2021
## 5315 2018-09-06 2021-09-05 2018 2021
## 5316 2018-08-21 2021-08-20 2018 2021
## 5317 2018-06-30 2021-06-29 2018 2021
## 5318 2017-11-25 2020-11-24 2017 2020
## 5319 2018-03-25 2021-03-25 2018 2021
## 5320 2018-04-19 2021-04-19 2018 2021
## 5321 2019-01-15 2022-01-14 2019 2022
## 5322 2018-07-24 2021-07-24 2018 2021
## 5323 2018-01-10 2021-01-09 2018 2021
## 5324 2018-07-22 2021-07-22 2018 2021
## 5325 2018-05-13 2021-05-12 2018 2021
## 5326 2018-09-07 2021-09-06 2018 2021
## 5327 2018-08-16 2021-08-15 2018 2021
## 5328 2018-08-16 2021-08-15 2018 2021
## 5329 2018-09-13 2020-09-11 2018 2020
## 5330 2018-09-04 2021-09-03 2018 2021
## 5331 2018-09-15 2021-09-14 2018 2021
## 5332 2018-01-28 2021-01-27 2018 2021
## 5333 2018-08-18 2021-08-17 2018 2021
## 5334 2018-09-06 2021-09-05 2018 2021
## 5335 2018-06-24 2021-06-23 2018 2021
## 5336 2018-09-19 2021-09-18 2018 2021
## 5337 2018-09-07 2021-09-06 2018 2021
## 5338 2018-08-31 2021-08-31 2018 2021
## 5339 2018-04-19 2021-04-18 2018 2021
## 5340 2018-07-28 2021-07-28 2018 2021
## 5341 2018-12-23 2021-12-23 2018 2021
## 5342 2018-08-09 2021-08-08 2018 2021
## 5343 2017-10-29 2020-10-28 2017 2020
## 5344 2018-09-15 2021-09-15 2018 2021
## 5345 2018-02-06 2021-02-06 2018 2021
## 5346 2018-02-14 2021-02-13 2018 2021
## 5347 2018-05-06 2021-05-05 2018 2021
## 5348 2018-08-19 2021-08-18 2018 2021
## 5349 2018-09-12 2021-09-11 2018 2021
## 5350 2018-02-06 2021-02-06 2018 2021
## 5351 2018-09-23 2021-09-22 2018 2021
## 5352 2018-09-25 2021-09-25 2018 2021
## 5353 2018-08-19 2021-08-18 2018 2021
## 5354 2018-08-31 2019-08-30 2018 2019
## 5355 2018-06-05 2021-06-04 2018 2021
## 5356 2018-08-31 2021-08-30 2018 2021
## 5357 2018-08-12 2021-08-11 2018 2021
## 5358 2018-09-14 2021-09-13 2018 2021
## 5359 2018-09-16 2021-09-15 2018 2021
## 5360 2018-09-17 2021-09-17 2018 2021
## 5361 2017-10-01 2020-09-29 2017 2020
## 5362 2018-06-09 2021-06-08 2018 2021
## 5363 2018-09-19 2021-09-19 2018 2021
## 5364 2018-09-06 2021-09-06 2018 2021
## 5365 2018-05-13 2021-05-12 2018 2021
## 5366 2018-06-14 2021-06-14 2018 2021
## 5367 2017-11-06 2020-08-29 2017 2020
## 5368 2018-02-27 2021-02-26 2018 2021
## 5369 2018-08-25 2021-08-24 2018 2021
## 5370 2018-08-05 2020-08-04 2018 2020
## 5371 2018-08-19 2021-08-18 2018 2021
## 5372 2018-08-28 2021-08-28 2018 2021
## 5373 2018-07-25 2021-07-24 2018 2021
## 5374 2018-09-30 2021-09-29 2018 2021
## 5375 2018-07-13 2021-07-12 2018 2021
## 5376 2018-06-30 2021-06-29 2018 2021
## 5377 2018-02-08 2021-02-07 2018 2021
## 5378 2018-05-28 2021-05-27 2018 2021
## 5379 2018-04-04 2021-04-03 2018 2021
## 5380 2018-05-06 2021-05-05 2018 2021
## 5381 2017-10-18 2020-10-18 2017 2020
## 5382 2018-09-11 2021-09-10 2018 2021
## 5383 2018-07-31 2020-08-30 2018 2020
## 5384 2018-07-01 2021-06-30 2018 2021
## 5385 2018-09-13 2021-09-12 2018 2021
## 5386 2018-05-01 2021-04-30 2018 2021
## 5387 2018-08-05 2020-09-06 2018 2020
## 5388 2018-08-27 2021-08-26 2018 2021
## 5389 2017-12-12 2020-12-11 2017 2020
## 5390 2018-03-31 2021-03-30 2018 2021
## 5391 2018-08-31 2021-08-30 2018 2021
## 5392 2018-03-08 2021-03-07 2018 2021
## 5393 2018-06-28 2019-07-23 2018 2019
## 5394 2017-12-27 2020-12-27 2017 2020
## 5395 2018-03-16 2021-03-15 2018 2021
## 5396 2018-09-04 2021-09-03 2018 2021
## 5397 2018-08-14 2021-08-14 2018 2021
## 5398 2018-06-14 2021-06-14 2018 2021
## 5399 2018-09-20 2021-09-20 2018 2021
## 5400 2018-08-31 2021-08-31 2018 2021
## 5401 2018-09-11 2021-09-10 2018 2021
## 5402 2018-06-07 2020-05-05 2018 2020
## 5403 2018-09-16 2021-09-16 2018 2021
## 5404 2018-08-31 2021-08-30 2018 2021
## 5405 2018-06-14 2021-06-14 2018 2021
## 5406 2018-08-31 2021-08-30 2018 2021
## 5407 2018-02-14 2020-02-13 2018 2020
## 5408 2018-08-09 2021-08-06 2018 2021
## 5409 2018-08-21 2021-08-20 2018 2021
## 5410 2017-10-22 2019-09-10 2017 2019
## 5411 2018-09-07 2021-09-07 2018 2021
## 5412 2018-06-14 2021-06-14 2018 2021
## 5413 2018-05-29 2021-05-29 2018 2021
## 5414 2018-08-31 2021-08-30 2018 2021
## 5415 2018-09-10 2021-09-09 2018 2021
## 5416 2017-10-11 2020-10-11 2017 2020
## 5417 2018-08-05 2021-08-04 2018 2021
## 5418 2018-09-09 2021-09-09 2018 2021
## 5419 2018-08-25 2021-08-24 2018 2021
## 5420 2017-12-21 2020-12-21 2017 2020
## 5421 2018-05-10 2021-05-10 2018 2021
## 5422 2018-04-18 2021-04-18 2018 2021
## 5423 2017-11-07 2020-11-07 2017 2020
## 5424 2018-08-01 2021-08-01 2018 2021
## 5425 2018-10-30 2021-10-29 2018 2021
## 5426 2018-09-30 2021-09-29 2018 2021
## 5427 2018-09-04 2020-09-13 2018 2020
## 5428 2018-09-06 2021-09-05 2018 2021
## 5429 2018-09-11 2021-09-10 2018 2021
## 5430 2018-07-31 2020-05-26 2018 2020
## 5431 2018-09-08 2021-09-08 2018 2021
## 5432 2018-05-01 2021-04-30 2018 2021
## 5433 2018-07-31 2021-07-30 2018 2021
## 5434 2018-10-12 2021-10-11 2018 2021
## 5435 2018-07-31 2021-07-30 2018 2021
## 5436 2017-12-18 2018-12-17 2017 2018
## 5437 2017-11-07 2020-11-06 2017 2020
## 5438 2018-08-20 2021-08-19 2018 2021
## 5439 2018-06-22 2021-06-21 2018 2021
## 5440 2018-08-06 2021-08-05 2018 2021
## 5441 2018-07-12 2021-07-11 2018 2021
## 5442 2018-08-19 2021-08-18 2018 2021
## 5443 2018-08-22 2021-08-21 2018 2021
## 5444 2018-01-21 2021-01-20 2018 2021
## 5445 2018-06-17 2021-06-16 2018 2021
## 5446 2018-09-10 2021-09-09 2018 2021
## 5447 2018-08-31 2021-08-30 2018 2021
## 5448 2018-09-19 2021-09-18 2018 2021
## 5449 2018-10-22 2021-10-22 2018 2021
## 5450 2018-02-03 2021-02-03 2018 2021
## 5451 2018-06-03 2021-06-02 2018 2021
## 5452 2018-09-02 2021-09-01 2018 2021
## 5453 2017-12-09 2020-12-04 2017 2020
## 5454 2018-05-02 2020-10-13 2018 2020
## 5455 2018-09-08 2021-09-07 2018 2021
## 5456 2018-07-31 2021-07-31 2018 2021
## 5457 2018-03-31 2021-03-30 2018 2021
## 5458 2018-07-16 2021-07-16 2018 2021
## 5459 2018-08-14 2021-08-14 2018 2021
## 5460 2018-08-22 2021-08-21 2018 2021
## 5461 2018-06-04 2021-06-03 2018 2021
## 5462 2018-06-30 2021-06-30 2018 2021
## 5463 2018-08-03 2021-08-02 2018 2021
## 5464 2018-04-15 2021-04-14 2018 2021
## 5465 2018-08-01 2021-07-31 2018 2021
## 5466 2018-08-20 2021-08-19 2018 2021
## 5467 2018-08-06 2021-08-05 2018 2021
## 5468 2018-09-04 2021-09-03 2018 2021
## 5469 2018-09-04 2021-09-03 2018 2021
## 5470 2018-04-15 2020-04-14 2018 2020
## 5471 2017-11-14 2020-11-14 2017 2020
## 5472 2018-08-08 2021-08-07 2018 2021
## 5473 2018-01-18 2021-01-14 2018 2021
## 5474 2018-08-09 2021-08-06 2018 2021
## 5475 2018-09-05 2021-09-05 2018 2021
## 5476 2018-06-15 2021-06-14 2018 2021
## 5477 2018-05-28 2021-05-27 2018 2021
## 5478 2018-09-30 2020-09-29 2018 2020
## 5479 2018-02-27 2021-02-27 2018 2021
## 5480 2017-10-15 2020-10-14 2017 2020
## 5481 2018-09-16 2021-09-15 2018 2021
## 5482 2018-09-19 2021-09-19 2018 2021
## 5483 2018-09-18 2021-09-18 2018 2021
## 5484 2018-02-18 2021-02-17 2018 2021
## 5485 2018-09-23 2021-09-22 2018 2021
## 5486 2018-03-18 2021-03-17 2018 2021
## 5487 2019-01-01 2021-12-31 2019 2021
## 5488 2018-04-08 2021-04-07 2018 2021
## 5489 2018-06-09 2021-06-08 2018 2021
## 5490 2017-12-07 2020-12-06 2017 2020
## 5491 2018-01-31 2021-01-30 2018 2021
## 5492 2018-06-30 2021-06-29 2018 2021
## 5493 2018-08-27 2021-08-26 2018 2021
## 5494 2018-07-01 2021-06-30 2018 2021
## 5495 2018-09-11 2021-09-10 2018 2021
## 5496 2018-12-01 2021-11-30 2018 2021
## 5497 2018-08-12 2021-08-11 2018 2021
## 5498 2018-08-31 2021-08-30 2018 2021
## 5499 2018-07-25 2021-07-24 2018 2021
## 5500 2018-05-20 2021-05-20 2018 2021
## 5501 2018-09-16 2021-09-15 2018 2021
## 5502 2018-05-22 2021-05-21 2018 2021
## 5503 2018-04-26 2021-04-25 2018 2021
## 5504 2018-06-14 2021-06-14 2018 2021
## 5505 2018-09-11 2021-09-10 2018 2021
## 5506 2018-08-24 2021-08-24 2018 2021
## 5507 2018-11-05 2021-11-04 2018 2021
## 5508 2018-07-27 2021-07-27 2018 2021
## 5509 2018-08-24 2021-08-24 2018 2021
## 5510 2018-08-31 2021-08-31 2018 2021
## 5511 2018-07-01 2021-06-30 2018 2021
## 5512 2018-09-01 2019-09-29 2018 2019
## 5513 2018-09-10 2021-09-10 2018 2021
## 5514 2018-03-18 2021-03-15 2018 2021
## 5515 2018-09-08 2021-09-08 2018 2021
## 5516 2019-01-09 2022-01-08 2019 2022
## 5517 2018-07-11 2021-07-11 2018 2021
## 5518 2018-05-06 2021-05-05 2018 2021
## 5519 2018-08-31 2021-08-31 2018 2021
## 5520 2017-10-05 2020-10-05 2017 2020
## 5521 2018-06-30 2021-06-29 2018 2021
## 5522 2018-08-05 2021-08-05 2018 2021
## 5523 2018-03-11 2021-03-10 2018 2021
## 5524 2018-03-29 2021-03-29 2018 2021
## 5525 2018-09-15 2021-09-14 2018 2021
## 5526 2018-04-05 2021-04-04 2018 2021
## 5527 2019-02-02 2022-02-01 2019 2022
## 5528 2018-02-14 2021-02-13 2018 2021
## 5529 2018-04-29 2021-04-29 2018 2021
## 5530 2018-08-28 2021-08-28 2018 2021
## 5531 2018-02-07 2021-02-06 2018 2021
## 5532 2018-08-16 2021-08-15 2018 2021
## 5533 2018-07-31 2021-07-30 2018 2021
## 5534 2018-09-21 2021-09-20 2018 2021
## 5535 2018-08-12 2021-08-11 2018 2021
## 5536 2018-07-30 2021-07-29 2018 2021
## 5537 2017-11-12 2020-11-12 2017 2020
## 5538 2018-07-31 2021-07-30 2018 2021
## 5539 2018-05-20 2021-05-19 2018 2021
## 5540 2018-01-21 2020-09-29 2018 2020
## 5541 2018-09-12 2021-09-12 2018 2021
## 5542 2018-03-27 2021-03-26 2018 2021
## 5543 2018-05-01 2021-04-30 2018 2021
## 5544 2018-08-22 2021-08-21 2018 2021
## 5545 2018-09-09 2021-09-09 2018 2021
## 5546 2018-09-12 2021-09-11 2018 2021
## 5547 2018-08-31 2021-08-31 2018 2021
## 5548 2018-04-02 2021-04-02 2018 2021
## 5549 2017-12-30 2020-12-29 2017 2020
## 5550 2018-01-09 2021-01-09 2018 2021
## 5551 2018-07-29 2021-07-28 2018 2021
## 5552 2018-02-04 2021-02-04 2018 2021
## 5553 2018-03-30 2021-03-29 2018 2021
## 5554 2018-09-29 2021-09-29 2018 2021
## 5555 2019-02-24 2022-02-23 2019 2022
## 5556 2018-08-28 2021-08-28 2018 2021
## 5557 2018-08-17 2021-08-17 2018 2021
## 5558 2018-01-06 2021-01-03 2018 2021
## 5559 2018-04-08 2021-04-07 2018 2021
## 5560 2018-08-01 2021-07-31 2018 2021
## 5561 2018-09-04 2021-09-04 2018 2021
## 5562 2018-08-06 2021-08-05 2018 2021
## 5563 2018-04-01 2021-03-31 2018 2021
## 5564 2018-09-15 2021-09-14 2018 2021
## 5565 2018-07-21 2021-07-20 2018 2021
## 5566 2018-01-05 2021-01-02 2018 2021
## 5567 2018-01-15 2021-01-14 2018 2021
## 5568 2018-03-19 2021-03-19 2018 2021
## 5569 2018-09-18 2021-09-17 2018 2021
## 5570 2018-07-31 2021-07-30 2018 2021
## 5571 2018-08-28 2021-08-28 2018 2021
## 5572 2018-07-02 2019-09-28 2018 2019
## 5573 2018-06-24 2021-06-23 2018 2021
## 5574 2018-08-09 2021-08-09 2018 2021
## 5575 2018-08-26 2021-08-25 2018 2021
## 5576 2018-08-31 2021-08-30 2018 2021
## 5577 2018-09-16 2021-09-15 2018 2021
## 5578 2018-03-07 2020-06-10 2018 2020
## 5579 2018-07-31 2021-07-31 2018 2021
## 5580 2018-09-25 2021-09-24 2018 2021
## 5581 2018-08-08 2021-08-07 2018 2021
## 5582 2018-07-22 2021-07-21 2018 2021
## 5583 2018-06-11 2021-06-10 2018 2021
## 5584 2018-09-19 2021-09-19 2018 2021
## 5585 2017-12-03 2020-12-03 2017 2020
## 5586 2018-02-18 2021-02-17 2018 2021
## 5587 2018-08-14 2021-08-13 2018 2021
## 5588 2017-11-12 2020-11-12 2017 2020
## 5589 2018-02-27 2021-02-26 2018 2021
## 5590 2018-06-14 2021-06-13 2018 2021
## 5591 2017-10-05 2020-10-04 2017 2020
## 5592 2018-09-11 2021-09-10 2018 2021
## 5593 2018-06-03 2021-06-02 2018 2021
## 5594 2018-08-31 2021-08-30 2018 2021
## 5595 2018-08-17 2021-08-16 2018 2021
## 5596 2017-10-15 2020-10-14 2017 2020
## 5597 2018-01-30 2020-01-29 2018 2020
## 5598 2018-10-15 2021-10-12 2018 2021
## 5599 2017-10-30 2020-10-30 2017 2020
## 5600 2018-09-10 2021-09-09 2018 2021
## 5601 2018-09-13 2021-09-12 2018 2021
## 5602 2018-07-16 2021-07-07 2018 2021
## 5603 2017-11-14 2018-08-30 2017 2018
## 5604 2018-04-09 2021-04-09 2018 2021
## 5605 2018-09-07 2021-09-07 2018 2021
## 5606 2018-03-31 2021-03-30 2018 2021
## 5607 2018-03-31 2021-03-30 2018 2021
## 5608 2017-10-15 2020-10-15 2017 2020
## 5609 2018-01-31 2020-01-30 2018 2020
## 5610 2018-09-15 2021-09-14 2018 2021
## 5611 2018-02-28 2021-02-25 2018 2021
## 5612 2018-08-09 2021-08-09 2018 2021
## 5613 2018-08-19 2021-08-18 2018 2021
## 5614 2018-03-28 2021-03-27 2018 2021
## 5615 2018-09-06 2021-09-06 2018 2021
## 5616 2018-08-21 2021-08-21 2018 2021
## 5617 2018-08-19 2021-08-19 2018 2021
## 5618 2018-02-28 2021-02-28 2018 2021
## 5619 2017-12-12 2020-12-11 2017 2020
## 5620 2018-06-03 2021-06-02 2018 2021
## 5621 2018-08-02 2021-08-01 2018 2021
## 5622 2018-08-19 2021-08-18 2018 2021
## 5623 2018-09-12 2021-09-11 2018 2021
## 5624 2018-06-06 2021-06-05 2018 2021
## 5625 2018-09-09 2021-09-07 2018 2021
## 5626 2018-07-22 2021-07-21 2018 2021
## 5627 2018-07-29 2021-07-28 2018 2021
## 5628 2018-03-04 2021-03-03 2018 2021
## 5629 2018-08-22 2021-08-21 2018 2021
## 5630 2018-08-18 2021-08-17 2018 2021
## 5631 2018-04-23 2021-04-22 2018 2021
## 5632 2018-07-17 2021-07-17 2018 2021
## 5633 2018-03-06 2021-03-05 2018 2021
## 5634 2018-08-31 2021-08-30 2018 2021
## 5635 2018-05-20 2021-05-19 2018 2021
## 5636 2018-01-14 2021-01-13 2018 2021
## 5637 2018-08-04 2021-08-03 2018 2021
## 5638 2017-12-17 2020-12-16 2017 2020
## 5639 2018-08-29 2021-06-24 2018 2021
## 5640 2017-10-10 2020-10-10 2017 2020
## 5641 2018-08-21 2021-08-21 2018 2021
## 5642 2018-08-05 2021-08-04 2018 2021
## 5643 2018-09-15 2021-09-15 2018 2021
## 5644 2018-03-29 2021-03-26 2018 2021
## 5645 2018-09-13 2021-09-12 2018 2021
## 5646 2018-07-17 2021-07-16 2018 2021
## 5647 2018-05-10 2021-05-10 2018 2021
## 5648 2018-07-01 2021-06-29 2018 2021
## 5649 2018-09-19 2021-09-18 2018 2021
## 5650 2018-09-22 2021-09-21 2018 2021
## 5651 2018-04-26 2021-04-26 2018 2021
## 5652 2018-09-22 2021-09-21 2018 2021
## 5653 2018-04-15 2021-04-14 2018 2021
## 5654 2018-06-30 2021-06-29 2018 2021
## 5655 2018-09-10 2021-09-09 2018 2021
## 5656 2018-07-31 2021-07-30 2018 2021
## 5657 2018-08-02 2021-08-01 2018 2021
## 5658 2018-09-05 2021-09-04 2018 2021
## 5659 2018-02-18 2021-02-18 2018 2021
## 5660 2018-08-06 2021-08-05 2018 2021
## 5661 2018-03-27 2021-03-26 2018 2021
## 5662 2018-09-10 2021-09-09 2018 2021
## 5663 2018-08-31 2021-08-31 2018 2021
## 5664 2018-06-10 2021-06-09 2018 2021
## 5665 2018-09-16 2021-09-15 2018 2021
## 5666 2017-12-31 2020-12-31 2017 2020
## 5667 2018-08-29 2021-08-28 2018 2021
## 5668 2018-10-04 2021-10-03 2018 2021
## 5669 2018-08-30 2021-08-30 2018 2021
## 5670 2018-08-31 2021-08-30 2018 2021
## 5671 2018-05-13 2019-05-12 2018 2019
## 5672 2018-09-04 2021-09-03 2018 2021
## 5673 2018-03-23 2021-03-23 2018 2021
## 5674 2018-12-20 2021-12-19 2018 2021
## 5675 2018-08-26 2021-08-26 2018 2021
## 5676 2018-08-31 2021-08-31 2018 2021
## 5677 2018-05-06 2021-05-05 2018 2021
## 5678 2018-09-09 2021-09-08 2018 2021
## 5679 2018-06-24 2021-06-22 2018 2021
## 5680 2018-08-29 2021-08-29 2018 2021
## 5681 2018-08-14 2021-08-13 2018 2021
## 5682 2018-08-26 2021-08-26 2018 2021
## 5683 2018-08-31 2021-08-30 2018 2021
## 5684 2018-04-09 2021-04-09 2018 2021
## 5685 2018-05-13 2021-05-12 2018 2021
## 5686 2017-10-31 2020-10-30 2017 2020
## 5687 2018-08-20 2021-08-20 2018 2021
## 5688 2018-08-05 2021-08-05 2018 2021
## 5689 2018-09-04 2021-09-03 2018 2021
## 5690 2018-08-14 2021-08-14 2018 2021
## 5691 2018-05-31 2021-05-30 2018 2021
## 5692 2018-08-19 2021-08-19 2018 2021
## 5693 2018-07-27 2021-07-26 2018 2021
## 5694 2019-01-31 2022-01-31 2019 2022
## 5695 2018-09-11 2021-09-10 2018 2021
## 5696 2017-11-12 2020-11-12 2017 2020
## 5697 2018-06-13 2021-06-12 2018 2021
## 5698 2018-09-09 2021-09-09 2018 2021
## 5699 2018-05-13 2021-05-12 2018 2021
## 5700 2018-03-06 2021-03-05 2018 2021
## 5701 2018-06-21 2021-06-20 2018 2021
## 5702 2017-11-20 2020-11-20 2017 2020
## 5703 2018-07-23 2020-09-07 2018 2020
## 5704 2018-08-31 2021-08-30 2018 2021
## 5705 2018-09-24 2021-09-23 2018 2021
## 5706 2018-09-15 2021-09-14 2018 2021
## 5707 2018-08-13 2021-08-12 2018 2021
## 5708 2018-05-03 2021-05-02 2018 2021
## 5709 2018-09-05 2021-09-05 2018 2021
## 5710 2017-11-07 2020-11-06 2017 2020
## 5711 2018-09-30 2021-09-29 2018 2021
## 5712 2018-08-29 2021-08-28 2018 2021
## 5713 2018-09-30 2021-09-29 2018 2021
## 5714 2017-12-03 2020-12-03 2017 2020
## 5715 2018-08-20 2021-08-19 2018 2021
## 5716 2018-06-02 2021-06-01 2018 2021
## 5717 2018-07-23 2021-07-22 2018 2021
## 5718 2018-07-08 2021-07-07 2018 2021
## 5719 2018-09-07 2021-09-06 2018 2021
## 5720 2018-09-03 2021-09-02 2018 2021
## 5721 2018-04-26 2021-04-25 2018 2021
## 5722 2018-06-24 2021-06-23 2018 2021
## 5723 2018-06-30 2021-06-27 2018 2021
## 5724 2018-08-08 2021-08-08 2018 2021
## 5725 2018-06-14 2021-06-13 2018 2021
## 5726 2018-09-19 2021-09-18 2018 2021
## 5727 2018-06-12 2021-06-11 2018 2021
## 5728 2018-01-03 2020-01-02 2018 2020
## 5729 2018-09-15 2021-09-14 2018 2021
## 5730 2018-07-31 2021-07-30 2018 2021
## 5731 2018-08-13 2021-08-12 2018 2021
## 5732 2018-06-14 2021-06-14 2018 2021
## 5733 2018-08-15 2021-08-14 2018 2021
## 5734 2018-09-14 2021-09-13 2018 2021
## 5735 2018-06-30 2021-06-29 2018 2021
## 5736 2018-08-24 2021-08-23 2018 2021
## 5737 2018-09-13 2021-09-13 2018 2021
## 5738 2018-03-17 2021-03-17 2018 2021
## 5739 2017-11-26 2020-11-26 2017 2020
## 5740 2018-06-30 2021-06-29 2018 2021
## 5741 2018-02-03 2021-01-31 2018 2021
## 5742 2017-10-30 2020-10-29 2017 2020
## 5743 2018-01-01 2020-12-31 2018 2020
## 5744 2018-08-31 2021-08-30 2018 2021
## 5745 2018-07-24 2021-07-24 2018 2021
## 5746 2018-09-06 2021-09-05 2018 2021
## 5747 2018-08-19 2021-08-19 2018 2021
## 5748 2018-09-23 2021-09-22 2018 2021
## 5749 2018-08-31 2021-08-30 2018 2021
## 5750 2018-09-09 2021-09-08 2018 2021
## 5751 2018-10-31 2021-10-30 2018 2021
## 5752 2018-07-10 2021-07-09 2018 2021
## 5753 2018-07-22 2021-07-21 2018 2021
## 5754 2018-02-06 2021-02-06 2018 2021
## 5755 2018-10-25 2021-10-25 2018 2021
## 5756 2018-06-14 2021-06-14 2018 2021
## 5757 2018-06-13 2021-06-12 2018 2021
## 5758 2018-01-18 2021-01-18 2018 2021
## 5759 2018-09-19 2021-09-19 2018 2021
## 5760 2018-04-18 2021-04-17 2018 2021
## 5761 2018-07-22 2021-07-21 2018 2021
## 5762 2018-11-13 2021-11-12 2018 2021
## 5763 2018-08-31 2020-08-30 2018 2020
## 5764 2018-02-28 2018-09-29 2018 2018
## 5765 2018-01-29 2021-01-28 2018 2021
## 5766 2018-06-29 2020-10-26 2018 2020
## 5767 2018-06-14 2021-06-14 2018 2021
## 5768 2018-09-05 2021-09-05 2018 2021
## 5769 2017-12-11 2020-12-10 2017 2020
## 5770 2018-03-08 2021-03-07 2018 2021
## 5771 2018-09-16 2021-09-13 2018 2021
## 5772 2018-03-07 2021-03-06 2018 2021
## 5773 2018-09-10 2021-09-10 2018 2021
## 5774 2017-10-31 2020-10-30 2017 2020
## 5775 2017-10-22 2020-10-21 2017 2020
## 5776 2018-02-18 2021-02-17 2018 2021
## 5777 2018-09-27 2021-09-26 2018 2021
## 5778 2018-04-30 2021-04-29 2018 2021
## 5779 2018-08-19 2021-08-18 2018 2021
## 5780 2018-09-15 2021-09-14 2018 2021
## 5781 2018-06-15 2021-06-14 2018 2021
## 5782 2018-09-20 2021-09-19 2018 2021
## 5783 2018-04-10 2020-08-19 2018 2020
## 5784 2018-05-31 2021-05-30 2018 2021
## 5785 2018-08-27 2021-08-26 2018 2021
## 5786 2018-07-30 2021-07-29 2018 2021
## 5787 2017-10-29 2020-10-29 2017 2020
## 5788 2017-10-08 2020-10-08 2017 2020
## 5789 2018-06-12 2021-06-11 2018 2021
## 5790 2018-09-11 2021-09-10 2018 2021
## 5791 2018-09-30 2019-02-21 2018 2019
## 5792 2018-04-30 2021-04-29 2018 2021
## 5793 2018-09-30 2021-09-29 2018 2021
## 5794 2018-04-02 2021-04-01 2018 2021
## 5795 2018-09-20 2021-09-19 2018 2021
## 5796 2018-06-29 2021-06-29 2018 2021
## 5797 2018-09-15 2021-09-15 2018 2021
## 5798 2018-08-06 2021-08-06 2018 2021
## 5799 2018-07-24 2021-07-23 2018 2021
## 5800 2017-10-12 2020-10-11 2017 2020
## 5801 2018-06-14 2021-06-13 2018 2021
## 5802 2018-09-30 2021-09-29 2018 2021
## 5803 2018-04-25 2021-04-25 2018 2021
## 5804 2017-11-05 2020-11-04 2017 2020
## 5805 2018-07-02 2021-07-01 2018 2021
## 5806 2018-07-24 2021-07-11 2018 2021
## 5807 2018-03-25 2018-10-03 2018 2018
## 5808 2018-04-30 2021-04-30 2018 2021
## 5809 2018-08-28 2021-08-27 2018 2021
## 5810 2018-06-30 2021-06-29 2018 2021
## 5811 2018-08-03 2021-08-02 2018 2021
## 5812 2017-10-22 2020-10-21 2017 2020
## 5813 2018-08-26 2021-08-25 2018 2021
## 5814 2018-08-02 2021-08-02 2018 2021
## 5815 2018-02-04 2021-02-03 2018 2021
## 5816 2018-09-06 2021-09-05 2018 2021
## 5817 2018-09-20 2021-09-20 2018 2021
## 5818 2017-12-27 2020-12-26 2017 2020
## 5819 2018-09-18 2021-09-17 2018 2021
## 5820 2018-09-19 2021-09-19 2018 2021
## 5821 2018-07-14 2021-04-17 2018 2021
## 5822 2018-08-24 2021-08-23 2018 2021
## 5823 2018-09-26 2021-09-25 2018 2021
## 5824 2017-11-22 2020-11-21 2017 2020
## 5825 2018-09-10 2021-09-09 2018 2021
## 5826 2017-12-12 2020-12-11 2017 2020
## 5827 2018-04-08 2021-04-07 2018 2021
## 5828 2018-07-30 2021-07-29 2018 2021
## 5829 2018-08-02 2021-08-01 2018 2021
## 5830 2018-08-31 2021-08-30 2018 2021
## 5831 2017-12-21 2020-12-20 2017 2020
## 5832 2018-07-31 2021-07-31 2018 2021
## 5833 2018-05-20 2021-05-19 2018 2021
## 5834 2018-09-06 2021-09-06 2018 2021
## 5835 2017-11-27 2020-11-26 2017 2020
## 5836 2018-09-09 2021-09-09 2018 2021
## 5837 2018-07-31 2021-07-30 2018 2021
## 5838 2018-09-30 2019-09-29 2018 2019
## 5839 2018-08-25 2021-08-24 2018 2021
## 5840 2018-09-04 2021-08-30 2018 2021
## 5841 2018-09-19 2021-09-18 2018 2021
## 5842 2018-09-17 2021-09-17 2018 2021
## 5843 2017-11-23 2020-11-22 2017 2020
## 5844 2018-08-31 2021-08-31 2018 2021
## 5845 2018-04-29 2021-04-28 2018 2021
## 5846 2018-07-31 2021-07-30 2018 2021
## 5847 2017-11-19 2020-11-19 2017 2020
## 5848 2018-05-10 2021-05-09 2018 2021
## 5849 2018-08-27 2021-08-26 2018 2021
## 5850 2018-09-12 2021-09-11 2018 2021
## 5851 2018-08-20 2021-08-20 2018 2021
## 5852 2018-09-30 2021-09-29 2018 2021
## 5853 2018-02-15 2019-08-30 2018 2019
## 5854 2018-06-30 2021-06-29 2018 2021
## 5855 2018-08-12 2021-08-11 2018 2021
## 5856 2018-08-08 2021-08-07 2018 2021
## 5857 2018-04-30 2021-04-29 2018 2021
## 5858 2017-10-08 2020-10-07 2017 2020
## 5859 2017-10-23 2020-10-22 2017 2020
## 5860 2018-09-04 2021-09-03 2018 2021
## 5861 2018-02-11 2018-09-08 2018 2018
## 5862 2018-12-27 2021-12-26 2018 2021
## 5863 2018-07-29 2021-07-28 2018 2021
## 5864 2018-08-20 2021-08-20 2018 2021
## 5865 2018-07-25 2021-07-24 2018 2021
## 5866 2018-01-08 2020-09-30 2018 2020
## 5867 2019-03-19 2022-03-18 2019 2022
## 5868 2018-09-20 2021-09-19 2018 2021
## 5869 2018-05-31 2021-05-31 2018 2021
## 5870 2018-09-30 2021-09-29 2018 2021
## 5871 2018-07-13 2021-07-12 2018 2021
## 5872 2019-02-04 2022-02-03 2019 2022
## 5873 2017-11-19 2020-11-18 2017 2020
## 5874 2018-07-19 2021-07-18 2018 2021
## 5875 2018-09-14 2021-09-13 2018 2021
## 5876 2018-08-29 2021-08-28 2018 2021
## 5877 2018-08-09 2019-08-08 2018 2019
## 5878 2018-08-29 2021-08-29 2018 2021
## 5879 2018-01-14 2021-01-14 2018 2021
## 5880 2018-01-03 2021-01-02 2018 2021
## 5881 2017-12-06 2020-12-05 2017 2020
## 5882 2018-05-21 2021-05-21 2018 2021
## 5883 2018-06-17 2021-06-16 2018 2021
## 5884 2018-09-08 2021-09-07 2018 2021
## 5885 2018-09-08 2021-09-08 2018 2021
## 5886 2018-02-01 2021-01-31 2018 2021
## 5887 2018-02-04 2021-02-03 2018 2021
## 5888 2017-10-30 2020-09-13 2017 2020
## 5889 2017-11-30 2020-11-29 2017 2020
## 5890 2018-08-30 2021-08-29 2018 2021
## 5891 2017-10-22 2020-09-04 2017 2020
## 5892 2017-12-31 2020-12-28 2017 2020
## 5893 2018-08-31 2021-08-30 2018 2021
## 5894 2018-04-15 2021-04-14 2018 2021
## 5895 2018-09-09 2021-09-08 2018 2021
## 5896 2018-09-05 2021-09-04 2018 2021
## 5897 2018-09-19 2021-09-18 2018 2021
## 5898 2017-12-19 2020-12-18 2017 2020
## 5899 2018-09-02 2021-08-30 2018 2021
## 5900 2018-09-16 2021-09-16 2018 2021
## 5901 2018-02-07 2021-02-06 2018 2021
## 5902 2018-02-28 2021-02-27 2018 2021
## 5903 2018-09-23 2021-09-22 2018 2021
## 5904 2018-04-26 2021-04-25 2018 2021
## 5905 2018-10-28 2021-10-27 2018 2021
## 5906 2017-12-21 2018-03-29 2017 2018
## 5907 2018-08-31 2021-08-30 2018 2021
## 5908 2018-03-31 2021-03-30 2018 2021
## 5909 2018-04-22 2021-04-22 2018 2021
## 5910 2017-12-15 2020-12-12 2017 2020
## 5911 2017-12-03 2020-12-02 2017 2020
## 5912 2018-03-27 2021-02-26 2018 2021
## 5913 2018-06-17 2021-06-16 2018 2021
## 5914 2018-05-31 2021-05-30 2018 2021
## 5915 2018-09-05 2021-08-29 2018 2021
## 5916 2018-08-07 2021-08-05 2018 2021
## 5917 2019-01-20 2022-01-19 2019 2022
## 5918 2018-01-01 2020-12-31 2018 2020
## 5919 2018-02-11 2021-02-10 2018 2021
## 5920 2018-09-21 2021-09-20 2018 2021
## 5921 2018-01-15 2021-01-15 2018 2021
## 5922 2018-05-14 2021-05-14 2018 2021
## 5923 2018-05-31 2021-05-31 2018 2021
## 5924 2018-08-31 2021-08-30 2018 2021
## 5925 2018-08-14 2021-08-13 2018 2021
## 5926 2018-05-31 2021-05-30 2018 2021
## 5927 2018-06-10 2021-06-09 2018 2021
## 5928 2018-09-10 2021-09-09 2018 2021
## 5929 2018-09-10 2021-09-10 2018 2021
## 5930 2018-07-22 2021-07-21 2018 2021
## 5931 2018-04-24 2021-04-24 2018 2021
## 5932 2018-09-09 2021-09-09 2018 2021
## 5933 2018-01-07 2021-01-07 2018 2021
## 5934 2018-04-09 2021-04-08 2018 2021
## 5935 2018-08-20 2021-08-19 2018 2021
## 5936 2018-09-21 2021-09-20 2018 2021
## 5937 2018-09-07 2021-09-06 2018 2021
## 5938 2017-12-03 2020-12-02 2017 2020
## 5939 2018-08-12 2021-08-11 2018 2021
## 5940 2018-06-04 2021-06-03 2018 2021
## 5941 2018-08-31 2021-08-30 2018 2021
## 5942 2017-11-12 2020-11-12 2017 2020
## 5943 2018-07-11 2021-07-10 2018 2021
## 5944 2018-08-13 2021-08-12 2018 2021
## 5945 2019-02-17 2022-02-16 2019 2022
## 5946 2018-03-31 2021-03-30 2018 2021
## 5947 2018-08-19 2021-08-18 2018 2021
## 5948 2018-03-31 2021-03-30 2018 2021
## 5949 2018-07-06 2021-07-05 2018 2021
## 5950 2018-09-09 2021-09-08 2018 2021
## 5951 2018-08-23 2021-08-22 2018 2021
## 5952 2018-08-05 2021-08-04 2018 2021
## 5953 2017-12-01 2018-11-30 2017 2018
## 5954 2017-11-14 2020-06-25 2017 2020
## 5955 2018-07-01 2021-06-30 2018 2021
## 5956 2018-10-14 2020-10-30 2018 2020
## 5957 2018-04-22 2021-04-21 2018 2021
## 5958 2018-09-20 2021-09-20 2018 2021
## 5959 2018-09-07 2021-09-06 2018 2021
## 5960 2019-01-02 2022-01-01 2019 2022
## 5961 2018-08-19 2021-08-19 2018 2021
## 5962 2018-07-27 2021-07-26 2018 2021
## 5963 2018-09-05 2021-09-04 2018 2021
## 5964 2018-08-20 2021-08-19 2018 2021
## 5965 2018-06-30 2021-06-29 2018 2021
## 5966 2018-02-09 2021-02-08 2018 2021
## 5967 2018-04-06 2020-11-09 2018 2020
## 5968 2018-09-12 2021-09-12 2018 2021
## 5969 2018-04-14 2021-04-13 2018 2021
## 5970 2018-02-21 2021-02-20 2018 2021
## 5971 2018-09-10 2021-09-09 2018 2021
## 5972 2018-07-30 2021-07-29 2018 2021
## 5973 2017-10-14 2020-10-14 2017 2020
## 5974 2018-03-31 2021-03-30 2018 2021
## 5975 2018-10-31 2021-10-30 2018 2021
## 5976 2018-08-31 2021-08-31 2018 2021
## 5977 2018-02-25 2021-02-24 2018 2021
## 5978 2018-08-19 2021-08-18 2018 2021
## 5979 2018-06-03 2021-06-02 2018 2021
## 5980 2017-10-22 2020-10-21 2017 2020
## 5981 2018-08-16 2021-08-15 2018 2021
## 5982 2018-02-12 2020-09-12 2018 2020
## 5983 2018-09-15 2021-09-14 2018 2021
## 5984 2018-06-25 2021-06-25 2018 2021
## 5985 2018-07-29 2021-07-29 2018 2021
## 5986 2017-12-19 2020-12-18 2017 2020
## 5987 2018-09-07 2021-09-07 2018 2021
## 5988 2017-11-05 2020-11-04 2017 2020
## 5989 2018-04-30 2021-04-30 2018 2021
## 5990 2018-08-14 2021-08-13 2018 2021
## 5991 2018-08-06 2021-08-05 2018 2021
## 5992 2018-03-10 2021-03-09 2018 2021
## 5993 2018-10-17 2021-10-16 2018 2021
## 5994 2018-09-14 2021-09-13 2018 2021
## 5995 2018-07-31 2021-07-30 2018 2021
## 5996 2018-06-14 2021-06-14 2018 2021
## 5997 2018-08-23 2021-08-22 2018 2021
## 5998 2018-09-09 2021-09-09 2018 2021
## 5999 2018-08-12 2021-08-11 2018 2021
## 6000 2017-10-08 2020-10-07 2017 2020
## 6001 2018-06-24 2021-06-23 2018 2021
## 6002 2018-09-18 2021-09-18 2018 2021
## 6003 2017-11-05 2020-11-04 2017 2020
## 6004 2018-07-09 2021-07-07 2018 2021
## 6005 2018-01-17 2021-01-16 2018 2021
## 6006 2018-07-31 2021-07-30 2018 2021
## 6007 2018-08-20 2021-08-19 2018 2021
## 6008 2017-11-05 2020-11-04 2017 2020
## 6009 2018-08-12 2021-08-12 2018 2021
## 6010 2018-07-08 2021-03-24 2018 2021
## 6011 2018-08-27 2021-08-27 2018 2021
## 6012 2018-01-31 2021-01-30 2018 2021
## 6013 2018-12-06 2021-12-05 2018 2021
## 6014 2018-02-28 2020-09-29 2018 2020
## 6015 2017-12-31 2020-12-30 2017 2020
## 6016 2019-02-28 2022-02-27 2019 2022
## 6017 2018-06-06 2021-06-05 2018 2021
## 6018 2017-10-15 2020-10-14 2017 2020
## 6019 2018-07-01 2020-02-01 2018 2020
## 6020 2018-03-31 2021-03-30 2018 2021
## 6021 2018-08-30 2021-08-29 2018 2021
## 6022 2018-07-22 2021-07-21 2018 2021
## 6023 2018-09-06 2021-09-05 2018 2021
## 6024 2018-09-10 2021-09-09 2018 2021
## 6025 2018-08-23 2021-08-22 2018 2021
## 6026 2018-08-31 2021-08-30 2018 2021
## 6027 2017-12-31 2020-12-30 2017 2020
## 6028 2018-09-05 2021-09-04 2018 2021
## 6029 2018-09-15 2021-09-14 2018 2021
## 6030 2018-07-27 2021-07-27 2018 2021
## 6031 2018-03-28 2021-03-27 2018 2021
## 6032 2018-12-06 2021-12-05 2018 2021
## 6033 2018-08-03 2019-09-30 2018 2019
## 6034 2018-09-18 2021-09-17 2018 2021
## 6035 2018-06-14 2021-06-13 2018 2021
## 6036 2018-09-29 2021-09-28 2018 2021
## 6037 2018-01-08 2020-05-24 2018 2020
## 6038 2017-11-26 2020-11-25 2017 2020
## 6039 2017-11-05 2019-09-29 2017 2019
## 6040 2017-10-22 2020-10-22 2017 2020
## 6041 2018-02-14 2021-02-13 2018 2021
## 6042 2018-08-25 2021-08-24 2018 2021
## 6043 2018-08-11 2021-08-10 2018 2021
## 6044 2018-02-10 2021-02-09 2018 2021
## 6045 2018-07-20 2021-07-19 2018 2021
## 6046 2018-09-13 2021-09-12 2018 2021
## 6047 2018-12-21 2021-12-20 2018 2021
## 6048 2018-09-30 2021-09-29 2018 2021
## 6049 2017-12-31 2020-12-31 2017 2020
## 6050 2018-09-16 2021-09-15 2018 2021
## 6051 2018-06-18 2021-06-15 2018 2021
## 6052 2018-03-02 2021-03-01 2018 2021
## 6053 2018-08-29 2021-08-28 2018 2021
## 6054 2018-08-19 2021-08-18 2018 2021
## 6055 2018-06-06 2021-06-05 2018 2021
## 6056 2018-04-02 2018-09-29 2018 2018
## 6057 2018-07-14 2021-07-13 2018 2021
## 6058 2018-07-28 2021-07-27 2018 2021
## 6059 2018-04-22 2019-06-29 2018 2019
## 6060 2018-04-30 2021-04-29 2018 2021
## 6061 2018-10-05 2021-10-05 2018 2021
## 6062 2018-03-26 2021-03-26 2018 2021
## 6063 2018-04-14 2021-04-13 2018 2021
## 6064 2018-03-12 2021-03-11 2018 2021
## 6065 2018-07-31 2021-07-30 2018 2021
## 6066 2018-09-09 2021-09-08 2018 2021
## 6067 2018-09-14 2021-09-13 2018 2021
## 6068 2018-08-20 2021-08-19 2018 2021
## 6069 2018-09-06 2021-09-05 2018 2021
## 6070 2018-09-04 2021-09-03 2018 2021
## 6071 2017-12-17 2020-12-16 2017 2020
## 6072 2018-09-01 2021-08-31 2018 2021
## 6073 2018-09-19 2021-09-18 2018 2021
## 6074 2018-07-29 2021-07-28 2018 2021
## 6075 2018-09-09 2020-03-01 2018 2020
## 6076 2017-12-13 2020-12-12 2017 2020
## 6077 2018-08-26 2021-08-25 2018 2021
## 6078 2018-05-10 2021-05-09 2018 2021
## 6079 2018-08-05 2021-08-04 2018 2021
## 6080 2018-09-11 2021-09-10 2018 2021
## 6081 2018-07-16 2021-07-15 2018 2021
## 6082 2018-04-11 2021-04-10 2018 2021
## 6083 2018-10-31 2021-10-30 2018 2021
## 6084 2018-09-19 2021-09-19 2018 2021
## 6085 2018-06-14 2021-06-14 2018 2021
## 6086 2018-07-02 2021-07-02 2018 2021
## 6087 2018-03-08 2021-03-07 2018 2021
## 6088 2018-09-30 2021-09-29 2018 2021
## 6089 2018-09-08 2021-09-08 2018 2021
## 6090 2018-03-10 2021-03-09 2018 2021
## 6091 2018-09-04 2021-09-03 2018 2021
## 6092 2018-06-09 2021-06-08 2018 2021
## 6093 2018-07-24 2021-07-24 2018 2021
## 6094 2018-09-04 2021-09-04 2018 2021
## 6095 2018-03-29 2021-03-28 2018 2021
## 6096 2018-02-26 2021-02-25 2018 2021
## 6097 2018-12-21 2021-12-21 2018 2021
## 6098 2018-09-05 2021-09-04 2018 2021
## 6099 2018-09-03 2021-09-02 2018 2021
## 6100 2018-08-09 2021-08-08 2018 2021
## 6101 2018-08-26 2021-08-26 2018 2021
## 6102 2018-08-19 2021-08-18 2018 2021
## 6103 2017-10-15 2020-10-14 2017 2020
## 6104 2018-03-11 2021-03-10 2018 2021
## 6105 2018-01-08 2021-01-07 2018 2021
## 6106 2018-07-31 2021-07-14 2018 2021
## 6107 2018-09-09 2021-09-08 2018 2021
## 6108 2017-11-12 2020-11-11 2017 2020
## 6109 2018-09-04 2021-09-03 2018 2021
## 6110 2018-09-30 2021-09-29 2018 2021
## 6111 2018-07-26 2021-07-25 2018 2021
## 6112 2018-06-10 2021-06-09 2018 2021
## 6113 2017-10-22 2020-10-21 2017 2020
## 6114 2018-03-25 2021-03-24 2018 2021
## 6115 2018-01-16 2021-01-15 2018 2021
## 6116 2019-02-05 2022-02-04 2019 2022
## 6117 2018-02-26 2021-02-25 2018 2021
## 6118 2018-09-19 2021-09-19 2018 2021
## 6119 2018-09-12 2021-09-11 2018 2021
## 6120 2018-05-17 2021-05-17 2018 2021
## 6121 2018-09-30 2021-09-29 2018 2021
## 6122 2018-03-16 2020-12-19 2018 2020
## 6123 2018-09-06 2021-09-05 2018 2021
## 6124 2018-06-10 2021-06-09 2018 2021
## 6125 2017-11-05 2020-11-05 2017 2020
## 6126 2018-09-10 2021-09-10 2018 2021
## 6127 2018-09-14 2021-09-13 2018 2021
## 6128 2018-12-20 2021-12-20 2018 2021
## 6129 2017-10-01 2020-09-30 2017 2020
## 6130 2018-07-30 2021-07-29 2018 2021
## 6131 2018-08-21 2021-08-20 2018 2021
## 6132 2018-01-31 2021-01-30 2018 2021
## 6133 2018-09-11 2021-09-10 2018 2021
## 6134 2018-08-20 2021-08-20 2018 2021
## 6135 2018-07-31 2021-07-30 2018 2021
## 6136 2018-09-06 2021-09-06 2018 2021
## 6137 2018-09-04 2021-09-03 2018 2021
## 6138 2018-08-27 2021-08-26 2018 2021
## 6139 2018-06-10 2021-06-10 2018 2021
## 6140 2018-06-07 2021-06-06 2018 2021
## 6141 2018-08-12 2019-05-10 2018 2019
## 6142 2018-03-09 2021-03-09 2018 2021
## 6143 2018-03-04 2021-03-03 2018 2021
## 6144 2018-08-17 2021-08-16 2018 2021
## 6145 2018-09-09 2021-09-09 2018 2021
## 6146 2018-03-21 2021-03-20 2018 2021
## 6147 2018-04-24 2021-04-24 2018 2021
## 6148 2018-09-01 2021-08-31 2018 2021
## 6149 2018-05-31 2021-05-29 2018 2021
## 6150 2017-11-09 2020-11-08 2017 2020
## 6151 2017-12-14 2020-12-14 2017 2020
## 6152 2018-01-31 2021-01-31 2018 2021
## 6153 2017-11-19 2020-11-18 2017 2020
## 6154 2018-09-06 2021-09-06 2018 2021
## 6155 2018-07-24 2021-07-23 2018 2021
## 6156 2018-08-31 2021-08-30 2018 2021
## 6157 2018-08-31 2021-08-30 2018 2021
## 6158 2018-09-09 2021-09-08 2018 2021
## 6159 2018-05-02 2021-05-01 2018 2021
## 6160 2018-04-01 2021-03-31 2018 2021
## 6161 2018-09-12 2021-09-11 2018 2021
## 6162 2018-04-29 2020-11-04 2018 2020
## 6163 2018-08-29 2021-08-28 2018 2021
## 6164 2018-01-10 2020-12-30 2018 2020
## 6165 2017-10-16 2020-10-15 2017 2020
## 6166 2018-02-22 2021-02-22 2018 2021
## 6167 2018-08-31 2021-08-30 2018 2021
## 6168 2018-09-28 2021-09-28 2018 2021
## 6169 2018-08-25 2021-08-24 2018 2021
## 6170 2018-09-19 2021-09-18 2018 2021
## 6171 2018-08-08 2021-08-08 2018 2021
## 6172 2018-08-15 2020-09-29 2018 2020
## 6173 2018-08-25 2021-08-24 2018 2021
## 6174 2018-09-09 2021-09-08 2018 2021
## 6175 2018-10-28 2021-10-27 2018 2021
## 6176 2018-04-12 2020-12-30 2018 2020
## 6177 2018-09-03 2021-09-02 2018 2021
## 6178 2018-09-14 2021-09-13 2018 2021
## 6179 2018-08-31 2021-08-31 2018 2021
## 6180 2018-04-19 2021-04-18 2018 2021
## 6181 2018-07-25 2021-07-24 2018 2021
## 6182 2017-11-08 2020-11-08 2017 2020
## 6183 2018-08-11 2021-08-10 2018 2021
## 6184 2018-06-26 2021-06-25 2018 2021
## 6185 2018-07-26 2021-07-25 2018 2021
## 6186 2018-05-09 2021-05-09 2018 2021
## 6187 2017-12-31 2020-12-30 2017 2020
## 6188 2018-08-31 2021-08-30 2018 2021
## 6189 2018-09-13 2021-09-13 2018 2021
## 6190 2018-09-17 2021-09-17 2018 2021
## 6191 2018-06-26 2021-06-25 2018 2021
## 6192 2018-10-30 2021-10-29 2018 2021
## 6193 2018-09-12 2021-09-11 2018 2021
## 6194 2018-06-17 2021-06-16 2018 2021
## 6195 2018-11-18 2021-11-17 2018 2021
## 6196 2017-12-17 2020-12-16 2017 2020
## 6197 2018-03-14 2021-03-13 2018 2021
## 6198 2018-05-31 2021-05-30 2018 2021
## 6199 2017-11-12 2019-11-11 2017 2019
## 6200 2018-08-31 2021-08-30 2018 2021
## 6201 2018-09-04 2021-09-03 2018 2021
## 6202 2018-08-01 2021-08-01 2018 2021
## 6203 2018-09-30 2021-09-29 2018 2021
## 6204 2018-04-22 2021-04-19 2018 2021
## 6205 2018-02-11 2021-02-10 2018 2021
## 6206 2018-04-28 2021-04-27 2018 2021
## 6207 2018-09-14 2021-09-13 2018 2021
## 6208 2018-10-24 2019-08-31 2018 2019
## 6209 2018-08-29 2021-08-29 2018 2021
## 6210 2019-02-03 2022-02-03 2019 2022
## 6211 2018-05-14 2021-05-13 2018 2021
## 6212 2018-07-23 2021-07-09 2018 2021
## 6213 2018-07-31 2021-07-30 2018 2021
## 6214 2018-03-28 2021-03-28 2018 2021
## 6215 2018-08-09 2021-08-08 2018 2021
## 6216 2018-07-20 2021-07-19 2018 2021
## 6217 2019-01-27 2022-01-27 2019 2022
## 6218 2018-06-14 2021-06-14 2018 2021
## 6219 2018-08-12 2021-08-11 2018 2021
## 6220 2018-09-13 2021-09-12 2018 2021
## 6221 2018-06-14 2021-06-14 2018 2021
## 6222 2018-06-24 2019-09-07 2018 2019
## 6223 2018-08-31 2021-08-30 2018 2021
## 6224 2018-06-21 2021-06-21 2018 2021
## 6225 2019-02-07 2022-02-06 2019 2022
## 6226 2018-04-30 2021-04-29 2018 2021
## 6227 2017-11-14 2020-11-13 2017 2020
## 6228 2018-08-21 2021-08-20 2018 2021
## 6229 2018-09-03 2021-09-02 2018 2021
## 6230 2018-06-14 2021-06-14 2018 2021
## 6231 2018-08-05 2021-08-04 2018 2021
## 6232 2018-07-26 2021-07-25 2018 2021
## 6233 2017-11-01 2020-10-31 2017 2020
## 6234 2018-01-07 2018-12-30 2018 2018
## 6235 2018-09-14 2021-09-13 2018 2021
## 6236 2018-04-28 2021-04-27 2018 2021
## 6237 2017-10-15 2020-10-15 2017 2020
## 6238 2018-07-31 2021-07-29 2018 2021
## 6239 2018-09-09 2021-09-09 2018 2021
## 6240 2018-05-27 2021-05-26 2018 2021
## 6241 2018-01-28 2021-01-27 2018 2021
## 6242 2018-08-27 2021-08-27 2018 2021
## 6243 2018-08-31 2021-08-31 2018 2021
## 6244 2018-03-07 2021-03-07 2018 2021
## 6245 2018-04-15 2021-04-14 2018 2021
## 6246 2019-01-30 2022-01-29 2019 2022
## 6247 2018-02-21 2021-02-20 2018 2021
## 6248 2018-03-13 2021-03-12 2018 2021
## 6249 2018-06-24 2021-06-24 2018 2021
## 6250 2018-08-31 2021-08-30 2018 2021
## 6251 2018-02-03 2021-02-03 2018 2021
## 6252 2018-07-28 2021-07-27 2018 2021
## 6253 2018-08-02 2021-08-01 2018 2021
## 6254 2018-04-11 2021-04-11 2018 2021
## 6255 2018-09-06 2021-09-05 2018 2021
## 6256 2018-08-05 2021-08-04 2018 2021
## 6257 2018-07-15 2021-07-14 2018 2021
## 6258 2018-08-29 2021-08-26 2018 2021
## 6259 2018-09-03 2021-09-02 2018 2021
## 6260 2018-04-22 2021-04-22 2018 2021
## 6261 2018-09-14 2021-09-13 2018 2021
## 6262 2018-12-05 2021-12-04 2018 2021
## 6263 2018-07-15 2021-07-15 2018 2021
## 6264 2017-11-14 2019-12-26 2017 2019
## 6265 2018-08-08 2021-08-08 2018 2021
## 6266 2018-08-31 2021-08-30 2018 2021
## 6267 2018-09-06 2021-09-05 2018 2021
## 6268 2018-06-30 2021-06-29 2018 2021
## 6269 2018-07-15 2020-07-30 2018 2020
## 6270 2018-09-17 2021-09-17 2018 2021
## 6271 2018-08-01 2021-07-31 2018 2021
## 6272 2018-08-31 2021-08-29 2018 2021
## 6273 2018-05-21 2021-05-20 2018 2021
## 6274 2018-06-24 2021-06-23 2018 2021
## 6275 2018-09-09 2021-09-08 2018 2021
## 6276 2018-02-26 2021-02-25 2018 2021
## 6277 2017-10-25 2020-10-24 2017 2020
## 6278 2018-02-04 2021-02-03 2018 2021
## 6279 2018-04-30 2021-03-27 2018 2021
## 6280 2018-07-14 2021-07-14 2018 2021
## 6281 2017-12-14 2020-12-10 2017 2020
## 6282 2018-06-03 2021-06-02 2018 2021
## 6283 2018-07-22 2021-07-22 2018 2021
## 6284 2018-01-03 2021-01-02 2018 2021
## 6285 2018-08-19 2021-08-19 2018 2021
## 6286 2018-09-11 2021-09-10 2018 2021
## 6287 2018-06-03 2021-06-02 2018 2021
## 6288 2018-06-30 2021-06-29 2018 2021
## 6289 2018-05-31 2021-05-30 2018 2021
## 6290 2018-09-16 2021-09-16 2018 2021
## 6291 2017-10-26 2020-10-23 2017 2020
## 6292 2018-07-08 2021-07-07 2018 2021
## 6293 2018-09-04 2021-09-03 2018 2021
## 6294 2018-09-02 2020-03-02 2018 2020
## 6295 2018-08-18 2021-08-17 2018 2021
## 6296 2018-08-14 2021-08-14 2018 2021
## 6297 2018-09-23 2021-09-22 2018 2021
## 6298 2018-09-07 2021-09-07 2018 2021
## 6299 2018-09-03 2021-09-02 2018 2021
## 6300 2018-01-30 2021-01-30 2018 2021
## 6301 2018-07-15 2021-07-14 2018 2021
## 6302 2018-03-18 2021-03-15 2018 2021
## 6303 2017-11-28 2020-11-27 2017 2020
## 6304 2017-12-19 2020-12-18 2017 2020
## 6305 2018-10-29 2021-10-29 2018 2021
## 6306 2018-08-13 2021-08-13 2018 2021
## 6307 2018-05-14 2021-05-14 2018 2021
## 6308 2018-08-20 2021-08-19 2018 2021
## 6309 2018-07-15 2021-07-14 2018 2021
## 6310 2018-07-08 2021-07-08 2018 2021
## 6311 2018-07-08 2020-12-30 2018 2020
## 6312 2018-01-07 2021-01-06 2018 2021
## 6313 2018-12-31 2021-12-30 2018 2021
## 6314 2018-09-16 2021-09-15 2018 2021
## 6315 2018-09-17 2019-09-16 2018 2019
## 6316 2018-08-31 2021-08-30 2018 2021
## 6317 2018-08-09 2021-08-09 2018 2021
## 6318 2018-09-29 2021-09-28 2018 2021
## 6319 2018-09-05 2021-09-04 2018 2021
## 6320 2018-09-30 2021-09-29 2018 2021
## 6321 2018-06-01 2021-06-01 2018 2021
## 6322 2018-06-03 2021-06-02 2018 2021
## 6323 2018-08-12 2020-08-09 2018 2020
## 6324 2018-07-30 2021-07-29 2018 2021
## 6325 2018-09-11 2021-09-11 2018 2021
## 6326 2018-06-30 2019-06-29 2018 2019
## 6327 2018-06-24 2021-06-20 2018 2021
## 6328 2018-09-23 2021-09-22 2018 2021
## 6329 2018-09-11 2021-09-10 2018 2021
## 6330 2018-09-29 2021-09-29 2018 2021
## 6331 2018-07-27 2021-07-26 2018 2021
## 6332 2018-08-20 2021-08-19 2018 2021
## 6333 2018-06-24 2021-06-23 2018 2021
## 6334 2018-04-29 2021-04-29 2018 2021
## 6335 2018-03-22 2021-03-21 2018 2021
## 6336 2018-09-03 2021-09-02 2018 2021
## 6337 2018-09-06 2021-09-05 2018 2021
## 6338 2018-02-25 2018-09-30 2018 2018
## 6339 2019-02-13 2022-02-12 2019 2022
## 6340 2018-09-26 2021-09-25 2018 2021
## 6341 2018-09-14 2021-09-13 2018 2021
## 6342 2018-08-31 2021-08-30 2018 2021
## 6343 2018-09-06 2021-09-06 2018 2021
## 6344 2018-08-19 2021-08-19 2018 2021
## 6345 2019-01-10 2022-01-09 2019 2022
## 6346 2018-02-11 2021-01-30 2018 2021
## 6347 2018-08-31 2021-08-31 2018 2021
## 6348 2018-04-08 2021-04-05 2018 2021
## 6349 2018-07-27 2021-07-26 2018 2021
## 6350 2017-12-13 2020-12-12 2017 2020
## 6351 2018-05-31 2021-05-30 2018 2021
## 6352 2018-07-31 2021-07-30 2018 2021
## 6353 2018-08-01 2021-07-31 2018 2021
## 6354 2018-09-30 2021-09-29 2018 2021
## 6355 2019-01-10 2022-01-09 2019 2022
## 6356 2018-09-20 2021-09-19 2018 2021
## 6357 2018-08-10 2021-08-09 2018 2021
## 6358 2018-02-25 2021-02-25 2018 2021
## 6359 2018-09-10 2021-09-09 2018 2021
## 6360 2018-06-14 2021-06-13 2018 2021
## 6361 2018-07-22 2021-07-21 2018 2021
## 6362 2018-09-20 2021-09-20 2018 2021
## 6363 2018-09-16 2021-09-16 2018 2021
## 6364 2018-08-10 2021-08-09 2018 2021
## 6365 2018-10-16 2021-10-15 2018 2021
## 6366 2018-01-28 2021-01-27 2018 2021
## 6367 2018-06-14 2021-06-14 2018 2021
## 6368 2017-10-30 2020-10-29 2017 2020
## 6369 2018-09-09 2021-09-09 2018 2021
## 6370 2018-09-11 2021-09-10 2018 2021
## 6371 2018-07-28 2021-07-27 2018 2021
## 6372 2018-06-30 2021-01-16 2018 2021
## 6373 2018-06-14 2021-06-14 2018 2021
## 6374 2018-01-22 2021-01-21 2018 2021
## 6375 2018-08-16 2021-08-15 2018 2021
## 6376 2018-09-10 2021-09-09 2018 2021
## 6377 2018-08-06 2021-08-05 2018 2021
## 6378 2018-02-04 2019-09-29 2018 2019
## 6379 2018-09-13 2021-09-12 2018 2021
## 6380 2018-09-02 2021-09-01 2018 2021
## 6381 2018-04-29 2021-04-28 2018 2021
## 6382 2018-09-07 2021-09-06 2018 2021
## 6383 2018-08-27 2021-08-26 2018 2021
## 6384 2018-08-28 2021-08-27 2018 2021
## 6385 2018-09-15 2021-09-15 2018 2021
## 6386 2018-04-22 2020-09-13 2018 2020
## 6387 2018-09-25 2021-09-24 2018 2021
## 6388 2018-02-01 2021-01-31 2018 2021
## 6389 2018-08-17 2021-08-16 2018 2021
## 6390 2018-09-30 2021-09-29 2018 2021
## 6391 2018-07-26 2021-07-25 2018 2021
## 6392 2018-10-31 2021-10-30 2018 2021
## 6393 2018-09-30 2021-09-29 2018 2021
## 6394 2018-08-26 2021-08-26 2018 2021
## 6395 2018-08-14 2021-08-13 2018 2021
## 6396 2018-05-29 2021-05-29 2018 2021
## 6397 2018-08-26 2021-08-25 2018 2021
## 6398 2018-09-15 2021-09-14 2018 2021
## 6399 2018-02-25 2021-02-24 2018 2021
## 6400 2018-09-08 2021-09-08 2018 2021
## 6401 2018-09-12 2021-09-11 2018 2021
## 6402 2018-04-01 2021-04-01 2018 2021
## 6403 2018-09-17 2021-09-16 2018 2021
## 6404 2018-09-02 2021-09-01 2018 2021
## 6405 2018-03-31 2021-03-30 2018 2021
## 6406 2018-08-20 2021-08-18 2018 2021
## 6407 2018-03-11 2020-09-29 2018 2020
## 6408 2018-08-31 2021-08-30 2018 2021
## 6409 2018-09-27 2021-09-27 2018 2021
## 6410 2018-09-20 2021-09-19 2018 2021
## 6411 2018-01-30 2021-01-29 2018 2021
## 6412 2018-02-28 2021-02-28 2018 2021
## 6413 2018-08-06 2021-08-05 2018 2021
## 6414 2018-07-11 2021-07-10 2018 2021
## 6415 2017-12-12 2020-12-11 2017 2020
## 6416 2018-10-14 2021-10-13 2018 2021
## 6417 2018-09-13 2021-09-12 2018 2021
## 6418 2018-01-31 2020-01-30 2018 2020
## 6419 2018-08-05 2021-08-04 2018 2021
## 6420 2017-11-16 2020-11-13 2017 2020
## 6421 2018-08-14 2021-08-13 2018 2021
## 6422 2018-05-29 2021-05-29 2018 2021
## 6423 2018-03-25 2021-03-24 2018 2021
## 6424 2017-10-19 2020-10-18 2017 2020
## 6425 2018-01-31 2021-01-30 2018 2021
## 6426 2018-07-24 2021-07-23 2018 2021
## 6427 2018-09-10 2021-09-09 2018 2021
## 6428 2018-08-07 2021-08-06 2018 2021
## 6429 2018-06-04 2021-06-03 2018 2021
## 6430 2018-09-19 2019-09-10 2018 2019
## 6431 2017-10-02 2019-09-01 2017 2019
## 6432 2018-11-01 2021-10-31 2018 2021
## 6433 2018-09-11 2021-09-10 2018 2021
## 6434 2018-09-19 2021-09-19 2018 2021
## 6435 2018-08-25 2021-08-25 2018 2021
## 6436 2018-12-06 2021-12-05 2018 2021
## 6437 2018-09-14 2021-09-14 2018 2021
## 6438 2018-09-11 2021-09-11 2018 2021
## 6439 2018-09-16 2021-09-15 2018 2021
## 6440 2017-12-31 2020-12-31 2017 2020
## 6441 2018-09-23 2021-09-23 2018 2021
## 6442 2018-04-30 2021-04-29 2018 2021
## 6443 2018-06-14 2021-06-14 2018 2021
## 6444 2018-08-19 2021-08-18 2018 2021
## 6445 2018-09-30 2021-09-29 2018 2021
## 6446 2018-07-26 2021-07-25 2018 2021
## 6447 2017-12-26 2020-12-25 2017 2020
## 6448 2018-08-14 2021-08-13 2018 2021
## 6449 2018-07-27 2021-07-27 2018 2021
## 6450 2017-12-07 2020-12-06 2017 2020
## 6451 2018-10-18 2021-10-17 2018 2021
## 6452 2018-09-20 2021-09-20 2018 2021
## 6453 2018-07-08 2021-07-07 2018 2021
## 6454 2018-08-31 2021-08-31 2018 2021
## 6455 2018-09-06 2021-09-06 2018 2021
## 6456 2017-11-16 2020-11-15 2017 2020
## 6457 2018-09-15 2021-09-14 2018 2021
## 6458 2018-08-21 2021-08-20 2018 2021
## 6459 2018-04-25 2021-04-25 2018 2021
## 6460 2018-09-08 2021-09-07 2018 2021
## 6461 2018-01-14 2021-01-13 2018 2021
## 6462 2017-12-31 2019-04-18 2017 2019
## 6463 2018-05-20 2021-05-19 2018 2021
## 6464 2018-03-04 2021-03-03 2018 2021
## 6465 2018-09-14 2021-09-13 2018 2021
## 6466 2018-09-30 2021-09-27 2018 2021
## 6467 2018-05-23 2020-10-21 2018 2020
## 6468 2018-10-30 2020-10-29 2018 2020
## 6469 2018-08-23 2021-08-22 2018 2021
## 6470 2018-09-06 2021-09-05 2018 2021
## 6471 2018-11-10 2021-11-09 2018 2021
## 6472 2018-09-20 2021-09-20 2018 2021
## 6473 2018-09-10 2021-09-09 2018 2021
## 6474 2018-08-08 2021-08-08 2018 2021
## 6475 2018-09-30 2021-09-29 2018 2021
## 6476 2018-05-20 2021-05-19 2018 2021
## 6477 2018-07-30 2021-07-29 2018 2021
## 6478 2018-04-22 2021-04-21 2018 2021
## 6479 2018-07-08 2021-07-07 2018 2021
## 6480 2018-08-18 2021-08-18 2018 2021
## 6481 2018-10-28 2021-10-27 2018 2021
## 6482 2018-01-28 2021-01-27 2018 2021
## 6483 2018-04-14 2021-04-13 2018 2021
## 6484 2018-03-21 2021-02-27 2018 2021
## 6485 2018-09-24 2021-09-23 2018 2021
## 6486 2018-04-30 2020-08-10 2018 2020
## 6487 2018-03-28 2021-03-27 2018 2021
## 6488 2017-11-05 2020-11-05 2017 2020
## 6489 2018-09-01 2021-08-31 2018 2021
## 6490 2018-02-28 2018-03-30 2018 2018
## 6491 2017-10-19 2020-10-18 2017 2020
## 6492 2018-03-31 2021-03-30 2018 2021
## 6493 2018-10-14 2021-10-13 2018 2021
## 6494 2017-10-12 2020-10-11 2017 2020
## 6495 2017-12-17 2020-12-16 2017 2020
## 6496 2018-06-11 2021-06-11 2018 2021
## 6497 2018-01-14 2020-06-24 2018 2020
## 6498 2018-09-14 2021-09-13 2018 2021
## 6499 2018-09-20 2021-09-19 2018 2021
## 6500 2017-10-09 2020-10-08 2017 2020
## 6501 2018-01-14 2021-01-13 2018 2021
## 6502 2018-08-31 2021-08-30 2018 2021
## 6503 2017-11-08 2020-11-08 2017 2020
## 6504 2018-03-31 2021-03-30 2018 2021
## 6505 2018-03-23 2021-03-22 2018 2021
## 6506 2018-09-11 2021-09-11 2018 2021
## 6507 2018-09-07 2021-09-06 2018 2021
## 6508 2018-04-15 2021-04-15 2018 2021
## 6509 2018-06-24 2021-06-23 2018 2021
## 6510 2018-08-31 2021-08-30 2018 2021
## 6511 2018-06-29 2021-06-27 2018 2021
## 6512 2018-08-06 2021-08-06 2018 2021
## 6513 2018-08-26 2021-08-25 2018 2021
## 6514 2018-07-17 2021-07-16 2018 2021
## 6515 2018-09-06 2021-09-05 2018 2021
## 6516 2018-09-08 2021-09-08 2018 2021
## 6517 2018-02-11 2021-02-10 2018 2021
## 6518 2017-12-11 2019-09-12 2017 2019
## 6519 2018-09-06 2021-09-06 2018 2021
## 6520 2018-09-02 2021-09-02 2018 2021
## 6521 2018-06-12 2021-06-11 2018 2021
## 6522 2018-04-08 2021-04-08 2018 2021
## 6523 2018-08-25 2021-08-24 2018 2021
## 6524 2018-08-31 2021-08-31 2018 2021
## 6525 2018-04-18 2021-04-18 2018 2021
## 6526 2018-10-20 2021-10-19 2018 2021
## 6527 2018-07-26 2021-07-25 2018 2021
## 6528 2018-10-01 2021-09-30 2018 2021
## 6529 2018-07-02 2021-07-02 2018 2021
## 6530 2018-08-31 2020-06-29 2018 2020
## 6531 2018-08-31 2021-08-30 2018 2021
## 6532 2018-08-26 2021-08-26 2018 2021
## 6533 2018-09-17 2021-09-17 2018 2021
## 6534 2018-08-31 2021-03-30 2018 2021
## 6535 2018-08-14 2021-08-13 2018 2021
## 6536 2018-08-14 2021-08-13 2018 2021
## 6537 2018-04-15 2021-04-12 2018 2021
## 6538 2018-08-22 2021-08-22 2018 2021
## 6539 2018-07-31 2021-07-31 2018 2021
## 6540 2018-08-31 2021-08-31 2018 2021
## 6541 2017-11-19 2020-11-18 2017 2020
## 6542 2017-10-15 2020-10-14 2017 2020
## 6543 2018-08-31 2021-08-31 2018 2021
## 6544 2018-08-07 2021-08-06 2018 2021
## 6545 2018-01-24 2021-01-23 2018 2021
## 6546 2018-09-03 2021-09-02 2018 2021
## 6547 2018-09-03 2021-09-02 2018 2021
## 6548 2018-09-26 2021-09-26 2018 2021
## 6549 2018-09-27 2021-09-27 2018 2021
## 6550 2018-07-29 2021-07-28 2018 2021
## 6551 2018-09-03 2021-09-02 2018 2021
## 6552 2018-09-20 2021-09-19 2018 2021
## 6553 2017-11-19 2020-11-19 2017 2020
## 6554 2018-09-23 2021-09-22 2018 2021
## 6555 2018-04-02 2021-04-01 2018 2021
## 6556 2017-09-26 2020-03-30 2017 2020
## 6557 2018-03-18 2021-03-17 2018 2021
## 6558 2018-09-12 2021-09-12 2018 2021
## 6559 2018-09-01 2021-08-31 2018 2021
## 6560 2018-09-30 2021-09-27 2018 2021
## 6561 2018-09-06 2021-09-06 2018 2021
## 6562 2018-05-31 2021-05-30 2018 2021
## 6563 2018-07-25 2021-07-24 2018 2021
## 6564 2018-03-26 2021-03-25 2018 2021
## 6565 2017-11-26 2020-11-25 2017 2020
## 6566 2018-08-05 2021-08-04 2018 2021
## 6567 2018-09-12 2021-09-12 2018 2021
## 6568 2018-08-18 2021-08-17 2018 2021
## 6569 2018-05-20 2021-05-20 2018 2021
## 6570 2018-04-05 2021-04-04 2018 2021
## 6571 2018-09-13 2021-09-12 2018 2021
## 6572 2018-06-28 2018-12-12 2018 2018
## 6573 2017-12-04 2020-12-03 2017 2020
## 6574 2018-07-31 2021-07-30 2018 2021
## 6575 2018-07-31 2021-07-30 2018 2021
## 6576 2018-07-09 2021-07-09 2018 2021
## 6577 2018-06-14 2021-06-14 2018 2021
## 6578 2018-07-08 2021-07-07 2018 2021
## 6579 2018-04-22 2021-04-21 2018 2021
## 6580 2018-12-19 2021-12-18 2018 2021
## 6581 2018-09-02 2021-08-30 2018 2021
## 6582 2018-08-16 2021-08-13 2018 2021
## 6583 2018-09-03 2021-09-03 2018 2021
## 6584 2018-07-10 2020-01-16 2018 2020
## 6585 2018-10-14 2021-10-13 2018 2021
## 6586 2018-09-01 2021-08-31 2018 2021
## 6587 2017-11-26 2020-11-25 2017 2020
## 6588 2018-09-15 2021-09-14 2018 2021
## 6589 2018-09-06 2021-09-05 2018 2021
## 6590 2018-08-14 2021-08-13 2018 2021
## 6591 2017-11-12 2020-11-11 2017 2020
## 6592 2018-07-03 2018-12-20 2018 2018
## 6593 2018-01-20 2021-01-19 2018 2021
## 6594 2018-11-14 2021-11-13 2018 2021
## 6595 2018-09-14 2021-09-13 2018 2021
## 6596 2018-09-13 2021-09-13 2018 2021
## 6597 2018-09-30 2021-09-29 2018 2021
## 6598 2018-01-29 2019-07-25 2018 2019
## 6599 2018-05-01 2021-04-30 2018 2021
## 6600 2018-07-17 2021-07-17 2018 2021
## 6601 2018-08-31 2021-08-30 2018 2021
## 6602 2018-04-17 2021-04-16 2018 2021
## 6603 2018-08-30 2021-08-30 2018 2021
## 6604 2018-05-05 2021-05-02 2018 2021
## 6605 2018-04-06 2018-12-30 2018 2018
## 6606 2018-07-22 2021-07-21 2018 2021
## 6607 2018-07-22 2021-07-21 2018 2021
## 6608 2018-09-13 2021-09-12 2018 2021
## 6609 2018-03-31 2021-03-30 2018 2021
## 6610 2018-06-01 2021-06-01 2018 2021
## 6611 2018-09-01 2021-08-31 2018 2021
## 6612 2018-08-31 2020-08-30 2018 2020
## 6613 2018-08-05 2021-08-04 2018 2021
## 6614 2018-02-28 2021-02-27 2018 2021
## 6615 2018-07-31 2021-07-30 2018 2021
## 6616 2018-03-06 2021-03-05 2018 2021
## 6617 2017-12-21 2020-12-20 2017 2020
## 6618 2018-05-01 2021-04-30 2018 2021
## 6619 2018-08-11 2021-08-08 2018 2021
## 6620 2018-09-06 2021-09-06 2018 2021
## 6621 2018-07-31 2021-07-30 2018 2021
## 6622 2018-02-04 2021-02-04 2018 2021
## 6623 2018-09-19 2021-09-19 2018 2021
## 6624 2018-03-14 2021-03-13 2018 2021
## 6625 2018-08-02 2021-08-01 2018 2021
## 6626 2018-07-30 2021-07-30 2018 2021
## 6627 2018-08-27 2021-08-27 2018 2021
## 6628 2018-06-04 2021-06-03 2018 2021
## 6629 2018-05-06 2021-05-05 2018 2021
## 6630 2018-04-09 2021-04-08 2018 2021
## 6631 2018-08-15 2021-08-14 2018 2021
## 6632 2018-10-12 2021-10-12 2018 2021
## 6633 2018-02-11 2021-02-10 2018 2021
## 6634 2018-08-14 2021-08-13 2018 2021
## 6635 2018-03-11 2021-03-10 2018 2021
## 6636 2018-09-02 2021-09-01 2018 2021
## 6637 2018-06-03 2021-06-02 2018 2021
## 6638 2018-08-20 2021-08-19 2018 2021
## 6639 2017-10-08 2020-10-07 2017 2020
## 6640 2018-08-19 2021-08-18 2018 2021
## 6641 2018-08-15 2021-05-14 2018 2021
## 6642 2018-09-14 2021-09-14 2018 2021
## 6643 2018-09-09 2021-09-08 2018 2021
## 6644 2018-06-25 2021-06-25 2018 2021
## 6645 2018-09-01 2021-08-31 2018 2021
## 6646 2017-11-05 2020-11-04 2017 2020
## 6647 2018-02-22 2021-02-21 2018 2021
## 6648 2017-11-19 2020-11-19 2017 2020
## 6649 2018-05-11 2021-05-10 2018 2021
## 6650 2017-12-03 2019-09-29 2017 2019
## 6651 2018-09-20 2021-09-20 2018 2021
## 6652 2018-06-30 2021-06-30 2018 2021
## 6653 2018-09-09 2021-09-08 2018 2021
## 6654 2017-10-08 2020-10-07 2017 2020
## 6655 2018-08-03 2021-08-03 2018 2021
## 6656 2018-01-07 2021-01-07 2018 2021
## 6657 2018-01-17 2021-01-16 2018 2021
## 6658 2018-09-07 2021-09-06 2018 2021
## 6659 2018-09-11 2021-09-11 2018 2021
## 6660 2018-09-07 2021-09-06 2018 2021
## 6661 2018-08-28 2021-08-27 2018 2021
## 6662 2018-02-15 2021-02-14 2018 2021
## 6663 2019-03-13 2022-03-13 2019 2022
## 6664 2018-09-17 2021-09-16 2018 2021
## 6665 2018-07-01 2021-06-30 2018 2021
## 6666 2018-09-20 2021-09-20 2018 2021
## 6667 2018-09-10 2021-09-10 2018 2021
## 6668 2018-09-03 2021-09-02 2018 2021
## 6669 2018-09-04 2021-09-03 2018 2021
## 6670 2017-10-01 2020-09-30 2017 2020
## 6671 2018-02-11 2021-02-10 2018 2021
## 6672 2018-07-08 2021-07-08 2018 2021
## 6673 2018-02-21 2021-02-20 2018 2021
## 6674 2018-08-09 2019-06-23 2018 2019
## 6675 2018-08-13 2021-08-12 2018 2021
## 6676 2018-09-10 2021-09-09 2018 2021
## 6677 2018-06-30 2021-06-29 2018 2021
## 6678 2018-07-01 2021-06-30 2018 2021
## 6679 2018-03-21 2021-03-20 2018 2021
## 6680 2018-08-24 2021-08-24 2018 2021
## 6681 2018-07-31 2021-07-30 2018 2021
## 6682 2018-08-14 2021-08-13 2018 2021
## 6683 2018-09-23 2021-09-22 2018 2021
## 6684 2018-07-31 2021-07-30 2018 2021
## 6685 2018-07-23 2021-07-22 2018 2021
## 6686 2018-06-02 2021-06-01 2018 2021
## 6687 2018-09-21 2021-09-21 2018 2021
## 6688 2018-09-14 2021-09-14 2018 2021
## 6689 2018-08-26 2021-08-25 2018 2021
## 6690 2018-09-02 2021-09-01 2018 2021
## 6691 2018-09-23 2021-09-23 2018 2021
## 6692 2018-05-25 2021-05-24 2018 2021
## 6693 2017-10-31 2020-10-30 2017 2020
## 6694 2018-05-15 2021-05-15 2018 2021
## 6695 2018-08-23 2021-08-22 2018 2021
## 6696 2018-01-28 2021-01-27 2018 2021
## 6697 2018-05-13 2021-05-12 2018 2021
## 6698 2018-02-20 2021-02-18 2018 2021
## 6699 2018-07-30 2021-07-29 2018 2021
## 6700 2018-11-09 2021-11-08 2018 2021
## 6701 2018-06-01 2021-05-31 2018 2021
## 6702 2018-09-15 2021-09-15 2018 2021
## 6703 2018-08-13 2021-08-12 2018 2021
## 6704 2018-08-31 2021-08-30 2018 2021
## 6705 2018-08-31 2021-08-30 2018 2021
## 6706 2018-06-30 2021-06-29 2018 2021
## 6707 2018-07-29 2021-07-28 2018 2021
## 6708 2017-11-12 2020-11-11 2017 2020
## 6709 2018-08-31 2021-08-29 2018 2021
## 6710 2018-09-02 2020-08-30 2018 2020
## 6711 2018-09-12 2021-09-11 2018 2021
## 6712 2018-08-31 2021-08-30 2018 2021
## 6713 2018-05-30 2021-05-29 2018 2021
## 6714 2018-06-28 2021-06-27 2018 2021
## 6715 2018-06-11 2021-06-11 2018 2021
## 6716 2018-02-11 2021-02-10 2018 2021
## 6717 2018-06-22 2021-06-21 2018 2021
## 6718 2018-09-10 2021-09-09 2018 2021
## 6719 2017-11-06 2020-11-03 2017 2020
## 6720 2018-09-15 2021-09-14 2018 2021
## 6721 2018-07-31 2021-07-30 2018 2021
## 6722 2018-09-30 2021-09-29 2018 2021
## 6723 2017-12-25 2020-12-24 2017 2020
## 6724 2018-08-05 2021-08-04 2018 2021
## 6725 2018-08-31 2021-08-31 2018 2021
## 6726 2018-06-06 2021-06-05 2018 2021
## 6727 2018-06-21 2021-06-20 2018 2021
## 6728 2018-09-19 2021-09-18 2018 2021
## 6729 2018-06-18 2021-06-17 2018 2021
## 6730 2018-07-23 2021-07-23 2018 2021
## 6731 2018-09-10 2021-09-09 2018 2021
## 6732 2018-05-20 2021-05-19 2018 2021
## 6733 2018-06-25 2021-06-24 2018 2021
## 6734 2018-09-17 2021-09-16 2018 2021
## 6735 2018-06-30 2021-06-29 2018 2021
## 6736 2018-08-14 2021-08-13 2018 2021
## 6737 2018-06-24 2021-06-24 2018 2021
## 6738 2018-05-14 2021-05-13 2018 2021
## 6739 2018-02-16 2021-02-16 2018 2021
## 6740 2018-09-10 2021-09-09 2018 2021
## 6741 2018-09-20 2021-09-19 2018 2021
## 6742 2018-02-11 2021-02-10 2018 2021
## 6743 2018-07-31 2021-07-30 2018 2021
## 6744 2018-09-13 2020-09-30 2018 2020
## 6745 2018-03-31 2021-03-28 2018 2021
## 6746 2018-07-26 2021-07-23 2018 2021
## 6747 2018-08-27 2021-08-26 2018 2021
## 6748 2018-07-24 2020-09-26 2018 2020
## 6749 2018-08-14 2021-08-14 2018 2021
## 6750 2018-01-14 2021-01-13 2018 2021
## 6751 2018-07-11 2021-03-30 2018 2021
## 6752 2018-05-13 2021-05-13 2018 2021
## 6753 2018-09-06 2021-09-05 2018 2021
## 6754 2018-09-09 2021-09-08 2018 2021
## 6755 2018-09-17 2021-09-16 2018 2021
## 6756 2018-06-22 2021-06-21 2018 2021
## 6757 2018-07-29 2021-07-28 2018 2021
## 6758 2018-07-24 2021-07-23 2018 2021
## 6759 2018-09-15 2021-09-14 2018 2021
## 6760 2018-02-14 2021-02-13 2018 2021
## 6761 2018-09-07 2021-09-06 2018 2021
## 6762 2018-12-31 2020-12-30 2018 2020
## 6763 2018-08-20 2021-08-19 2018 2021
## 6764 2018-06-01 2021-05-31 2018 2021
## 6765 2018-09-30 2020-10-30 2018 2020
## 6766 2018-09-21 2021-09-20 2018 2021
## 6767 2018-08-03 2021-08-02 2018 2021
## 6768 2018-08-24 2021-08-24 2018 2021
## 6769 2018-08-30 2021-08-29 2018 2021
## 6770 2018-08-31 2021-08-30 2018 2021
## 6771 2018-09-01 2021-09-01 2018 2021
## 6772 2018-09-17 2021-09-17 2018 2021
## 6773 2018-10-21 2021-10-20 2018 2021
## 6774 2017-12-18 2020-12-17 2017 2020
## 6775 2018-08-28 2021-08-27 2018 2021
## 6776 2018-03-26 2021-03-26 2018 2021
## 6777 2018-08-30 2021-08-29 2018 2021
## 6778 2018-06-10 2021-06-10 2018 2021
## 6779 2018-08-14 2021-08-13 2018 2021
## 6780 2018-09-06 2021-09-05 2018 2021
## 6781 2018-01-15 2021-01-14 2018 2021
## 6782 2018-08-23 2021-08-22 2018 2021
## 6783 2018-09-23 2021-09-22 2018 2021
## 6784 2017-11-12 2020-11-11 2017 2020
## 6785 2018-06-14 2021-06-13 2018 2021
## 6786 2018-07-01 2021-06-30 2018 2021
## 6787 2018-09-20 2021-09-19 2018 2021
## 6788 2018-08-31 2021-08-30 2018 2021
## 6789 2018-07-15 2021-07-15 2018 2021
## 6790 2018-01-30 2021-01-29 2018 2021
## 6791 2018-08-31 2021-08-30 2018 2021
## 6792 2018-08-31 2021-08-31 2018 2021
## 6793 2018-08-06 2021-08-05 2018 2021
## 6794 2018-01-23 2020-01-22 2018 2020
## 6795 2018-07-26 2021-07-25 2018 2021
## 6796 2018-09-04 2021-09-03 2018 2021
## 6797 2018-07-22 2021-07-21 2018 2021
## 6798 2019-01-31 2022-01-30 2019 2022
## 6799 2018-09-03 2021-09-02 2018 2021
## 6800 2018-01-21 2021-01-21 2018 2021
## 6801 2018-06-05 2021-06-04 2018 2021
## 6802 2018-09-30 2021-09-29 2018 2021
## 6803 2018-04-14 2021-04-14 2018 2021
## 6804 2018-05-15 2021-05-14 2018 2021
## 6805 2018-09-09 2021-09-08 2018 2021
## 6806 2018-09-30 2021-09-29 2018 2021
## 6807 2018-07-31 2021-07-30 2018 2021
## 6808 2018-02-20 2021-02-17 2018 2021
## 6809 2018-02-28 2021-02-28 2018 2021
## 6810 2017-11-19 2020-11-18 2017 2020
## 6811 2018-09-02 2021-09-01 2018 2021
## 6812 2018-07-31 2021-07-31 2018 2021
## 6813 2018-12-14 2021-12-13 2018 2021
## 6814 2018-09-05 2021-09-04 2018 2021
## 6815 2018-08-10 2021-08-09 2018 2021
## 6816 2017-10-31 2020-10-30 2017 2020
## 6817 2018-06-25 2021-06-24 2018 2021
## 6818 2017-12-25 2020-12-24 2017 2020
## 6819 2018-09-07 2021-09-07 2018 2021
## 6820 2018-06-14 2021-06-14 2018 2021
## 6821 2018-09-09 2021-09-08 2018 2021
## 6822 2018-09-16 2021-09-15 2018 2021
## 6823 2017-11-29 2018-11-07 2017 2018
## 6824 2018-09-30 2021-09-29 2018 2021
## 6825 2018-04-09 2021-04-08 2018 2021
## 6826 2018-02-03 2021-02-03 2018 2021
## 6827 2018-09-06 2021-09-05 2018 2021
## 6828 2018-06-30 2021-06-29 2018 2021
## 6829 2018-04-23 2021-04-22 2018 2021
## 6830 2018-07-29 2021-07-28 2018 2021
## 6831 2018-07-31 2021-07-30 2018 2021
## 6832 2018-05-20 2021-05-19 2018 2021
## 6833 2018-09-12 2021-09-11 2018 2021
## 6834 2018-10-18 2021-10-17 2018 2021
## 6835 2018-05-13 2021-05-12 2018 2021
## 6836 2018-09-27 2021-09-26 2018 2021
## 6837 2018-06-24 2021-06-23 2018 2021
## 6838 2018-04-18 2021-04-17 2018 2021
## 6839 2018-08-14 2021-08-13 2018 2021
## 6840 2018-08-28 2021-08-27 2018 2021
## 6841 2018-07-31 2021-07-30 2018 2021
## 6842 2017-12-28 2020-12-28 2017 2020
## 6843 2018-09-17 2021-09-16 2018 2021
## 6844 2018-09-06 2021-09-05 2018 2021
## 6845 2018-07-04 2021-07-04 2018 2021
## 6846 2018-01-11 2021-01-10 2018 2021
## 6847 2018-10-07 2021-10-07 2018 2021
## 6848 2018-09-10 2021-09-10 2018 2021
## 6849 2018-09-06 2021-09-05 2018 2021
## 6850 2018-09-10 2021-09-09 2018 2021
## 6851 2018-09-11 2021-09-10 2018 2021
## 6852 2017-10-11 2020-10-10 2017 2020
## 6853 2018-09-30 2021-09-29 2018 2021
## 6854 2018-07-31 2021-07-30 2018 2021
## 6855 2018-07-31 2021-07-31 2018 2021
## 6856 2018-07-08 2021-07-07 2018 2021
## 6857 2018-05-08 2021-05-07 2018 2021
## 6858 2018-01-25 2019-11-20 2018 2019
## 6859 2018-04-30 2021-04-30 2018 2021
## 6860 2018-08-31 2021-08-31 2018 2021
## 6861 2017-10-15 2020-09-09 2017 2020
## 6862 2018-11-14 2021-11-13 2018 2021
## 6863 2018-08-19 2021-08-18 2018 2021
## 6864 2017-10-24 2020-10-23 2017 2020
## 6865 2018-01-10 2021-01-09 2018 2021
## 6866 2017-11-19 2020-11-14 2017 2020
## 6867 2018-09-13 2021-09-12 2018 2021
## 6868 2018-08-31 2021-08-31 2018 2021
## 6869 2019-02-25 2022-02-24 2019 2022
## 6870 2018-09-09 2021-09-09 2018 2021
## 6871 2018-02-10 2021-02-07 2018 2021
## 6872 2018-02-28 2021-02-28 2018 2021
## 6873 2018-10-26 2021-10-25 2018 2021
## 6874 2018-09-25 2021-09-24 2018 2021
## 6875 2018-08-31 2021-08-30 2018 2021
## 6876 2018-11-11 2021-11-10 2018 2021
## 6877 2018-06-21 2021-06-20 2018 2021
## 6878 2018-09-16 2021-09-15 2018 2021
## 6879 2018-08-11 2021-08-11 2018 2021
## 6880 2018-08-19 2021-08-19 2018 2021
## 6881 2018-07-31 2021-07-30 2018 2021
## 6882 2018-06-14 2021-01-08 2018 2021
## 6883 2018-07-14 2021-07-13 2018 2021
## 6884 2018-09-20 2021-09-19 2018 2021
## 6885 2018-08-09 2021-08-08 2018 2021
## 6886 2017-12-31 2020-12-30 2017 2020
## 6887 2018-04-10 2020-01-16 2018 2020
## 6888 2018-01-22 2021-01-21 2018 2021
## 6889 2018-02-28 2019-09-01 2018 2019
## 6890 2018-08-19 2021-08-18 2018 2021
## 6891 2018-09-03 2021-09-02 2018 2021
## 6892 2018-11-10 2021-11-10 2018 2021
## 6893 2018-08-31 2021-08-30 2018 2021
## 6894 2018-07-31 2021-07-30 2018 2021
## 6895 2018-09-06 2020-09-05 2018 2020
## 6896 2018-11-22 2021-11-21 2018 2021
## 6897 2018-08-20 2021-08-20 2018 2021
## 6898 2018-07-22 2021-07-21 2018 2021
## 6899 2017-11-21 2020-11-21 2017 2020
## 6900 2018-07-08 2021-07-07 2018 2021
## 6901 2018-09-22 2021-09-21 2018 2021
## 6902 2017-10-26 2020-10-24 2017 2020
## 6903 2018-09-18 2021-09-17 2018 2021
## 6904 2017-11-01 2020-10-31 2017 2020
## 6905 2018-09-03 2021-09-03 2018 2021
## 6906 2018-03-27 2021-03-26 2018 2021
## 6907 2018-07-31 2021-07-30 2018 2021
## 6908 2018-08-31 2021-08-30 2018 2021
## 6909 2018-02-07 2021-02-06 2018 2021
## 6910 2018-09-23 2021-09-23 2018 2021
## 6911 2018-02-11 2021-02-10 2018 2021
## 6912 2018-08-01 2021-07-31 2018 2021
## 6913 2018-05-13 2020-06-10 2018 2020
## 6914 2018-09-06 2021-09-05 2018 2021
## 6915 2018-08-19 2021-08-18 2018 2021
## 6916 2018-03-25 2020-11-29 2018 2020
## 6917 2018-08-14 2021-08-14 2018 2021
## 6918 2018-08-31 2021-08-31 2018 2021
## 6919 2018-09-11 2021-09-11 2018 2021
## 6920 2018-07-08 2021-07-07 2018 2021
## 6921 2018-08-03 2021-08-03 2018 2021
## 6922 2018-07-24 2021-07-23 2018 2021
## 6923 2018-08-21 2021-08-20 2018 2021
## 6924 2017-10-29 2020-10-28 2017 2020
## 6925 2018-02-04 2021-02-03 2018 2021
## 6926 2018-09-13 2021-09-12 2018 2021
## 6927 2018-08-19 2021-08-18 2018 2021
## 6928 2018-04-30 2021-04-29 2018 2021
## 6929 2018-09-13 2021-09-12 2018 2021
## 6930 2018-09-09 2021-09-09 2018 2021
## 6931 2017-11-19 2020-11-18 2017 2020
## 6932 2018-09-18 2021-09-17 2018 2021
## 6933 2017-11-29 2020-11-28 2017 2020
## 6934 2018-08-31 2021-08-31 2018 2021
## 6935 2018-08-31 2018-12-25 2018 2018
## 6936 2018-08-28 2021-08-27 2018 2021
## 6937 2018-08-08 2021-08-07 2018 2021
## 6938 2017-11-01 2020-10-31 2017 2020
## 6939 2018-08-24 2021-08-23 2018 2021
## 6940 2017-10-30 2019-12-11 2017 2019
## 6941 2018-08-31 2021-08-29 2018 2021
## 6942 2018-06-14 2021-06-14 2018 2021
## 6943 2018-09-06 2021-09-05 2018 2021
## 6944 2018-09-15 2021-09-14 2018 2021
## 6945 2018-08-28 2021-08-27 2018 2021
## 6946 2017-11-14 2019-09-29 2017 2019
## 6947 2018-07-19 2021-07-18 2018 2021
## 6948 2018-01-31 2021-01-30 2018 2021
## 6949 2018-10-25 2021-10-24 2018 2021
## 6950 2018-06-06 2021-06-05 2018 2021
## 6951 2018-09-04 2021-09-03 2018 2021
## 6952 2018-09-13 2021-09-13 2018 2021
## 6953 2018-09-09 2021-09-08 2018 2021
## 6954 2018-08-23 2021-08-22 2018 2021
## 6955 2018-02-07 2021-02-06 2018 2021
## 6956 2018-02-14 2021-02-14 2018 2021
## 6957 2018-07-22 2021-07-21 2018 2021
## 6958 2018-09-13 2021-09-13 2018 2021
## 6959 2018-08-22 2021-08-21 2018 2021
## 6960 2018-08-02 2021-08-01 2018 2021
## 6961 2017-11-21 2020-11-21 2017 2020
## 6962 2018-09-17 2021-09-16 2018 2021
## 6963 2017-10-22 2020-10-21 2017 2020
## 6964 2018-07-24 2021-07-23 2018 2021
## 6965 2018-07-01 2021-07-01 2018 2021
## 6966 2018-07-02 2021-06-29 2018 2021
## 6967 2018-02-07 2021-02-07 2018 2021
## 6968 2018-07-30 2021-07-29 2018 2021
## 6969 2018-09-04 2021-09-03 2018 2021
## 6970 2017-12-19 2020-12-18 2017 2020
## 6971 2018-06-30 2021-06-29 2018 2021
## 6972 2018-09-11 2021-09-10 2018 2021
## 6973 2018-01-07 2021-01-07 2018 2021
## 6974 2018-05-16 2021-05-15 2018 2021
## 6975 2018-11-16 2021-11-16 2018 2021
## 6976 2018-07-17 2021-07-16 2018 2021
## 6977 2018-09-19 2021-09-18 2018 2021
## 6978 2018-09-24 2021-09-24 2018 2021
## 6979 2018-09-12 2021-09-11 2018 2021
## 6980 2018-05-14 2021-05-13 2018 2021
## 6981 2018-07-08 2020-12-29 2018 2020
## 6982 2018-09-19 2021-09-19 2018 2021
## 6983 2018-09-02 2021-09-01 2018 2021
## 6984 2018-06-20 2021-06-19 2018 2021
## 6985 2017-12-12 2020-12-12 2017 2020
## 6986 2017-10-11 2020-10-10 2017 2020
## 6987 2018-09-18 2021-09-17 2018 2021
## 6988 2018-08-27 2021-08-26 2018 2021
## 6989 2017-10-15 2019-09-11 2017 2019
## 6990 2018-09-09 2021-09-09 2018 2021
## 6991 2018-06-06 2021-06-05 2018 2021
## 6992 2018-09-03 2021-09-03 2018 2021
## 6993 2018-07-31 2021-07-30 2018 2021
## 6994 2018-08-19 2021-08-18 2018 2021
## 6995 2018-09-24 2021-09-23 2018 2021
## 6996 2018-04-01 2021-04-01 2018 2021
## 6997 2018-08-19 2021-08-18 2018 2021
## 6998 2018-07-31 2021-07-30 2018 2021
## 6999 2018-08-24 2021-08-24 2018 2021
## 7000 2018-08-31 2021-08-30 2018 2021
## 7001 2018-09-09 2021-09-08 2018 2021
## 7002 2018-09-01 2021-08-31 2018 2021
## 7003 2018-09-04 2021-09-03 2018 2021
## 7004 2018-08-07 2021-08-06 2018 2021
## 7005 2018-08-19 2021-08-18 2018 2021
## 7006 2018-03-13 2021-03-12 2018 2021
## 7007 2017-10-15 2020-10-14 2017 2020
## 7008 2018-09-12 2021-09-11 2018 2021
## 7009 2017-11-01 2020-10-31 2017 2020
## 7010 2018-09-01 2021-08-31 2018 2021
## 7011 2018-08-30 2021-08-29 2018 2021
## 7012 2019-03-05 2022-03-04 2019 2022
## 7013 2018-09-04 2021-09-03 2018 2021
## 7014 2018-08-31 2021-03-30 2018 2021
## 7015 2018-07-04 2021-07-03 2018 2021
## 7016 2018-08-31 2021-08-30 2018 2021
## 7017 2018-07-15 2020-02-15 2018 2020
## 7018 2018-08-19 2021-08-18 2018 2021
## 7019 2018-01-11 2021-01-11 2018 2021
## 7020 2018-07-31 2021-07-30 2018 2021
## 7021 2017-12-31 2020-12-30 2017 2020
## 7022 2018-07-17 2021-07-16 2018 2021
## 7023 2018-12-03 2021-12-02 2018 2021
## 7024 2017-12-03 2020-12-02 2017 2020
## 7025 2018-05-02 2021-05-01 2018 2021
## 7026 2018-08-21 2021-08-20 2018 2021
## 7027 2018-07-23 2021-07-22 2018 2021
## 7028 2018-08-31 2021-08-30 2018 2021
## 7029 2018-05-17 2021-05-16 2018 2021
## 7030 2018-08-21 2021-08-13 2018 2021
## 7031 2018-08-30 2021-08-29 2018 2021
## 7032 2018-01-31 2021-01-30 2018 2021
## 7033 2018-06-30 2021-06-29 2018 2021
## 7034 2018-01-31 2021-01-30 2018 2021
## 7035 2018-09-14 2021-09-13 2018 2021
## 7036 2018-03-13 2021-03-12 2018 2021
## 7037 2018-10-31 2020-10-30 2018 2020
## 7038 2018-05-31 2021-05-30 2018 2021
## 7039 2018-08-14 2021-08-14 2018 2021
## 7040 2017-10-01 2020-10-01 2017 2020
## 7041 2018-05-07 2021-05-06 2018 2021
## 7042 2018-03-13 2021-03-12 2018 2021
## 7043 2018-08-19 2021-08-19 2018 2021
## 7044 2018-08-15 2021-08-14 2018 2021
## 7045 2018-02-04 2021-02-04 2018 2021
## 7046 2018-04-15 2021-04-14 2018 2021
## 7047 2018-07-31 2021-07-30 2018 2021
## 7048 2018-08-16 2021-08-16 2018 2021
## 7049 2018-02-11 2019-06-19 2018 2019
## 7050 2018-09-10 2021-09-10 2018 2021
## 7051 2018-09-29 2021-09-28 2018 2021
## 7052 2018-09-18 2021-09-18 2018 2021
## 7053 2018-08-08 2021-08-05 2018 2021
## 7054 2018-12-01 2021-11-30 2018 2021
## 7055 2018-05-23 2021-05-22 2018 2021
## 7056 2018-08-20 2021-08-20 2018 2021
## 7057 2017-10-26 2020-10-23 2017 2020
## 7058 2018-09-11 2021-09-10 2018 2021
## 7059 2018-11-11 2021-11-11 2018 2021
## 7060 2018-06-03 2021-06-03 2018 2021
## 7061 2017-11-20 2020-11-19 2017 2020
## 7062 2018-01-30 2019-09-16 2018 2019
## 7063 2018-06-30 2021-06-29 2018 2021
## 7064 2018-10-01 2019-09-30 2018 2019
## 7065 2018-09-07 2021-09-04 2018 2021
## 7066 2018-08-05 2020-05-19 2018 2020
## 7067 2018-09-11 2021-09-10 2018 2021
## 7068 2018-12-31 2021-12-30 2018 2021
## 7069 2018-11-01 2021-10-31 2018 2021
## 7070 2018-08-26 2020-01-13 2018 2020
## 7071 2018-06-14 2021-06-14 2018 2021
## 7072 2018-05-24 2021-05-24 2018 2021
## 7073 2018-09-11 2021-09-10 2018 2021
## 7074 2018-08-13 2021-08-13 2018 2021
## 7075 2018-08-04 2021-08-03 2018 2021
## 7076 2018-06-24 2021-06-24 2018 2021
## 7077 2018-06-28 2021-06-27 2018 2021
## 7078 2018-09-07 2021-09-06 2018 2021
## 7079 2018-09-09 2021-09-08 2018 2021
## 7080 2018-09-23 2021-09-22 2018 2021
## 7081 2018-09-06 2021-09-05 2018 2021
## 7082 2018-08-05 2021-08-04 2018 2021
## 7083 2018-09-21 2021-09-21 2018 2021
## 7084 2018-01-18 2021-01-17 2018 2021
## 7085 2018-06-19 2021-06-19 2018 2021
## 7086 2018-03-14 2021-03-13 2018 2021
## 7087 2018-08-31 2021-08-30 2018 2021
## 7088 2018-03-31 2021-03-30 2018 2021
## 7089 2018-09-03 2021-09-02 2018 2021
## 7090 2018-08-13 2021-08-12 2018 2021
## 7091 2018-09-23 2021-09-22 2018 2021
## 7092 2018-08-22 2021-08-21 2018 2021
## 7093 2018-04-30 2020-04-29 2018 2020
## 7094 2018-05-14 2021-05-13 2018 2021
## 7095 2018-03-25 2021-03-25 2018 2021
## 7096 2018-09-02 2021-09-01 2018 2021
## 7097 2018-09-02 2021-09-01 2018 2021
## 7098 2018-05-06 2021-05-05 2018 2021
## 7099 2018-08-22 2021-08-21 2018 2021
## 7100 2018-03-17 2021-03-14 2018 2021
## 7101 2018-03-06 2021-03-06 2018 2021
## 7102 2018-09-08 2021-09-08 2018 2021
## 7103 2018-05-31 2021-05-28 2018 2021
## 7104 2018-08-29 2021-08-29 2018 2021
## 7105 2018-01-05 2021-01-05 2018 2021
## 7106 2018-02-22 2021-02-21 2018 2021
## 7107 2018-09-19 2021-09-18 2018 2021
## 7108 2018-09-16 2021-09-15 2018 2021
## 7109 2017-10-30 2020-10-30 2017 2020
## 7110 2017-11-13 2020-11-10 2017 2020
## 7111 2018-04-01 2021-03-31 2018 2021
## 7112 2018-08-31 2021-08-30 2018 2021
## 7113 2018-09-03 2021-09-02 2018 2021
## 7114 2018-08-31 2021-08-31 2018 2021
## 7115 2018-06-14 2021-06-14 2018 2021
## 7116 2018-05-13 2021-05-12 2018 2021
## 7117 2018-07-07 2021-07-06 2018 2021
## 7118 2018-02-20 2021-02-19 2018 2021
## 7119 2018-09-09 2021-09-08 2018 2021
## 7120 2018-09-02 2021-09-01 2018 2021
## 7121 2018-10-06 2021-10-06 2018 2021
## 7122 2018-06-30 2021-06-29 2018 2021
## 7123 2018-12-31 2021-12-30 2018 2021
## 7124 2018-08-20 2021-08-20 2018 2021
## 7125 2018-03-11 2021-03-10 2018 2021
## 7126 2018-09-11 2021-09-10 2018 2021
## 7127 2018-04-30 2021-04-30 2018 2021
## 7128 2017-12-03 2020-12-02 2017 2020
## 7129 2018-07-02 2021-07-02 2018 2021
## 7130 2018-09-07 2021-09-07 2018 2021
## 7131 2019-01-30 2022-01-29 2019 2022
## 7132 2018-08-23 2021-08-22 2018 2021
## 7133 2018-10-27 2021-10-27 2018 2021
## 7134 2018-08-16 2021-08-16 2018 2021
## 7135 2018-03-11 2021-03-11 2018 2021
## 7136 2018-09-07 2021-09-07 2018 2021
## 7137 2018-08-29 2021-08-28 2018 2021
## 7138 2017-11-05 2020-09-26 2017 2020
## 7139 2018-06-30 2021-06-29 2018 2021
## 7140 2018-08-06 2021-08-06 2018 2021
## 7141 2018-09-05 2021-09-04 2018 2021
## 7142 2018-09-02 2021-09-01 2018 2021
## 7143 2018-09-09 2021-09-08 2018 2021
## 7144 2018-09-06 2021-09-05 2018 2021
## 7145 2018-01-31 2021-01-30 2018 2021
## 7146 2018-09-19 2021-09-18 2018 2021
## 7147 2018-05-27 2021-05-26 2018 2021
## 7148 2018-05-20 2021-05-20 2018 2021
## 7149 2018-03-14 2021-03-13 2018 2021
## 7150 2017-12-17 2020-12-16 2017 2020
## 7151 2018-09-04 2021-09-03 2018 2021
## 7152 2017-10-16 2020-10-15 2017 2020
## 7153 2018-09-07 2021-09-06 2018 2021
## 7154 2018-08-18 2021-08-17 2018 2021
## 7155 2018-09-09 2021-09-08 2018 2021
## 7156 2018-01-02 2021-01-01 2018 2021
## 7157 2018-09-01 2021-08-31 2018 2021
## 7158 2018-09-04 2021-09-04 2018 2021
## 7159 2018-03-04 2021-03-03 2018 2021
## 7160 2018-04-14 2021-04-14 2018 2021
## 7161 2017-12-03 2020-12-02 2017 2020
## 7162 2018-08-12 2021-07-31 2018 2021
## 7163 2018-04-25 2018-08-26 2018 2018
## 7164 2018-09-10 2021-09-09 2018 2021
## 7165 2018-07-09 2021-07-08 2018 2021
## 7166 2018-09-02 2020-12-30 2018 2020
## 7167 2018-09-09 2020-08-06 2018 2020
## 7168 2018-08-07 2021-08-06 2018 2021
## 7169 2018-04-05 2021-04-04 2018 2021
## 7170 2017-11-14 2020-11-13 2017 2020
## 7171 2018-08-24 2021-08-24 2018 2021
## 7172 2018-04-03 2021-04-02 2018 2021
## 7173 2017-10-31 2020-09-29 2017 2020
## 7174 2018-03-29 2021-03-27 2018 2021
## 7175 2018-08-27 2021-08-27 2018 2021
## 7176 2018-09-18 2021-09-17 2018 2021
## 7177 2018-09-01 2021-08-31 2018 2021
## 7178 2018-04-08 2021-04-07 2018 2021
## 7179 2018-02-08 2019-02-14 2018 2019
## 7180 2018-09-07 2021-09-07 2018 2021
## 7181 2018-09-30 2021-09-29 2018 2021
## 7182 2018-06-30 2019-08-27 2018 2019
## 7183 2018-05-28 2019-08-30 2018 2019
## 7184 2018-09-23 2021-09-22 2018 2021
## 7185 2018-08-22 2021-08-22 2018 2021
## 7186 2018-09-04 2021-09-03 2018 2021
## 7187 2018-02-14 2021-02-13 2018 2021
## 7188 2018-06-06 2021-06-05 2018 2021
## 7189 2018-07-01 2021-07-01 2018 2021
## 7190 2018-06-30 2021-06-30 2018 2021
## 7191 2018-05-20 2021-05-20 2018 2021
## 7192 2018-05-28 2021-05-27 2018 2021
## 7193 2018-07-24 2021-07-23 2018 2021
## 7194 2018-09-21 2021-09-20 2018 2021
## 7195 2018-07-24 2021-07-24 2018 2021
## 7196 2018-09-01 2021-08-31 2018 2021
## 7197 2018-05-02 2018-12-30 2018 2018
## 7198 2017-11-28 2020-11-27 2017 2020
## 7199 2018-08-25 2021-08-24 2018 2021
## 7200 2018-08-23 2021-08-23 2018 2021
## 7201 2017-12-20 2020-12-20 2017 2020
## 7202 2018-04-11 2021-04-10 2018 2021
## 7203 2018-06-14 2021-06-14 2018 2021
## 7204 2018-07-07 2021-07-06 2018 2021
## 7205 2018-08-14 2021-08-13 2018 2021
## 7206 2018-12-11 2021-12-11 2018 2021
## 7207 2018-08-14 2021-08-13 2018 2021
## 7208 2018-07-31 2021-07-30 2018 2021
## 7209 2018-02-19 2021-02-16 2018 2021
## 7210 2018-05-31 2021-05-31 2018 2021
## 7211 2018-04-12 2021-04-12 2018 2021
## 7212 2018-06-19 2021-06-18 2018 2021
## 7213 2018-09-20 2021-09-19 2018 2021
## 7214 2018-04-30 2021-04-29 2018 2021
## 7215 2018-09-18 2021-09-18 2018 2021
## 7216 2018-03-11 2021-03-10 2018 2021
## 7217 2018-08-10 2021-08-09 2018 2021
## 7218 2018-09-04 2021-09-03 2018 2021
## 7219 2018-09-12 2021-09-11 2018 2021
## 7220 2017-11-08 2020-11-07 2017 2020
## 7221 2018-12-21 2021-12-20 2018 2021
## 7222 2018-06-14 2021-06-14 2018 2021
## 7223 2018-08-03 2021-08-02 2018 2021
## 7224 2018-09-04 2021-09-03 2018 2021
## 7225 2018-09-11 2021-09-11 2018 2021
## 7226 2018-08-31 2021-08-30 2018 2021
## 7227 2018-08-22 2021-08-22 2018 2021
## 7228 2018-08-14 2021-08-13 2018 2021
## 7229 2018-08-23 2021-08-22 2018 2021
## 7230 2017-12-24 2020-12-23 2017 2020
## 7231 2018-08-30 2021-08-30 2018 2021
## 7232 2018-08-16 2021-08-16 2018 2021
## 7233 2018-12-06 2021-12-05 2018 2021
## 7234 2018-01-31 2021-01-30 2018 2021
## 7235 2018-09-08 2021-09-07 2018 2021
## 7236 2018-08-26 2021-08-26 2018 2021
## 7237 2018-08-31 2021-08-30 2018 2021
## 7238 2018-04-01 2021-03-31 2018 2021
## 7239 2018-08-31 2021-03-30 2018 2021
## 7240 2018-06-20 2021-06-20 2018 2021
## 7241 2018-09-14 2021-09-13 2018 2021
## 7242 2017-10-31 2020-10-30 2017 2020
## 7243 2018-04-08 2021-04-08 2018 2021
## 7244 2018-09-04 2021-09-04 2018 2021
## 7245 2018-09-06 2021-09-05 2018 2021
## 7246 2018-09-13 2021-09-12 2018 2021
## 7247 2018-07-05 2021-07-04 2018 2021
## 7248 2018-02-12 2021-02-11 2018 2021
## 7249 2018-12-31 2021-12-30 2018 2021
## 7250 2018-03-10 2021-03-09 2018 2021
## 7251 2018-08-21 2021-08-20 2018 2021
## 7252 2018-08-14 2021-08-13 2018 2021
## 7253 2018-08-31 2021-08-30 2018 2021
## 7254 2019-01-02 2022-01-01 2019 2022
## 7255 2018-01-24 2021-01-24 2018 2021
## 7256 2018-01-25 2018-09-11 2018 2018
## 7257 2018-10-28 2021-10-27 2018 2021
## 7258 2018-08-17 2021-08-16 2018 2021
## 7259 2018-06-24 2021-06-23 2018 2021
## 7260 2017-12-14 2020-12-14 2017 2020
## 7261 2017-12-19 2018-12-18 2017 2018
## 7262 2017-12-06 2020-12-05 2017 2020
## 7263 2018-06-02 2021-06-01 2018 2021
## 7264 2018-06-30 2021-06-29 2018 2021
## 7265 2018-05-20 2021-05-19 2018 2021
## 7266 2018-05-18 2021-05-17 2018 2021
## 7267 2018-06-26 2021-06-25 2018 2021
## 7268 2018-06-30 2021-06-29 2018 2021
## 7269 2018-09-01 2021-09-01 2018 2021
## 7270 2018-09-15 2021-09-14 2018 2021
## 7271 2018-06-17 2021-06-16 2018 2021
## 7272 2018-07-31 2021-07-30 2018 2021
## 7273 2018-09-13 2021-09-13 2018 2021
## 7274 2018-04-16 2021-04-06 2018 2021
## 7275 2018-09-11 2021-09-11 2018 2021
## 7276 2018-09-01 2021-08-31 2018 2021
## 7277 2018-02-07 2021-02-06 2018 2021
## 7278 2018-09-19 2021-09-18 2018 2021
## 7279 2018-08-18 2021-08-17 2018 2021
## 7280 2018-08-14 2021-08-13 2018 2021
## 7281 2018-09-20 2021-09-19 2018 2021
## 7282 2018-11-08 2021-11-08 2018 2021
## 7283 2018-08-29 2021-08-28 2018 2021
## 7284 2017-12-31 2020-12-31 2017 2020
## 7285 2018-09-10 2021-09-09 2018 2021
## 7286 2018-06-10 2021-06-10 2018 2021
## 7287 2017-12-31 2020-12-31 2017 2020
## 7288 2018-04-19 2021-04-18 2018 2021
## 7289 2018-08-31 2021-08-30 2018 2021
## 7290 2018-03-17 2021-03-16 2018 2021
## 7291 2018-07-30 2021-07-29 2018 2021
## 7292 2018-06-12 2021-06-12 2018 2021
## 7293 2018-08-21 2021-08-20 2018 2021
## 7294 2018-03-21 2021-03-21 2018 2021
## 7295 2018-09-04 2021-09-03 2018 2021
## 7296 2018-07-29 2021-07-28 2018 2021
## 7297 2018-08-31 2021-08-29 2018 2021
## 7298 2018-07-15 2021-07-14 2018 2021
## 7299 2018-03-25 2020-12-30 2018 2020
## 7300 2017-10-01 2020-10-01 2017 2020
## 7301 2018-09-13 2021-09-12 2018 2021
## 7302 2018-08-07 2021-08-07 2018 2021
## 7303 2018-05-11 2021-05-11 2018 2021
## 7304 2018-02-10 2021-02-07 2018 2021
## 7305 2018-02-09 2021-02-09 2018 2021
## 7306 2018-10-30 2021-10-30 2018 2021
## 7307 2018-08-05 2021-08-05 2018 2021
## 7308 2018-08-31 2021-08-30 2018 2021
## 7309 2018-01-11 2019-06-29 2018 2019
## 7310 2018-09-17 2021-09-17 2018 2021
## 7311 2018-07-08 2020-01-02 2018 2020
## 7312 2018-09-14 2021-09-13 2018 2021
## 7313 2018-09-30 2021-09-29 2018 2021
## 7314 2018-08-10 2021-08-09 2018 2021
## 7315 2018-08-27 2021-08-26 2018 2021
## 7316 2018-09-14 2021-09-14 2018 2021
## 7317 2018-03-21 2021-03-20 2018 2021
## 7318 2018-09-11 2021-09-10 2018 2021
## 7319 2018-09-10 2021-09-09 2018 2021
## 7320 2018-08-31 2021-08-30 2018 2021
## 7321 2018-09-03 2021-09-02 2018 2021
## 7322 2019-02-11 2022-02-10 2019 2022
## 7323 2018-03-28 2021-03-27 2018 2021
## 7324 2018-08-12 2021-08-11 2018 2021
## 7325 2018-04-08 2021-04-07 2018 2021
## 7326 2018-04-13 2021-04-12 2018 2021
## 7327 2018-08-03 2021-08-02 2018 2021
## 7328 2018-09-15 2021-09-14 2018 2021
## 7329 2018-05-23 2021-05-23 2018 2021
## 7330 2018-09-14 2021-09-13 2018 2021
## 7331 2017-12-20 2019-12-19 2017 2019
## 7332 2018-08-31 2021-08-30 2018 2021
## 7333 2018-07-31 2021-07-27 2018 2021
## 7334 2018-02-14 2021-02-13 2018 2021
## 7335 2017-11-19 2020-11-18 2017 2020
## 7336 2017-12-13 2020-12-12 2017 2020
## 7337 2017-12-13 2020-12-12 2017 2020
## 7338 2018-08-31 2021-08-30 2018 2021
## 7339 2018-08-14 2021-08-14 2018 2021
## 7340 2018-07-30 2021-07-30 2018 2021
## 7341 2018-11-30 2021-11-30 2018 2021
## 7342 2018-09-02 2021-09-01 2018 2021
## 7343 2018-06-28 2021-06-28 2018 2021
## 7344 2018-08-30 2021-08-29 2018 2021
## 7345 2018-07-05 2021-07-04 2018 2021
## 7346 2018-04-15 2021-04-14 2018 2021
## 7347 2017-11-20 2020-11-14 2017 2020
## 7348 2017-11-21 2020-11-20 2017 2020
## 7349 2018-10-18 2021-10-17 2018 2021
## 7350 2018-07-10 2021-07-10 2018 2021
## 7351 2018-09-06 2019-09-05 2018 2019
## 7352 2018-09-08 2021-09-08 2018 2021
## 7353 2018-07-31 2021-07-31 2018 2021
## 7354 2017-11-16 2020-11-13 2017 2020
## 7355 2018-09-19 2021-09-18 2018 2021
## 7356 2018-09-11 2021-09-11 2018 2021
## 7357 2018-07-11 2021-07-10 2018 2021
## 7358 2018-02-04 2021-02-03 2018 2021
## 7359 2018-09-13 2021-09-12 2018 2021
## 7360 2017-11-01 2020-05-29 2017 2020
## 7361 2018-08-07 2021-08-06 2018 2021
## 7362 2018-08-20 2021-08-19 2018 2021
## 7363 2017-11-04 2020-11-01 2017 2020
## 7364 2018-06-24 2021-06-24 2018 2021
## 7365 2018-05-29 2021-05-28 2018 2021
## 7366 2018-07-15 2021-07-14 2018 2021
## 7367 2018-09-11 2021-09-10 2018 2021
## 7368 2018-01-16 2020-08-26 2018 2020
## 7369 2018-09-14 2021-09-13 2018 2021
## 7370 2018-06-30 2021-06-27 2018 2021
## 7371 2018-08-27 2021-08-26 2018 2021
## 7372 2018-09-16 2021-09-15 2018 2021
## 7373 2018-06-14 2021-06-14 2018 2021
## 7374 2018-06-24 2021-06-23 2018 2021
## 7375 2018-09-03 2021-08-18 2018 2021
## 7376 2018-09-30 2021-09-29 2018 2021
## 7377 2018-08-13 2021-08-12 2018 2021
## 7378 2018-05-27 2021-05-26 2018 2021
## 7379 2018-03-18 2021-03-17 2018 2021
## 7380 2018-04-30 2021-04-29 2018 2021
## 7381 2018-09-14 2021-09-13 2018 2021
## 7382 2018-09-27 2021-09-26 2018 2021
## 7383 2018-01-13 2021-01-13 2018 2021
## 7384 2018-08-19 2021-08-18 2018 2021
## 7385 2017-12-27 2020-12-27 2017 2020
## 7386 2018-09-15 2021-09-14 2018 2021
## 7387 2018-09-14 2021-09-13 2018 2021
## 7388 2018-01-31 2021-01-31 2018 2021
## 7389 2018-07-02 2021-07-01 2018 2021
## 7390 2017-10-01 2020-09-30 2017 2020
## 7391 2018-04-26 2021-04-25 2018 2021
## 7392 2018-07-30 2021-07-29 2018 2021
## 7393 2018-08-02 2019-08-09 2018 2019
## 7394 2018-08-31 2021-08-30 2018 2021
## 7395 2018-09-18 2021-09-18 2018 2021
## 7396 2018-03-30 2021-03-29 2018 2021
## 7397 2018-04-29 2021-04-28 2018 2021
## 7398 2018-08-05 2021-08-04 2018 2021
## 7399 2018-03-14 2021-03-13 2018 2021
## 7400 2018-02-28 2021-02-28 2018 2021
## 7401 2018-09-12 2021-09-11 2018 2021
## 7402 2018-07-30 2021-07-30 2018 2021
## 7403 2018-12-29 2021-12-28 2018 2021
## 7404 2018-08-31 2021-08-30 2018 2021
## 7405 2018-09-18 2021-09-18 2018 2021
## 7406 2018-08-20 2021-08-19 2018 2021
## 7407 2018-03-12 2021-03-09 2018 2021
## 7408 2018-09-08 2021-09-07 2018 2021
## 7409 2018-09-10 2021-09-09 2018 2021
## 7410 2018-09-04 2021-09-03 2018 2021
## 7411 2018-09-03 2021-05-07 2018 2021
## 7412 2018-08-05 2021-08-05 2018 2021
## 7413 2018-09-18 2021-09-18 2018 2021
## 7414 2018-09-09 2021-09-09 2018 2021
## 7415 2018-03-09 2021-03-09 2018 2021
## 7416 2018-09-03 2021-09-02 2018 2021
## 7417 2018-08-31 2020-08-30 2018 2020
## 7418 2018-08-26 2019-03-30 2018 2019
## 7419 2018-08-31 2021-08-30 2018 2021
## 7420 2018-07-22 2021-07-21 2018 2021
## 7421 2018-09-30 2021-09-29 2018 2021
## 7422 2017-12-31 2020-12-30 2017 2020
## 7423 2018-09-14 2021-09-14 2018 2021
## 7424 2018-10-31 2021-10-30 2018 2021
## 7425 2017-10-22 2020-10-19 2017 2020
## 7426 2017-10-02 2020-10-02 2017 2020
## 7427 2018-09-09 2021-09-08 2018 2021
## 7428 2018-03-31 2021-03-28 2018 2021
## 7429 2017-09-28 2019-08-30 2017 2019
## 7430 2018-08-31 2021-08-30 2018 2021
## 7431 2018-09-11 2021-09-10 2018 2021
## 7432 2017-12-02 2020-12-02 2017 2020
## 7433 2018-06-30 2021-06-29 2018 2021
## 7434 2018-08-12 2021-08-11 2018 2021
## 7435 2018-05-31 2021-05-31 2018 2021
## 7436 2018-01-01 2020-12-31 2018 2020
## 7437 2018-08-31 2021-08-30 2018 2021
## 7438 2017-11-05 2019-05-21 2017 2019
## 7439 2018-08-31 2021-08-30 2018 2021
## 7440 2018-08-14 2021-08-13 2018 2021
## 7441 2018-09-30 2021-09-29 2018 2021
## 7442 2018-09-24 2021-09-23 2018 2021
## 7443 2018-07-31 2021-07-30 2018 2021
## 7444 2018-09-12 2021-09-11 2018 2021
## 7445 2018-03-18 2021-03-17 2018 2021
## 7446 2018-02-14 2021-02-13 2018 2021
## 7447 2017-10-31 2020-10-28 2017 2020
## 7448 2018-11-05 2021-11-04 2018 2021
## 7449 2018-09-19 2021-09-19 2018 2021
## 7450 2018-08-01 2021-07-31 2018 2021
## 7451 2019-01-13 2022-01-12 2019 2022
## 7452 2018-03-20 2021-03-19 2018 2021
## 7453 2018-06-21 2021-06-21 2018 2021
## 7454 2018-09-09 2021-09-08 2018 2021
## 7455 2018-08-28 2021-08-27 2018 2021
## 7456 2018-09-24 2021-09-23 2018 2021
## 7457 2017-11-29 2020-11-28 2017 2020
## 7458 2018-07-16 2021-07-16 2018 2021
## 7459 2018-01-15 2021-01-14 2018 2021
## 7460 2018-09-16 2021-09-16 2018 2021
## 7461 2018-09-17 2021-09-16 2018 2021
## 7462 2018-09-10 2021-09-10 2018 2021
## 7463 2018-01-07 2021-01-06 2018 2021
## 7464 2018-09-03 2021-09-02 2018 2021
## 7465 2018-06-29 2021-06-27 2018 2021
## 7466 2018-06-04 2021-06-03 2018 2021
## 7467 2018-05-27 2021-05-26 2018 2021
## 7468 2018-08-27 2021-08-27 2018 2021
## 7469 2018-06-21 2021-06-20 2018 2021
## 7470 2018-06-24 2021-06-23 2018 2021
## 7471 2018-02-21 2020-08-11 2018 2020
## 7472 2018-05-30 2021-05-30 2018 2021
## 7473 2018-01-07 2021-01-04 2018 2021
## 7474 2018-09-19 2021-09-18 2018 2021
## 7475 2018-08-05 2020-08-26 2018 2020
## 7476 2018-07-31 2021-07-31 2018 2021
## 7477 2018-08-30 2021-08-30 2018 2021
## 7478 2018-03-14 2021-03-13 2018 2021
## 7479 2018-02-22 2020-09-29 2018 2020
## 7480 2018-01-07 2021-01-06 2018 2021
## 7481 2018-06-13 2021-06-13 2018 2021
## 7482 2018-06-20 2021-06-19 2018 2021
## 7483 2018-08-07 2021-08-06 2018 2021
## 7484 2018-08-31 2021-08-30 2018 2021
## 7485 2018-03-20 2021-03-19 2018 2021
## 7486 2018-12-23 2021-12-22 2018 2021
## 7487 2018-05-14 2021-05-14 2018 2021
## 7488 2018-08-24 2021-08-24 2018 2021
## 7489 2018-04-08 2021-04-07 2018 2021
## 7490 2017-10-05 2020-10-04 2017 2020
## 7491 2018-12-27 2021-12-26 2018 2021
## 7492 2018-07-31 2021-07-30 2018 2021
## 7493 2017-12-25 2020-12-18 2017 2020
## 7494 2017-10-30 2020-10-29 2017 2020
## 7495 2018-09-05 2021-09-04 2018 2021
## 7496 2017-10-14 2020-10-14 2017 2020
## 7497 2018-09-19 2021-09-17 2018 2021
## 7498 2018-06-03 2021-06-03 2018 2021
## 7499 2018-09-06 2021-09-05 2018 2021
## 7500 2017-12-17 2020-12-16 2017 2020
## 7501 2018-08-05 2021-08-02 2018 2021
## 7502 2018-09-05 2021-05-19 2018 2021
## 7503 2018-08-26 2021-08-25 2018 2021
## 7504 2018-09-10 2021-09-09 2018 2021
## 7505 2018-08-28 2021-08-27 2018 2021
## 7506 2018-08-06 2021-08-06 2018 2021
## 7507 2018-04-30 2021-04-30 2018 2021
## 7508 2018-09-02 2021-09-01 2018 2021
## 7509 2018-04-17 2020-04-04 2018 2020
## 7510 2018-08-12 2021-08-11 2018 2021
## 7511 2018-09-16 2021-09-15 2018 2021
## 7512 2018-04-18 2021-04-17 2018 2021
## 7513 2018-08-05 2021-08-05 2018 2021
## 7514 2018-09-30 2021-09-29 2018 2021
## 7515 2018-09-14 2021-09-13 2018 2021
## 7516 2018-02-11 2020-02-10 2018 2020
## 7517 2018-02-08 2021-02-05 2018 2021
## 7518 2018-10-29 2021-10-28 2018 2021
## 7519 2018-07-31 2020-07-30 2018 2020
## 7520 2018-06-15 2021-06-14 2018 2021
## 7521 2018-09-04 2021-09-03 2018 2021
## 7522 2018-02-04 2021-02-04 2018 2021
## 7523 2018-09-11 2021-09-10 2018 2021
## 7524 2018-06-17 2021-06-16 2018 2021
## 7525 2018-01-17 2021-01-17 2018 2021
## 7526 2018-09-12 2021-09-11 2018 2021
## 7527 2018-05-13 2021-05-12 2018 2021
## 7528 2018-12-26 2021-12-25 2018 2021
## 7529 2019-02-18 2022-02-17 2019 2022
## 7530 2018-09-12 2021-09-11 2018 2021
## 7531 2018-02-04 2021-02-03 2018 2021
## 7532 2018-09-05 2021-09-05 2018 2021
## 7533 2018-09-07 2021-09-06 2018 2021
## 7534 2018-08-18 2021-08-17 2018 2021
## 7535 2018-09-01 2021-08-31 2018 2021
## 7536 2018-04-12 2021-04-11 2018 2021
## 7537 2018-06-14 2021-06-14 2018 2021
## 7538 2018-02-04 2021-02-03 2018 2021
## 7539 2018-08-31 2021-06-29 2018 2021
## 7540 2018-07-27 2021-07-26 2018 2021
## 7541 2018-02-19 2021-02-18 2018 2021
## 7542 2018-08-13 2021-08-12 2018 2021
## 7543 2018-09-09 2021-09-08 2018 2021
## 7544 2018-09-14 2021-09-13 2018 2021
## 7545 2018-08-31 2019-09-29 2018 2019
## 7546 2018-05-08 2021-05-08 2018 2021
## 7547 2018-09-06 2021-09-05 2018 2021
## 7548 2018-07-22 2021-07-21 2018 2021
## 7549 2018-08-13 2021-08-13 2018 2021
## 7550 2018-05-31 2021-05-30 2018 2021
## 7551 2018-02-18 2021-02-17 2018 2021
## 7552 2018-07-01 2021-06-30 2018 2021
## 7553 2018-09-03 2021-09-02 2018 2021
## 7554 2018-08-29 2021-08-29 2018 2021
## 7555 2018-06-10 2021-06-09 2018 2021
## 7556 2018-07-31 2021-07-31 2018 2021
## 7557 2018-02-18 2021-02-17 2018 2021
## 7558 2018-05-14 2021-05-13 2018 2021
## 7559 2018-09-04 2021-09-04 2018 2021
## 7560 2018-06-14 2021-06-14 2018 2021
## 7561 2018-08-07 2021-08-06 2018 2021
## 7562 2018-01-07 2021-01-06 2018 2021
## 7563 2018-09-09 2021-09-09 2018 2021
## 7564 2018-06-30 2021-06-29 2018 2021
## 7565 2018-08-30 2021-08-29 2018 2021
## 7566 2018-06-30 2021-06-30 2018 2021
## 7567 2018-09-23 2021-09-22 2018 2021
## 7568 2018-09-16 2021-09-15 2018 2021
## 7569 2018-08-15 2021-08-14 2018 2021
## 7570 2018-07-17 2020-12-30 2018 2020
## 7571 2018-04-29 2021-04-29 2018 2021
## 7572 2018-08-28 2021-08-27 2018 2021
## 7573 2018-09-16 2021-09-16 2018 2021
## 7574 2018-09-14 2021-09-13 2018 2021
## 7575 2018-08-22 2021-08-21 2018 2021
## 7576 2018-08-26 2019-06-29 2018 2019
## 7577 2018-09-10 2021-09-09 2018 2021
## 7578 2018-07-23 2021-07-22 2018 2021
## 7579 2018-11-08 2021-11-07 2018 2021
## 7580 2018-08-30 2021-08-29 2018 2021
## 7581 2018-07-31 2021-07-31 2018 2021
## 7582 2018-09-17 2021-09-16 2018 2021
## 7583 2018-02-19 2021-02-18 2018 2021
## 7584 2018-07-31 2021-07-30 2018 2021
## 7585 2018-07-31 2021-07-31 2018 2021
## 7586 2018-07-31 2021-07-30 2018 2021
## 7587 2018-09-11 2021-09-11 2018 2021
## 7588 2018-08-08 2021-08-08 2018 2021
## 7589 2018-09-04 2021-09-03 2018 2021
## 7590 2018-09-04 2021-09-04 2018 2021
## 7591 2018-09-12 2021-09-11 2018 2021
## 7592 2018-01-21 2021-01-21 2018 2021
## 7593 2017-12-12 2020-12-12 2017 2020
## 7594 2017-11-07 2020-11-06 2017 2020
## 7595 2018-09-11 2021-09-11 2018 2021
## 7596 2018-04-16 2021-04-15 2018 2021
## 7597 2017-10-08 2019-09-02 2017 2019
## 7598 2018-08-19 2021-08-16 2018 2021
## 7599 2018-07-03 2021-07-03 2018 2021
## 7600 2018-09-06 2021-09-05 2018 2021
## 7601 2018-09-02 2021-09-01 2018 2021
## 7602 2018-08-31 2021-08-31 2018 2021
## 7603 2018-08-20 2021-08-19 2018 2021
## 7604 2018-07-23 2021-07-22 2018 2021
## 7605 2018-08-14 2021-08-13 2018 2021
## 7606 2018-05-20 2021-05-19 2018 2021
## 7607 2018-09-10 2021-09-09 2018 2021
## 7608 2018-05-04 2021-05-03 2018 2021
## 7609 2018-09-17 2021-09-16 2018 2021
## 7610 2018-09-21 2021-09-20 2018 2021
## 7611 2018-09-23 2021-09-23 2018 2021
## 7612 2018-02-10 2021-02-09 2018 2021
## 7613 2018-07-27 2021-07-26 2018 2021
## 7614 2018-08-29 2021-08-28 2018 2021
## 7615 2018-11-30 2021-11-29 2018 2021
## 7616 2018-08-12 2021-06-13 2018 2021
## 7617 2018-04-29 2021-04-28 2018 2021
## 7618 2018-08-09 2021-08-08 2018 2021
## 7619 2018-09-05 2021-09-04 2018 2021
## 7620 2018-08-27 2021-08-26 2018 2021
## 7621 2018-08-01 2021-07-31 2018 2021
## 7622 2018-09-23 2021-09-22 2018 2021
## 7623 2018-09-09 2021-09-08 2018 2021
## 7624 2018-09-14 2021-09-14 2018 2021
## 7625 2018-08-14 2021-07-29 2018 2021
## 7626 2018-07-06 2021-07-05 2018 2021
## 7627 2017-11-01 2020-10-31 2017 2020
## 7628 2018-07-22 2021-07-21 2018 2021
## 7629 2018-08-15 2021-08-14 2018 2021
## 7630 2018-06-30 2019-06-29 2018 2019
## 7631 2018-07-12 2021-07-11 2018 2021
## 7632 2018-08-26 2021-08-25 2018 2021
## 7633 2018-09-06 2021-09-05 2018 2021
## 7634 2018-06-14 2021-06-14 2018 2021
## 7635 2018-08-07 2021-08-06 2018 2021
## 7636 2018-03-05 2021-03-04 2018 2021
## 7637 2018-09-06 2021-09-05 2018 2021
## 7638 2018-09-14 2021-09-13 2018 2021
## 7639 2018-09-30 2021-09-29 2018 2021
## 7640 2018-05-10 2021-05-10 2018 2021
## 7641 2018-06-15 2021-06-14 2018 2021
## 7642 2018-04-26 2021-04-25 2018 2021
## 7643 2018-08-30 2021-08-29 2018 2021
## 7644 2018-08-14 2021-08-13 2018 2021
## 7645 2018-08-13 2021-08-13 2018 2021
## 7646 2018-09-01 2021-08-31 2018 2021
## 7647 2018-06-17 2021-06-17 2018 2021
## 7648 2018-09-04 2021-09-03 2018 2021
## 7649 2017-12-24 2020-12-23 2017 2020
## 7650 2018-03-04 2021-03-03 2018 2021
## 7651 2018-08-22 2021-08-21 2018 2021
## 7652 2018-02-11 2021-02-10 2018 2021
## 7653 2018-12-31 2021-12-30 2018 2021
## 7654 2018-01-31 2021-01-31 2018 2021
## 7655 2018-09-06 2021-09-05 2018 2021
## 7656 2018-01-31 2021-01-30 2018 2021
## 7657 2018-02-18 2021-02-18 2018 2021
## 7658 2018-06-30 2018-08-03 2018 2018
## 7659 2018-09-14 2020-09-13 2018 2020
## 7660 2018-12-27 2021-12-26 2018 2021
## 7661 2018-12-09 2021-12-09 2018 2021
## 7662 2017-11-05 2020-11-04 2017 2020
## 7663 2018-08-05 2021-08-05 2018 2021
## 7664 2018-09-16 2021-09-15 2018 2021
## 7665 2018-07-04 2021-07-01 2018 2021
## 7666 2018-09-18 2021-09-17 2018 2021
## 7667 2018-02-05 2021-02-04 2018 2021
## 7668 2018-06-24 2021-06-23 2018 2021
## 7669 2018-08-31 2021-08-30 2018 2021
## 7670 2018-07-08 2021-07-07 2018 2021
## 7671 2018-08-29 2021-08-29 2018 2021
## 7672 2018-09-19 2021-09-18 2018 2021
## 7673 2018-04-16 2021-03-30 2018 2021
## 7674 2018-09-04 2021-09-03 2018 2021
## 7675 2017-10-31 2020-10-30 2017 2020
## 7676 2018-01-19 2021-01-19 2018 2021
## 7677 2018-07-08 2021-07-07 2018 2021
## 7678 2018-04-26 2021-04-25 2018 2021
## 7679 2018-09-20 2021-09-20 2018 2021
## 7680 2017-12-18 2020-12-17 2017 2020
## 7681 2018-08-29 2021-08-28 2018 2021
## 7682 2018-07-09 2021-07-08 2018 2021
## 7683 2018-07-31 2021-07-30 2018 2021
## 7684 2019-01-31 2022-01-31 2019 2022
## 7685 2018-06-14 2021-06-14 2018 2021
## 7686 2017-12-18 2020-12-17 2017 2020
## 7687 2018-09-16 2021-09-15 2018 2021
## 7688 2018-02-12 2021-02-11 2018 2021
## 7689 2018-07-12 2021-07-11 2018 2021
## 7690 2018-07-31 2021-07-31 2018 2021
## 7691 2018-05-29 2021-05-28 2018 2021
## 7692 2018-05-01 2020-04-30 2018 2020
## 7693 2018-09-20 2021-09-20 2018 2021
## 7694 2017-10-16 2020-10-15 2017 2020
## 7695 2018-09-03 2021-09-03 2018 2021
## 7696 2018-03-11 2021-03-10 2018 2021
## 7697 2018-06-25 2021-06-24 2018 2021
## 7698 2018-08-31 2021-08-30 2018 2021
## 7699 2018-03-14 2021-03-14 2018 2021
## 7700 2018-10-10 2021-10-09 2018 2021
## 7701 2018-03-13 2021-03-12 2018 2021
## 7702 2018-09-10 2021-09-09 2018 2021
## 7703 2018-09-03 2021-09-02 2018 2021
## 7704 2018-03-22 2021-03-21 2018 2021
## 7705 2018-06-30 2021-06-29 2018 2021
## 7706 2018-02-25 2021-02-24 2018 2021
## 7707 2018-04-16 2021-04-15 2018 2021
## 7708 2018-05-09 2021-05-08 2018 2021
## 7709 2018-06-10 2021-06-09 2018 2021
## 7710 2018-07-31 2021-07-30 2018 2021
## 7711 2018-09-30 2021-09-29 2018 2021
## 7712 2018-02-21 2021-02-21 2018 2021
## 7713 2018-05-21 2021-05-20 2018 2021
## 7714 2018-05-31 2021-05-31 2018 2021
## 7715 2018-01-29 2021-01-28 2018 2021
## 7716 2018-08-21 2021-08-20 2018 2021
## 7717 2018-09-27 2021-09-27 2018 2021
## 7718 2018-07-04 2021-07-04 2018 2021
## 7719 2018-05-27 2021-05-26 2018 2021
## 7720 2018-08-28 2021-08-27 2018 2021
## 7721 2018-08-07 2021-08-06 2018 2021
## 7722 2018-05-21 2021-05-20 2018 2021
## 7723 2018-09-21 2021-09-20 2018 2021
## 7724 2018-09-11 2021-09-11 2018 2021
## 7725 2018-09-24 2021-09-24 2018 2021
## 7726 2018-03-08 2021-03-07 2018 2021
## 7727 2018-03-12 2021-03-11 2018 2021
## 7728 2018-09-15 2021-09-14 2018 2021
## 7729 2017-11-12 2020-11-11 2017 2020
## 7730 2018-09-12 2021-09-11 2018 2021
## 7731 2018-09-14 2021-09-13 2018 2021
## 7732 2018-09-27 2021-09-26 2018 2021
## 7733 2018-06-14 2021-06-13 2018 2021
## 7734 2018-09-04 2021-09-04 2018 2021
## 7735 2018-07-25 2021-07-24 2018 2021
## 7736 2018-01-02 2021-01-01 2018 2021
## 7737 2018-03-31 2021-03-30 2018 2021
## 7738 2018-08-30 2021-08-29 2018 2021
## 7739 2017-11-06 2020-11-06 2017 2020
## 7740 2018-07-31 2021-07-30 2018 2021
## 7741 2018-07-31 2021-07-30 2018 2021
## 7742 2018-09-02 2021-09-01 2018 2021
## 7743 2017-11-12 2020-11-11 2017 2020
## 7744 2018-08-14 2021-08-14 2018 2021
## 7745 2018-09-12 2021-09-12 2018 2021
## 7746 2018-09-17 2021-09-17 2018 2021
## 7747 2018-01-09 2021-01-08 2018 2021
## 7748 2018-08-13 2021-08-12 2018 2021
## 7749 2018-11-07 2021-11-06 2018 2021
## 7750 2018-05-07 2021-05-06 2018 2021
## 7751 2018-08-26 2021-08-25 2018 2021
## 7752 2018-02-13 2021-02-12 2018 2021
## 7753 2018-03-31 2021-03-30 2018 2021
## 7754 2018-03-07 2020-05-30 2018 2020
## 7755 2018-08-25 2021-08-24 2018 2021
## 7756 2018-01-31 2021-01-30 2018 2021
## 7757 2019-01-17 2022-01-16 2019 2022
## 7758 2018-05-01 2021-04-30 2018 2021
## 7759 2018-09-09 2021-09-09 2018 2021
## 7760 2018-08-09 2021-08-09 2018 2021
## 7761 2018-09-23 2021-09-22 2018 2021
## 7762 2018-04-17 2021-04-16 2018 2021
## 7763 2018-04-19 2021-04-18 2018 2021
## 7764 2018-08-31 2021-08-30 2018 2021
## 7765 2018-07-28 2021-07-28 2018 2021
## 7766 2018-06-27 2021-06-26 2018 2021
## 7767 2018-07-17 2021-07-16 2018 2021
## 7768 2018-08-20 2021-08-19 2018 2021
## 7769 2018-09-09 2021-09-08 2018 2021
## 7770 2018-07-23 2021-07-22 2018 2021
## 7771 2018-09-14 2021-09-14 2018 2021
## 7772 2018-06-30 2020-06-29 2018 2020
## 7773 2018-09-17 2021-09-17 2018 2021
## 7774 2018-08-31 2021-08-30 2018 2021
## 7775 2018-08-08 2021-08-05 2018 2021
## 7776 2018-07-22 2021-07-21 2018 2021
## 7777 2018-09-12 2021-09-11 2018 2021
## 7778 2018-03-27 2021-03-26 2018 2021
## 7779 2018-07-22 2021-07-21 2018 2021
## 7780 2018-02-14 2021-02-13 2018 2021
## 7781 2018-05-14 2021-05-13 2018 2021
## 7782 2018-08-19 2021-08-19 2018 2021
## 7783 2017-10-15 2020-10-14 2017 2020
## 7784 2018-09-17 2021-09-16 2018 2021
## 7785 2018-06-18 2021-06-17 2018 2021
## 7786 2017-11-20 2020-11-14 2017 2020
## 7787 2018-09-04 2021-09-04 2018 2021
## 7788 2018-07-20 2021-07-19 2018 2021
## 7789 2018-09-30 2021-09-29 2018 2021
## 7790 2018-09-10 2021-09-10 2018 2021
## 7791 2018-04-04 2021-04-03 2018 2021
## 7792 2018-09-06 2021-09-05 2018 2021
## 7793 2017-11-06 2020-11-05 2017 2020
## 7794 2018-06-03 2021-05-31 2018 2021
## 7795 2018-07-29 2021-07-28 2018 2021
## 7796 2018-11-15 2021-11-14 2018 2021
## 7797 2018-09-16 2021-09-13 2018 2021
## 7798 2018-06-05 2020-09-20 2018 2020
## 7799 2018-03-05 2021-03-05 2018 2021
## 7800 2018-02-17 2021-02-16 2018 2021
## 7801 2018-09-16 2021-09-16 2018 2021
## 7802 2018-05-21 2021-05-20 2018 2021
## 7803 2018-07-01 2021-07-01 2018 2021
## 7804 2018-08-27 2021-08-27 2018 2021
## 7805 2018-06-18 2021-06-18 2018 2021
## 7806 2017-11-30 2020-06-11 2017 2020
## 7807 2018-08-31 2021-08-30 2018 2021
## 7808 2018-06-14 2021-06-14 2018 2021
## 7809 2018-07-16 2021-07-15 2018 2021
## 7810 2018-09-20 2021-09-19 2018 2021
## 7811 2018-08-31 2021-08-30 2018 2021
## 7812 2018-08-17 2021-08-16 2018 2021
## 7813 2018-06-28 2021-06-27 2018 2021
## 7814 2018-05-01 2021-04-29 2018 2021
## 7815 2018-02-27 2021-02-26 2018 2021
## 7816 2018-09-08 2021-09-07 2018 2021
## 7817 2018-06-30 2021-06-29 2018 2021
## 7818 2018-04-02 2021-04-01 2018 2021
## 7819 2018-08-28 2021-08-27 2018 2021
## 7820 2018-03-22 2021-03-21 2018 2021
## 7821 2018-08-12 2021-08-11 2018 2021
## 7822 2017-10-22 2020-10-21 2017 2020
## 7823 2018-09-04 2021-09-03 2018 2021
## 7824 2018-03-08 2021-03-07 2018 2021
## 7825 2018-08-31 2021-08-30 2018 2021
## 7826 2017-12-16 2020-12-13 2017 2020
## 7827 2018-08-06 2021-08-05 2018 2021
## 7828 2018-02-05 2021-02-05 2018 2021
## 7829 2018-09-14 2021-09-14 2018 2021
## 7830 2018-08-31 2021-08-30 2018 2021
## 7831 2017-11-26 2020-11-25 2017 2020
## 7832 2018-09-30 2021-09-29 2018 2021
## 7833 2018-07-22 2021-07-21 2018 2021
## 7834 2018-09-06 2021-09-05 2018 2021
## 7835 2017-10-12 2020-10-11 2017 2020
## 7836 2018-06-30 2021-06-29 2018 2021
## 7837 2018-09-14 2021-09-14 2018 2021
## 7838 2018-03-31 2021-03-30 2018 2021
## 7839 2018-09-12 2021-09-12 2018 2021
## 7840 2018-04-01 2021-03-29 2018 2021
## 7841 2018-06-24 2021-06-23 2018 2021
## 7842 2018-01-24 2021-01-24 2018 2021
## 7843 2018-06-14 2021-06-13 2018 2021
## 7844 2018-07-31 2021-07-31 2018 2021
## 7845 2018-12-19 2021-12-18 2018 2021
## 7846 2017-10-03 2020-10-02 2017 2020
## 7847 2018-09-11 2021-09-11 2018 2021
## 7848 2018-08-17 2021-08-16 2018 2021
## 7849 2018-03-14 2021-03-13 2018 2021
## 7850 2017-12-28 2020-12-27 2017 2020
## 7851 2018-07-31 2021-07-30 2018 2021
## 7852 2019-02-01 2021-01-31 2019 2021
## 7853 2018-01-04 2021-01-04 2018 2021
## 7854 2018-08-31 2021-08-30 2018 2021
## 7855 2018-03-31 2021-03-30 2018 2021
## 7856 2018-09-30 2021-09-29 2018 2021
## 7857 2018-09-06 2021-09-05 2018 2021
## 7858 2018-01-11 2021-01-10 2018 2021
## 7859 2018-08-06 2021-08-05 2018 2021
## 7860 2018-06-28 2021-06-26 2018 2021
## 7861 2018-07-26 2021-07-26 2018 2021
## 7862 2018-09-13 2021-09-12 2018 2021
## 7863 2017-12-24 2020-12-23 2017 2020
## 7864 2018-05-11 2021-05-10 2018 2021
## 7865 2018-06-18 2021-06-17 2018 2021
## 7866 2017-12-11 2020-12-10 2017 2020
## 7867 2018-09-09 2021-08-30 2018 2021
## 7868 2018-04-15 2021-04-14 2018 2021
## 7869 2018-01-04 2021-01-04 2018 2021
## 7870 2018-06-13 2021-06-13 2018 2021
## 7871 2018-10-22 2021-10-21 2018 2021
## 7872 2018-09-06 2020-09-05 2018 2020
## 7873 2018-01-12 2019-01-11 2018 2019
## 7874 2018-05-21 2021-05-20 2018 2021
## 7875 2018-03-11 2021-03-11 2018 2021
## 7876 2018-02-21 2021-02-19 2018 2021
## 7877 2017-12-26 2020-12-25 2017 2020
## 7878 2017-11-05 2018-09-13 2017 2018
## 7879 2017-09-27 2020-09-25 2017 2020
## 7880 2018-09-03 2021-09-02 2018 2021
## 7881 2017-12-24 2019-12-23 2017 2019
## 7882 2018-09-14 2021-09-13 2018 2021
## 7883 2018-01-02 2021-01-01 2018 2021
## 7884 2018-06-14 2021-06-14 2018 2021
## 7885 2018-09-30 2020-12-13 2018 2020
## 7886 2018-07-15 2021-07-14 2018 2021
## 7887 2018-09-14 2021-09-13 2018 2021
## 7888 2018-08-25 2021-08-24 2018 2021
## 7889 2017-10-08 2020-10-08 2017 2020
## 7890 2018-06-20 2021-06-19 2018 2021
## 7891 2018-05-17 2021-05-17 2018 2021
## 7892 2018-07-26 2021-07-25 2018 2021
## 7893 2018-08-23 2021-08-23 2018 2021
## 7894 2018-01-15 2021-01-15 2018 2021
## 7895 2018-08-29 2021-08-28 2018 2021
## 7896 2018-03-15 2021-03-14 2018 2021
## 7897 2018-03-25 2021-03-24 2018 2021
## 7898 2018-03-12 2021-03-11 2018 2021
## 7899 2018-07-06 2021-07-06 2018 2021
## 7900 2018-09-10 2021-09-09 2018 2021
## 7901 2018-05-09 2021-05-08 2018 2021
## 7902 2018-02-01 2021-01-31 2018 2021
## 7903 2018-07-18 2021-07-17 2018 2021
## 7904 2018-09-03 2021-09-02 2018 2021
## 7905 2018-07-28 2021-07-27 2018 2021
## 7906 2018-08-01 2021-07-31 2018 2021
## 7907 2018-05-03 2021-05-02 2018 2021
## 7908 2018-04-08 2021-04-08 2018 2021
## 7909 2018-09-01 2021-08-31 2018 2021
## 7910 2018-09-06 2021-09-05 2018 2021
## 7911 2018-08-30 2021-08-30 2018 2021
## 7912 2018-07-25 2021-07-23 2018 2021
## 7913 2019-01-17 2022-01-16 2019 2022
## 7914 2018-09-23 2021-09-22 2018 2021
## 7915 2018-08-09 2021-08-08 2018 2021
## 7916 2018-04-15 2021-04-14 2018 2021
## 7917 2018-02-05 2021-02-04 2018 2021
## 7918 2017-10-19 2018-10-18 2017 2018
## 7919 2018-08-31 2021-08-30 2018 2021
## 7920 2018-09-06 2021-09-05 2018 2021
## 7921 2018-09-01 2021-08-31 2018 2021
## 7922 2018-06-06 2021-06-05 2018 2021
## 7923 2018-09-09 2021-09-08 2018 2021
## 7924 2018-08-05 2021-08-05 2018 2021
## 7925 2018-08-22 2021-08-22 2018 2021
## 7926 2018-04-17 2021-04-17 2018 2021
## 7927 2018-08-26 2021-08-25 2018 2021
## 7928 2018-07-25 2021-07-25 2018 2021
## 7929 2018-07-15 2021-07-14 2018 2021
## 7930 2018-06-13 2021-06-13 2018 2021
## 7931 2018-09-08 2021-09-07 2018 2021
## 7932 2018-07-31 2021-07-30 2018 2021
## 7933 2017-12-04 2020-12-03 2017 2020
## 7934 2018-09-20 2021-09-20 2018 2021
## 7935 2017-11-26 2020-11-25 2017 2020
## 7936 2018-08-09 2021-08-08 2018 2021
## 7937 2018-07-01 2021-06-30 2018 2021
## 7938 2018-01-21 2021-01-20 2018 2021
## 7939 2018-09-30 2021-09-29 2018 2021
## 7940 2018-08-05 2021-08-04 2018 2021
## 7941 2018-03-26 2021-03-25 2018 2021
## 7942 2018-09-05 2021-09-05 2018 2021
## 7943 2018-06-27 2021-06-26 2018 2021
## 7944 2018-08-20 2021-08-19 2018 2021
## 7945 2018-09-29 2021-09-28 2018 2021
## 7946 2018-08-31 2021-08-30 2018 2021
## 7947 2017-10-29 2020-10-28 2017 2020
## 7948 2018-07-22 2021-07-22 2018 2021
## 7949 2018-09-10 2021-09-09 2018 2021
## 7950 2018-09-04 2021-09-03 2018 2021
## 7951 2018-03-25 2021-03-24 2018 2021
## 7952 2018-09-16 2021-09-16 2018 2021
## 7953 2018-01-29 2021-01-28 2018 2021
## 7954 2017-09-27 2020-09-26 2017 2020
## 7955 2018-08-19 2021-08-18 2018 2021
## 7956 2018-08-14 2021-08-13 2018 2021
## 7957 2018-08-05 2021-08-04 2018 2021
## 7958 2018-01-23 2021-01-22 2018 2021
## 7959 2018-09-15 2021-09-15 2018 2021
## 7960 2018-06-14 2021-06-13 2018 2021
## 7961 2018-03-04 2019-08-30 2018 2019
## 7962 2018-04-24 2021-04-23 2018 2021
## 7963 2019-02-12 2022-02-11 2019 2022
## 7964 2018-08-06 2021-08-05 2018 2021
## 7965 2018-09-30 2021-09-29 2018 2021
## 7966 2018-03-11 2021-03-10 2018 2021
## 7967 2018-05-06 2021-05-05 2018 2021
## 7968 2018-07-25 2021-07-24 2018 2021
## 7969 2018-06-25 2021-06-24 2018 2021
## 7970 2017-10-23 2020-10-22 2017 2020
## 7971 2018-05-28 2019-10-01 2018 2019
## 7972 2017-11-23 2020-11-23 2017 2020
## 7973 2018-09-14 2021-09-13 2018 2021
## 7974 2018-04-29 2021-04-28 2018 2021
## 7975 2018-07-31 2021-07-30 2018 2021
## 7976 2018-09-03 2021-09-02 2018 2021
## 7977 2018-07-24 2021-07-23 2018 2021
## 7978 2017-11-29 2020-11-28 2017 2020
## 7979 2018-02-08 2021-02-07 2018 2021
## 7980 2018-09-30 2021-09-29 2018 2021
## 7981 2017-11-19 2020-11-19 2017 2020
## 7982 2017-11-28 2020-11-27 2017 2020
## 7983 2018-01-24 2021-01-24 2018 2021
## 7984 2018-05-31 2021-05-30 2018 2021
## 7985 2018-06-30 2021-06-29 2018 2021
## 7986 2019-01-28 2022-01-27 2019 2022
## 7987 2018-03-04 2021-03-03 2018 2021
## 7988 2018-08-08 2021-08-08 2018 2021
## 7989 2017-10-04 2020-09-07 2017 2020
## 7990 2018-08-22 2021-08-21 2018 2021
## 7991 2018-09-09 2021-09-08 2018 2021
## 7992 2018-09-03 2021-09-02 2018 2021
## 7993 2018-08-31 2021-08-30 2018 2021
## 7994 2018-01-20 2021-01-19 2018 2021
## 7995 2017-10-31 2020-10-31 2017 2020
## 7996 2018-03-05 2021-03-04 2018 2021
## 7997 2018-08-14 2021-08-14 2018 2021
## 7998 2018-08-17 2021-08-17 2018 2021
## 7999 2018-08-28 2021-08-27 2018 2021
## 8000 2018-08-31 2021-08-30 2018 2021
## 8001 2018-04-22 2021-04-21 2018 2021
## 8002 2018-06-18 2021-06-17 2018 2021
## 8003 2018-08-11 2021-08-08 2018 2021
## 8004 2018-08-26 2021-08-25 2018 2021
## 8005 2018-07-26 2020-09-29 2018 2020
## 8006 2018-06-14 2021-06-13 2018 2021
## 8007 2018-06-11 2021-06-11 2018 2021
## 8008 2018-09-11 2021-09-10 2018 2021
## 8009 2018-06-30 2021-06-29 2018 2021
## 8010 2018-08-06 2021-08-05 2018 2021
## 8011 2018-09-30 2021-09-30 2018 2021
## 8012 2018-09-02 2021-09-01 2018 2021
## 8013 2018-07-31 2021-07-30 2018 2021
## 8014 2018-08-28 2021-08-27 2018 2021
## 8015 2018-08-27 2021-08-27 2018 2021
## 8016 2018-06-17 2021-06-17 2018 2021
## 8017 2018-07-25 2021-07-25 2018 2021
## 8018 2018-03-05 2021-03-04 2018 2021
## 8019 2018-01-14 2020-09-09 2018 2020
## 8020 2018-06-15 2021-06-12 2018 2021
## 8021 2018-08-23 2021-08-22 2018 2021
## 8022 2018-06-30 2021-06-30 2018 2021
## 8023 2018-04-07 2021-04-07 2018 2021
## 8024 2018-07-31 2021-07-30 2018 2021
## 8025 2018-05-12 2021-05-12 2018 2021
## 8026 2017-11-26 2020-11-26 2017 2020
## 8027 2018-08-05 2021-08-04 2018 2021
## 8028 2017-12-31 2020-12-30 2017 2020
## 8029 2018-01-21 2021-01-20 2018 2021
## 8030 2018-09-30 2021-09-30 2018 2021
## 8031 2018-05-31 2021-05-30 2018 2021
## 8032 2018-08-13 2021-08-13 2018 2021
## 8033 2018-08-27 2021-08-26 2018 2021
## 8034 2018-07-14 2021-07-13 2018 2021
## 8035 2018-09-06 2021-09-05 2018 2021
## 8036 2018-07-27 2021-07-26 2018 2021
## 8037 2018-03-11 2021-03-10 2018 2021
## 8038 2017-10-11 2020-10-10 2017 2020
## 8039 2018-05-31 2019-04-29 2018 2019
## 8040 2018-05-07 2021-05-06 2018 2021
## 8041 2017-12-24 2020-12-23 2017 2020
## 8042 2018-09-12 2021-09-12 2018 2021
## 8043 2018-09-07 2021-09-06 2018 2021
## 8044 2018-09-11 2021-09-10 2018 2021
## 8045 2018-07-29 2021-07-28 2018 2021
## 8046 2018-06-03 2021-06-02 2018 2021
## 8047 2018-03-14 2021-03-13 2018 2021
## 8048 2018-09-01 2021-08-31 2018 2021
## 8049 2018-09-14 2021-09-13 2018 2021
## 8050 2018-09-06 2021-09-05 2018 2021
## 8051 2018-04-08 2021-04-08 2018 2021
## 8052 2018-05-06 2021-05-06 2018 2021
## 8053 2018-07-04 2020-12-29 2018 2020
## 8054 2017-11-12 2020-11-11 2017 2020
## 8055 2018-09-09 2021-09-09 2018 2021
## 8056 2018-09-30 2021-09-29 2018 2021
## 8057 2017-11-22 2018-04-13 2017 2018
## 8058 2018-06-30 2019-06-29 2018 2019
## 8059 2018-06-29 2021-06-29 2018 2021
## 8060 2018-06-21 2021-06-20 2018 2021
## 8061 2018-07-08 2021-07-07 2018 2021
## 8062 2018-03-13 2019-03-12 2018 2019
## 8063 2018-06-20 2021-06-17 2018 2021
## 8064 2018-05-03 2021-05-02 2018 2021
## 8065 2018-08-13 2021-08-12 2018 2021
## 8066 2018-08-29 2021-08-29 2018 2021
## 8067 2018-02-11 2021-02-10 2018 2021
## 8068 2017-11-24 2020-11-24 2017 2020
## 8069 2018-09-06 2021-09-06 2018 2021
## 8070 2018-09-12 2021-09-12 2018 2021
## 8071 2018-04-25 2021-04-24 2018 2021
## 8072 2017-12-11 2020-12-10 2017 2020
## 8073 2018-08-27 2021-08-26 2018 2021
## 8074 2018-04-18 2021-04-17 2018 2021
## 8075 2018-09-07 2021-09-06 2018 2021
## 8076 2018-08-05 2021-08-04 2018 2021
## 8077 2018-09-12 2021-09-11 2018 2021
## 8078 2018-08-23 2021-08-23 2018 2021
## 8079 2017-10-31 2020-10-30 2017 2020
## 8080 2018-08-19 2021-08-19 2018 2021
## 8081 2018-08-27 2021-08-27 2018 2021
## 8082 2018-05-14 2021-05-14 2018 2021
## 8083 2018-12-31 2019-12-30 2018 2019
## 8084 2018-04-08 2021-04-07 2018 2021
## 8085 2017-12-23 2020-12-22 2017 2020
## 8086 2018-09-16 2021-06-29 2018 2021
## 8087 2018-07-15 2021-07-14 2018 2021
## 8088 2017-12-27 2020-12-26 2017 2020
## 8089 2018-03-26 2021-03-26 2018 2021
## 8090 2018-06-30 2021-06-29 2018 2021
## 8091 2018-09-14 2021-09-13 2018 2021
## 8092 2018-08-15 2021-08-14 2018 2021
## 8093 2018-09-13 2021-09-12 2018 2021
## 8094 2018-02-04 2021-02-03 2018 2021
## 8095 2018-09-09 2021-09-08 2018 2021
## 8096 2019-01-01 2021-12-31 2019 2021
## 8097 2018-06-04 2021-06-03 2018 2021
## 8098 2018-07-01 2021-06-30 2018 2021
## 8099 2018-09-16 2021-09-16 2018 2021
## 8100 2018-07-24 2021-07-24 2018 2021
## 8101 2018-09-19 2020-09-18 2018 2020
## 8102 2018-05-13 2021-05-12 2018 2021
## 8103 2018-08-31 2021-08-31 2018 2021
## 8104 2018-05-20 2018-08-16 2018 2018
## 8105 2018-11-27 2021-11-26 2018 2021
## 8106 2018-06-17 2021-06-16 2018 2021
## 8107 2018-09-03 2021-09-02 2018 2021
## 8108 2018-09-11 2020-09-10 2018 2020
## 8109 2018-08-05 2021-08-05 2018 2021
## 8110 2018-08-24 2021-08-24 2018 2021
## 8111 2017-12-14 2020-12-13 2017 2020
## 8112 2018-08-14 2021-08-13 2018 2021
## 8113 2018-07-31 2021-07-30 2018 2021
## 8114 2018-09-13 2021-09-12 2018 2021
## 8115 2018-08-13 2021-08-12 2018 2021
## 8116 2018-03-11 2021-03-10 2018 2021
## 8117 2018-07-30 2021-07-29 2018 2021
## 8118 2018-09-06 2021-08-30 2018 2021
## 8119 2018-09-14 2021-09-14 2018 2021
## 8120 2018-08-19 2021-08-18 2018 2021
## 8121 2018-07-15 2021-07-14 2018 2021
## 8122 2018-02-13 2021-02-12 2018 2021
## 8123 2018-01-15 2021-01-14 2018 2021
## 8124 2018-08-26 2021-08-26 2018 2021
## 8125 2018-04-22 2021-04-21 2018 2021
## 8126 2018-08-31 2021-08-30 2018 2021
## 8127 2018-06-17 2021-06-16 2018 2021
## 8128 2018-09-14 2021-09-13 2018 2021
## 8129 2018-09-11 2021-09-10 2018 2021
## 8130 2018-04-15 2021-04-12 2018 2021
## 8131 2018-07-03 2021-07-02 2018 2021
## 8132 2018-09-21 2021-09-20 2018 2021
## 8133 2018-09-14 2021-09-13 2018 2021
## 8134 2018-01-14 2021-01-13 2018 2021
## 8135 2017-10-31 2020-10-30 2017 2020
## 8136 2018-04-30 2021-04-30 2018 2021
## 8137 2018-06-14 2021-06-14 2018 2021
## 8138 2018-09-13 2021-09-12 2018 2021
## 8139 2018-01-21 2021-01-20 2018 2021
## 8140 2018-07-19 2021-07-18 2018 2021
## 8141 2018-04-30 2021-02-03 2018 2021
## 8142 2018-06-03 2021-06-02 2018 2021
## 8143 2017-10-22 2020-10-21 2017 2020
## 8144 2018-04-14 2021-04-13 2018 2021
## 8145 2018-08-31 2021-08-30 2018 2021
## 8146 2018-03-09 2021-03-08 2018 2021
## 8147 2018-08-31 2021-08-30 2018 2021
## 8148 2018-03-06 2021-03-05 2018 2021
## 8149 2018-08-20 2021-08-20 2018 2021
## 8150 2017-12-17 2020-12-16 2017 2020
## 8151 2018-09-03 2021-09-02 2018 2021
## 8152 2018-04-08 2021-04-07 2018 2021
## 8153 2018-03-11 2021-03-10 2018 2021
## 8154 2018-05-06 2021-05-05 2018 2021
## 8155 2017-10-16 2020-10-15 2017 2020
## 8156 2018-03-04 2021-03-03 2018 2021
## 8157 2018-09-03 2021-09-02 2018 2021
## 8158 2018-06-30 2021-06-29 2018 2021
## 8159 2018-08-20 2021-08-20 2018 2021
## 8160 2018-09-04 2021-09-03 2018 2021
## 8161 2018-07-23 2019-06-03 2018 2019
## 8162 2017-11-21 2020-11-20 2017 2020
## 8163 2018-09-13 2021-09-12 2018 2021
## 8164 2018-08-02 2021-08-01 2018 2021
## 8165 2018-03-15 2021-03-14 2018 2021
## 8166 2018-04-12 2021-04-11 2018 2021
## 8167 2018-08-27 2021-08-27 2018 2021
## 8168 2018-07-27 2021-07-27 2018 2021
## 8169 2018-08-27 2021-08-26 2018 2021
## 8170 2018-09-09 2021-09-08 2018 2021
## 8171 2018-09-14 2021-09-14 2018 2021
## 8172 2018-08-23 2021-08-23 2018 2021
## 8173 2018-08-19 2021-08-18 2018 2021
## 8174 2018-01-18 2021-01-17 2018 2021
## 8175 2018-03-01 2021-03-01 2018 2021
## 8176 2018-08-03 2021-08-02 2018 2021
## 8177 2018-04-12 2021-04-12 2018 2021
## 8178 2018-07-21 2021-07-20 2018 2021
## 8179 2018-03-11 2021-03-10 2018 2021
## 8180 2018-09-06 2021-09-06 2018 2021
## 8181 2018-01-23 2021-01-22 2018 2021
## 8182 2018-07-31 2021-07-30 2018 2021
## 8183 2018-08-26 2021-08-25 2018 2021
## 8184 2018-09-11 2021-09-10 2018 2021
## 8185 2018-08-30 2021-08-30 2018 2021
## 8186 2017-10-02 2019-04-17 2017 2019
## 8187 2017-10-02 2020-10-02 2017 2020
## 8188 2018-09-05 2021-09-05 2018 2021
## 8189 2018-09-13 2021-09-13 2018 2021
## 8190 2018-06-24 2021-06-24 2018 2021
## 8191 2018-10-18 2021-10-18 2018 2021
## 8192 2018-09-04 2021-09-04 2018 2021
## 8193 2017-12-08 2020-12-08 2017 2020
## 8194 2018-05-20 2021-05-20 2018 2021
## 8195 2018-08-10 2021-08-09 2018 2021
## 8196 2018-05-17 2021-05-16 2018 2021
## 8197 2018-08-22 2021-08-21 2018 2021
## 8198 2018-09-23 2021-09-22 2018 2021
## 8199 2018-01-12 2021-01-09 2018 2021
## 8200 2018-01-31 2021-01-30 2018 2021
## 8201 2018-07-31 2021-07-31 2018 2021
## 8202 2017-11-27 2020-11-26 2017 2020
## 8203 2018-03-26 2019-11-05 2018 2019
## 8204 2018-07-05 2021-07-04 2018 2021
## 8205 2018-07-31 2021-07-30 2018 2021
## 8206 2018-04-08 2021-04-07 2018 2021
## 8207 2018-03-04 2021-03-03 2018 2021
## 8208 2018-07-03 2021-07-02 2018 2021
## 8209 2018-09-23 2021-09-22 2018 2021
## 8210 2018-08-20 2021-08-19 2018 2021
## 8211 2018-09-22 2021-09-21 2018 2021
## 8212 2018-04-08 2021-04-07 2018 2021
## 8213 2018-09-30 2021-09-30 2018 2021
## 8214 2018-04-29 2021-04-29 2018 2021
## 8215 2018-09-01 2021-08-31 2018 2021
## 8216 2018-08-20 2021-08-20 2018 2021
## 8217 2018-06-12 2021-06-11 2018 2021
## 8218 2018-02-22 2021-02-22 2018 2021
## 8219 2018-09-26 2021-09-25 2018 2021
## 8220 2018-07-24 2021-07-23 2018 2021
## 8221 2018-11-11 2021-11-11 2018 2021
## 8222 2017-12-18 2020-12-16 2017 2020
## 8223 2018-09-19 2021-09-18 2018 2021
## 8224 2018-07-31 2021-07-31 2018 2021
## 8225 2018-07-22 2021-07-21 2018 2021
## 8226 2018-09-02 2021-09-01 2018 2021
## 8227 2018-06-22 2021-06-21 2018 2021
## 8228 2018-08-23 2021-08-22 2018 2021
## 8229 2018-09-14 2021-08-29 2018 2021
## 8230 2017-12-21 2018-12-29 2017 2018
## 8231 2018-09-22 2021-09-22 2018 2021
## 8232 2018-09-19 2021-09-18 2018 2021
## 8233 2018-08-31 2021-08-30 2018 2021
## 8234 2018-07-30 2021-07-29 2018 2021
## 8235 2018-07-22 2021-07-21 2018 2021
## 8236 2018-08-26 2021-08-26 2018 2021
## 8237 2018-04-30 2021-04-29 2018 2021
## 8238 2018-01-21 2021-01-20 2018 2021
## 8239 2018-06-24 2021-06-23 2018 2021
## 8240 2017-11-12 2020-11-11 2017 2020
## 8241 2017-11-02 2020-11-02 2017 2020
## 8242 2018-10-23 2021-10-22 2018 2021
## 8243 2017-11-19 2020-11-18 2017 2020
## 8244 2018-09-26 2021-09-26 2018 2021
## 8245 2018-09-26 2021-09-25 2018 2021
## 8246 2018-02-28 2018-03-30 2018 2018
## 8247 2019-01-03 2022-01-02 2019 2022
## 8248 2018-04-08 2020-07-15 2018 2020
## 8249 2018-10-21 2021-10-20 2018 2021
## 8250 2018-03-31 2021-03-31 2018 2021
## 8251 2018-09-30 2021-09-29 2018 2021
## 8252 2018-08-27 2021-08-26 2018 2021
## 8253 2018-09-06 2021-09-05 2018 2021
## 8254 2018-07-19 2021-07-19 2018 2021
## 8255 2018-08-16 2021-08-15 2018 2021
## 8256 2018-07-31 2021-07-31 2018 2021
## 8257 2018-09-06 2021-09-05 2018 2021
## 8258 2017-12-21 2020-12-20 2017 2020
## 8259 2018-04-14 2020-08-15 2018 2020
## 8260 2018-07-19 2021-07-18 2018 2021
## 8261 2018-09-04 2021-09-03 2018 2021
## 8262 2018-09-23 2021-09-22 2018 2021
## 8263 2018-08-17 2021-08-16 2018 2021
## 8264 2018-06-14 2021-06-13 2018 2021
## 8265 2018-04-17 2021-04-17 2018 2021
## 8266 2018-08-29 2021-08-28 2018 2021
## 8267 2018-08-21 2021-08-20 2018 2021
## 8268 2017-10-14 2018-08-11 2017 2018
## 8269 2018-07-31 2021-07-30 2018 2021
## 8270 2018-10-29 2021-10-28 2018 2021
## 8271 2018-08-14 2021-08-13 2018 2021
## 8272 2018-09-02 2021-09-01 2018 2021
## 8273 2018-08-21 2021-08-21 2018 2021
## 8274 2018-08-01 2021-07-31 2018 2021
## 8275 2017-09-30 2020-09-30 2017 2020
## 8276 2018-09-30 2021-05-30 2018 2021
## 8277 2018-01-07 2021-01-06 2018 2021
## 8278 2018-08-04 2021-08-03 2018 2021
## 8279 2018-07-31 2021-07-30 2018 2021
## 8280 2018-07-27 2021-07-26 2018 2021
## 8281 2018-06-28 2021-06-20 2018 2021
## 8282 2018-03-29 2021-03-28 2018 2021
## 8283 2018-09-06 2021-09-05 2018 2021
## 8284 2018-08-31 2021-08-30 2018 2021
## 8285 2018-03-22 2021-03-21 2018 2021
## 8286 2018-02-27 2021-02-26 2018 2021
## 8287 2018-09-10 2021-09-09 2018 2021
## 8288 2018-05-15 2021-05-14 2018 2021
## 8289 2018-11-30 2021-11-29 2018 2021
## 8290 2018-06-05 2021-06-04 2018 2021
## 8291 2018-09-14 2021-09-14 2018 2021
## 8292 2018-06-12 2021-06-11 2018 2021
## 8293 2018-09-04 2021-09-03 2018 2021
## 8294 2018-09-02 2021-09-01 2018 2021
## 8295 2018-08-16 2021-08-15 2018 2021
## 8296 2018-07-08 2021-07-07 2018 2021
## 8297 2018-02-01 2021-01-31 2018 2021
## 8298 2018-07-22 2021-07-21 2018 2021
## 8299 2018-03-11 2021-03-10 2018 2021
## 8300 2018-09-12 2021-09-11 2018 2021
## 8301 2018-09-04 2021-09-03 2018 2021
## 8302 2018-01-29 2021-01-28 2018 2021
## 8303 2018-08-08 2021-08-07 2018 2021
## 8304 2018-12-20 2021-12-20 2018 2021
## 8305 2018-09-14 2021-09-14 2018 2021
## 8306 2018-09-13 2021-09-12 2018 2021
## 8307 2018-02-11 2021-02-10 2018 2021
## 8308 2018-08-28 2021-08-27 2018 2021
## 8309 2018-06-03 2021-06-02 2018 2021
## 8310 2018-03-13 2021-03-12 2018 2021
## 8311 2017-10-15 2020-10-12 2017 2020
## 8312 2018-03-28 2021-03-27 2018 2021
## 8313 2017-12-25 2020-12-24 2017 2020
## 8314 2018-01-24 2021-01-23 2018 2021
## 8315 2017-11-30 2020-11-29 2017 2020
## 8316 2018-10-10 2021-10-09 2018 2021
## 8317 2018-06-14 2021-06-14 2018 2021
## 8318 2018-09-25 2021-09-24 2018 2021
## 8319 2018-08-20 2021-08-19 2018 2021
## 8320 2018-09-10 2021-09-09 2018 2021
## 8321 2018-08-19 2021-08-18 2018 2021
## 8322 2017-11-14 2020-11-13 2017 2020
## 8323 2018-04-29 2021-04-28 2018 2021
## 8324 2018-08-14 2021-08-13 2018 2021
## 8325 2018-04-17 2021-04-16 2018 2021
## 8326 2018-09-19 2021-09-18 2018 2021
## 8327 2017-12-31 2020-12-30 2017 2020
## 8328 2018-07-14 2021-07-13 2018 2021
## 8329 2018-10-31 2021-10-30 2018 2021
## 8330 2018-06-30 2021-06-29 2018 2021
## 8331 2018-06-17 2020-08-30 2018 2020
## 8332 2018-09-30 2021-09-29 2018 2021
## 8333 2018-09-19 2021-09-19 2018 2021
## 8334 2018-08-31 2021-08-31 2018 2021
## 8335 2018-05-31 2021-05-30 2018 2021
## 8336 2018-06-14 2021-06-14 2018 2021
## 8337 2018-02-28 2021-02-27 2018 2021
## 8338 2018-04-08 2021-04-04 2018 2021
## 8339 2018-08-19 2021-08-18 2018 2021
## 8340 2017-12-31 2020-12-30 2017 2020
## 8341 2018-11-22 2021-11-21 2018 2021
## 8342 2018-09-30 2021-09-29 2018 2021
## 8343 2018-07-01 2021-06-30 2018 2021
## 8344 2017-11-26 2020-11-25 2017 2020
## 8345 2018-08-26 2021-08-25 2018 2021
## 8346 2018-08-30 2021-08-29 2018 2021
## 8347 2017-10-15 2020-10-15 2017 2020
## 8348 2018-09-09 2021-09-08 2018 2021
## 8349 2018-08-27 2021-08-27 2018 2021
## 8350 2018-07-11 2021-07-11 2018 2021
## 8351 2017-11-08 2020-11-07 2017 2020
## 8352 2018-07-29 2021-07-29 2018 2021
## 8353 2018-09-11 2021-09-11 2018 2021
## 8354 2018-08-28 2021-08-27 2018 2021
## 8355 2018-06-19 2021-06-19 2018 2021
## 8356 2018-07-31 2021-07-30 2018 2021
## 8357 2018-08-28 2021-08-27 2018 2021
## 8358 2018-01-03 2021-01-02 2018 2021
## 8359 2018-09-05 2021-09-04 2018 2021
## 8360 2018-01-16 2021-01-16 2018 2021
## 8361 2017-11-14 2020-11-14 2017 2020
## 8362 2019-01-28 2021-01-27 2019 2021
## 8363 2018-06-20 2021-06-19 2018 2021
## 8364 2018-08-12 2021-08-11 2018 2021
## 8365 2018-03-20 2021-03-19 2018 2021
## 8366 2018-09-07 2021-09-04 2018 2021
## 8367 2018-06-10 2021-06-09 2018 2021
## 8368 2017-10-09 2020-10-08 2017 2020
## 8369 2018-02-04 2021-02-03 2018 2021
## 8370 2018-04-18 2021-04-18 2018 2021
## 8371 2018-09-09 2021-09-09 2018 2021
## 8372 2018-09-07 2021-09-07 2018 2021
## 8373 2018-08-22 2021-08-21 2018 2021
## 8374 2017-11-12 2020-11-11 2017 2020
## 8375 2017-11-12 2020-11-11 2017 2020
## 8376 2018-09-10 2021-09-10 2018 2021
## 8377 2017-12-12 2020-12-11 2017 2020
## 8378 2018-04-25 2021-04-02 2018 2021
## 8379 2018-10-09 2021-10-08 2018 2021
## 8380 2018-08-20 2021-08-19 2018 2021
## 8381 2018-05-15 2021-05-14 2018 2021
## 8382 2018-03-11 2021-03-10 2018 2021
## 8383 2018-09-14 2021-09-13 2018 2021
## 8384 2018-08-09 2021-08-06 2018 2021
## 8385 2018-03-13 2021-03-13 2018 2021
## 8386 2017-10-29 2020-10-29 2017 2020
## 8387 2017-10-07 2020-10-04 2017 2020
## 8388 2018-09-08 2021-09-07 2018 2021
## 8389 2018-07-31 2021-07-30 2018 2021
## 8390 2018-09-02 2021-09-01 2018 2021
## 8391 2018-08-31 2021-08-30 2018 2021
## 8392 2018-09-11 2021-09-11 2018 2021
## 8393 2017-12-14 2020-12-13 2017 2020
## 8394 2018-07-27 2021-07-26 2018 2021
## 8395 2018-02-25 2021-02-22 2018 2021
## 8396 2018-07-23 2021-07-22 2018 2021
## 8397 2018-03-31 2021-03-30 2018 2021
## 8398 2018-08-20 2021-08-20 2018 2021
## 8399 2018-08-10 2021-08-09 2018 2021
## 8400 2018-09-10 2021-09-10 2018 2021
## 8401 2018-03-31 2021-03-30 2018 2021
## 8402 2018-09-11 2021-09-10 2018 2021
## 8403 2018-08-02 2021-08-02 2018 2021
## 8404 2018-05-08 2021-05-07 2018 2021
## 8405 2018-08-25 2021-08-24 2018 2021
## 8406 2018-05-08 2021-05-07 2018 2021
## 8407 2018-08-31 2021-08-30 2018 2021
## 8408 2018-08-04 2021-08-03 2018 2021
## 8409 2018-08-22 2021-08-22 2018 2021
## 8410 2017-10-22 2020-10-21 2017 2020
## 8411 2019-01-01 2021-12-30 2019 2021
## 8412 2018-08-31 2021-08-30 2018 2021
## 8413 2018-12-31 2021-12-30 2018 2021
## 8414 2018-09-30 2021-09-29 2018 2021
## 8415 2018-09-25 2021-09-24 2018 2021
## 8416 2018-09-15 2021-09-14 2018 2021
## 8417 2018-06-17 2019-12-30 2018 2019
## 8418 2018-01-01 2020-12-29 2018 2020
## 8419 2018-09-10 2021-09-09 2018 2021
## 8420 2018-05-06 2021-05-06 2018 2021
## 8421 2018-09-02 2021-09-01 2018 2021
## 8422 2018-04-30 2021-04-29 2018 2021
## 8423 2018-04-02 2021-01-30 2018 2021
## 8424 2018-07-23 2021-07-22 2018 2021
## 8425 2018-09-10 2021-09-10 2018 2021
## 8426 2017-10-22 2020-10-19 2017 2020
## 8427 2018-06-14 2021-06-14 2018 2021
## 8428 2018-02-08 2021-02-07 2018 2021
## 8429 2017-12-11 2020-12-11 2017 2020
## 8430 2018-08-26 2021-08-26 2018 2021
## 8431 2017-10-29 2020-10-28 2017 2020
## 8432 2018-09-17 2021-09-16 2018 2021
## 8433 2018-09-29 2021-09-29 2018 2021
## 8434 2018-08-20 2021-08-19 2018 2021
## 8435 2018-03-27 2021-03-26 2018 2021
## 8436 2017-10-11 2020-10-11 2017 2020
## 8437 2018-11-03 2021-11-03 2018 2021
## 8438 2018-08-08 2021-08-07 2018 2021
## 8439 2018-09-15 2021-09-14 2018 2021
## 8440 2018-06-29 2021-06-28 2018 2021
## 8441 2017-12-03 2018-02-27 2017 2018
## 8442 2018-09-02 2021-09-02 2018 2021
## 8443 2018-02-25 2021-02-24 2018 2021
## 8444 2017-12-31 2020-12-30 2017 2020
## 8445 2018-09-04 2021-09-03 2018 2021
## 8446 2018-06-08 2021-06-07 2018 2021
## 8447 2018-07-31 2021-07-30 2018 2021
## 8448 2018-09-14 2021-09-13 2018 2021
## 8449 2018-09-13 2021-09-12 2018 2021
## 8450 2018-05-06 2021-05-05 2018 2021
## 8451 2017-11-20 2020-11-19 2017 2020
## 8452 2017-10-17 2020-10-16 2017 2020
## 8453 2018-06-21 2021-06-21 2018 2021
## 8454 2018-09-03 2021-09-02 2018 2021
## 8455 2018-09-18 2021-09-18 2018 2021
## 8456 2018-05-14 2020-09-08 2018 2020
## 8457 2018-08-29 2021-08-28 2018 2021
## 8458 2017-11-26 2020-11-25 2017 2020
## 8459 2018-09-09 2021-09-08 2018 2021
## 8460 2018-09-14 2021-09-13 2018 2021
## 8461 2018-09-07 2021-09-07 2018 2021
## 8462 2018-09-14 2021-09-13 2018 2021
## 8463 2018-01-21 2021-01-20 2018 2021
## 8464 2018-09-12 2021-09-11 2018 2021
## 8465 2018-06-10 2019-09-14 2018 2019
## 8466 2018-08-11 2021-08-10 2018 2021
## 8467 2018-07-31 2021-07-31 2018 2021
## 8468 2018-09-06 2021-09-06 2018 2021
## 8469 2018-05-24 2021-05-23 2018 2021
## 8470 2018-08-09 2021-08-09 2018 2021
## 8471 2017-11-09 2020-11-09 2017 2020
## 8472 2018-02-25 2021-02-24 2018 2021
## 8473 2018-04-12 2021-04-12 2018 2021
## 8474 2018-08-13 2021-08-10 2018 2021
## 8475 2018-06-10 2021-06-09 2018 2021
## 8476 2018-02-11 2021-02-11 2018 2021
## 8477 2018-09-09 2021-09-08 2018 2021
## 8478 2018-02-11 2021-02-10 2018 2021
## 8479 2018-09-13 2021-09-13 2018 2021
## 8480 2018-07-16 2021-07-15 2018 2021
## 8481 2018-09-02 2021-09-01 2018 2021
## 8482 2018-08-14 2021-08-14 2018 2021
## 8483 2018-08-27 2021-08-26 2018 2021
## 8484 2018-09-02 2021-09-01 2018 2021
## 8485 2018-07-05 2021-07-04 2018 2021
## 8486 2018-04-08 2021-04-07 2018 2021
## 8487 2018-08-31 2021-08-31 2018 2021
## 8488 2018-09-30 2021-09-29 2018 2021
## 8489 2018-03-31 2021-03-30 2018 2021
## 8490 2018-08-30 2021-08-30 2018 2021
## 8491 2018-08-27 2021-08-26 2018 2021
## 8492 2018-04-22 2021-04-21 2018 2021
## 8493 2018-02-22 2021-02-22 2018 2021
## 8494 2018-09-04 2021-09-03 2018 2021
## 8495 2018-08-19 2021-08-18 2018 2021
## 8496 2018-07-27 2021-07-26 2018 2021
## 8497 2018-08-24 2019-08-23 2018 2019
## 8498 2018-08-20 2021-08-19 2018 2021
## 8499 2018-09-08 2021-09-07 2018 2021
## 8500 2018-08-31 2021-08-30 2018 2021
## 8501 2018-01-18 2018-10-21 2018 2018
## 8502 2018-07-22 2021-07-21 2018 2021
## 8503 2018-02-25 2021-02-25 2018 2021
## 8504 2018-09-20 2021-09-19 2018 2021
## 8505 2018-09-10 2021-09-09 2018 2021
## 8506 2018-08-31 2021-08-30 2018 2021
## 8507 2018-08-23 2021-08-22 2018 2021
## 8508 2018-08-31 2021-08-30 2018 2021
## 8509 2018-07-10 2021-07-08 2018 2021
## 8510 2018-05-03 2021-05-02 2018 2021
## 8511 2018-09-04 2021-09-03 2018 2021
## 8512 2018-09-29 2021-09-28 2018 2021
## 8513 2017-10-29 2020-10-28 2017 2020
## 8514 2018-06-22 2021-06-21 2018 2021
## 8515 2018-04-18 2021-04-17 2018 2021
## 8516 2018-01-28 2021-01-27 2018 2021
## 8517 2018-08-31 2021-08-30 2018 2021
## 8518 2018-02-11 2021-02-08 2018 2021
## 8519 2018-04-29 2018-11-13 2018 2018
## 8520 2018-09-08 2021-09-07 2018 2021
## 8521 2018-03-11 2021-03-10 2018 2021
## 8522 2018-08-30 2021-08-29 2018 2021
## 8523 2018-06-30 2021-06-29 2018 2021
## 8524 2018-07-25 2021-07-24 2018 2021
## 8525 2018-08-07 2021-08-07 2018 2021
## 8526 2018-04-06 2021-04-06 2018 2021
## 8527 2018-06-30 2021-06-29 2018 2021
## 8528 2018-01-16 2021-01-15 2018 2021
## 8529 2017-10-05 2020-10-04 2017 2020
## 8530 2018-04-24 2021-04-24 2018 2021
## 8531 2018-08-08 2021-08-07 2018 2021
## 8532 2018-09-06 2021-09-06 2018 2021
## 8533 2018-12-20 2021-12-19 2018 2021
## 8534 2018-03-25 2021-03-22 2018 2021
## 8535 2018-06-30 2021-06-29 2018 2021
## 8536 2018-07-31 2021-07-30 2018 2021
## 8537 2018-09-30 2021-09-29 2018 2021
## 8538 2018-09-08 2021-09-08 2018 2021
## 8539 2018-09-03 2021-09-03 2018 2021
## 8540 2018-04-19 2021-04-18 2018 2021
## 8541 2018-01-05 2021-01-02 2018 2021
## 8542 2018-08-31 2021-08-30 2018 2021
## 8543 2018-04-08 2021-04-07 2018 2021
## 8544 2018-08-05 2021-02-15 2018 2021
## 8545 2018-10-23 2021-10-22 2018 2021
## 8546 2018-11-03 2021-11-03 2018 2021
## 8547 2018-06-24 2021-06-23 2018 2021
## 8548 2018-09-28 2021-09-27 2018 2021
## 8549 2018-01-16 2021-01-15 2018 2021
## 8550 2018-09-14 2021-09-14 2018 2021
## 8551 2017-12-06 2020-09-14 2017 2020
## 8552 2018-09-05 2021-09-05 2018 2021
## 8553 2018-06-19 2021-06-18 2018 2021
## 8554 2018-01-30 2021-01-29 2018 2021
## 8555 2018-09-12 2021-09-12 2018 2021
## 8556 2018-02-21 2021-02-20 2018 2021
## 8557 2018-07-27 2021-07-27 2018 2021
## 8558 2018-04-22 2021-04-21 2018 2021
## 8559 2018-09-10 2021-09-10 2018 2021
## 8560 2018-01-27 2021-01-26 2018 2021
## 8561 2018-12-30 2021-12-29 2018 2021
## 8562 2018-09-13 2021-09-12 2018 2021
## 8563 2017-11-01 2020-10-31 2017 2020
## 8564 2018-10-07 2021-10-06 2018 2021
## 8565 2018-09-11 2021-09-11 2018 2021
## 8566 2018-10-11 2021-10-10 2018 2021
## 8567 2018-08-23 2021-08-23 2018 2021
## 8568 2017-10-08 2020-10-07 2017 2020
## 8569 2017-11-12 2020-11-11 2017 2020
## 8570 2018-08-14 2021-08-13 2018 2021
## 8571 2017-11-19 2020-11-18 2017 2020
## 8572 2018-12-04 2021-12-03 2018 2021
## 8573 2018-08-31 2021-08-30 2018 2021
## 8574 2018-05-14 2021-05-13 2018 2021
## 8575 2018-09-02 2021-09-01 2018 2021
## 8576 2018-08-14 2021-08-13 2018 2021
## 8577 2018-05-13 2021-05-13 2018 2021
## 8578 2018-01-21 2021-01-20 2018 2021
## 8579 2018-04-11 2018-11-05 2018 2018
## 8580 2018-09-04 2021-08-31 2018 2021
## 8581 2018-08-31 2021-04-29 2018 2021
## 8582 2018-09-16 2021-09-15 2018 2021
## 8583 2017-11-04 2020-11-02 2017 2020
## 8584 2018-08-07 2021-08-06 2018 2021
## 8585 2018-06-14 2021-06-14 2018 2021
## 8586 2018-07-22 2021-07-21 2018 2021
## 8587 2018-05-30 2021-05-29 2018 2021
## 8588 2018-08-15 2021-08-14 2018 2021
## 8589 2018-06-21 2021-06-20 2018 2021
## 8590 2018-08-07 2021-08-06 2018 2021
## 8591 2018-07-29 2021-07-29 2018 2021
## 8592 2018-08-12 2021-08-12 2018 2021
## 8593 2018-05-10 2021-05-09 2018 2021
## 8594 2018-04-01 2021-03-31 2018 2021
## 8595 2018-05-06 2021-05-05 2018 2021
## 8596 2017-12-29 2020-12-28 2017 2020
## 8597 2018-04-08 2021-04-07 2018 2021
## 8598 2018-08-11 2021-08-11 2018 2021
## 8599 2018-06-30 2021-06-29 2018 2021
## 8600 2017-12-17 2020-12-16 2017 2020
## 8601 2018-05-14 2020-04-01 2018 2020
## 8602 2019-02-04 2021-02-05 2019 2021
## 8603 2018-04-06 2021-04-05 2018 2021
## 8604 2018-08-31 2021-08-31 2018 2021
## 8605 2018-11-28 2020-06-29 2018 2020
## 8606 2018-09-14 2021-09-13 2018 2021
## 8607 2018-08-28 2021-08-28 2018 2021
## 8608 2018-04-29 2021-04-28 2018 2021
## 8609 2018-10-28 2021-10-27 2018 2021
## 8610 2018-03-11 2021-03-11 2018 2021
## 8611 2018-10-24 2021-10-23 2018 2021
## 8612 2018-09-01 2021-08-31 2018 2021
## 8613 2018-06-14 2021-06-14 2018 2021
## 8614 2018-03-18 2021-03-17 2018 2021
## 8615 2018-09-04 2021-09-03 2018 2021
## 8616 2018-07-24 2021-07-23 2018 2021
## 8617 2018-09-07 2021-09-06 2018 2021
## 8618 2018-07-08 2021-07-07 2018 2021
## 8619 2018-08-27 2021-08-26 2018 2021
## 8620 2018-06-11 2021-06-08 2018 2021
## 8621 2018-11-15 2021-11-14 2018 2021
## 8622 2017-10-10 2020-10-09 2017 2020
## 8623 2018-09-18 2021-09-17 2018 2021
## 8624 2018-01-01 2020-12-31 2018 2020
## 8625 2018-09-29 2021-09-29 2018 2021
## 8626 2018-07-30 2021-07-27 2018 2021
## 8627 2018-08-31 2021-08-30 2018 2021
## 8628 2018-08-05 2021-08-05 2018 2021
## 8629 2018-10-06 2021-10-05 2018 2021
## 8630 2018-03-29 2021-03-28 2018 2021
## 8631 2018-04-01 2020-01-01 2018 2020
## 8632 2018-07-03 2019-12-30 2018 2019
## 8633 2018-04-15 2021-04-14 2018 2021
## 8634 2018-08-14 2021-08-13 2018 2021
## 8635 2018-04-10 2021-04-10 2018 2021
## 8636 2018-07-22 2021-07-21 2018 2021
## 8637 2018-06-13 2021-06-12 2018 2021
## 8638 2018-09-12 2021-09-11 2018 2021
## 8639 2018-01-09 2021-01-09 2018 2021
## 8640 2018-05-28 2021-05-27 2018 2021
## 8641 2018-03-14 2021-03-13 2018 2021
## 8642 2018-09-17 2021-09-16 2018 2021
## 8643 2018-05-31 2021-05-30 2018 2021
## 8644 2018-06-29 2021-06-28 2018 2021
## 8645 2018-09-30 2021-09-29 2018 2021
## 8646 2018-07-29 2021-07-29 2018 2021
## 8647 2018-01-09 2018-09-29 2018 2018
## 8648 2018-05-07 2021-05-06 2018 2021
## 8649 2018-06-30 2021-06-29 2018 2021
## 8650 2018-08-26 2021-08-25 2018 2021
## 8651 2018-09-03 2021-09-02 2018 2021
## 8652 2017-12-27 2020-12-26 2017 2020
## 8653 2018-01-16 2021-01-15 2018 2021
## 8654 2018-05-18 2021-05-17 2018 2021
## 8655 2018-06-20 2021-06-19 2018 2021
## 8656 2017-12-06 2020-12-05 2017 2020
## 8657 2018-08-09 2021-08-08 2018 2021
## 8658 2018-08-31 2021-08-30 2018 2021
## 8659 2017-12-31 2020-12-30 2017 2020
## 8660 2017-11-13 2020-11-12 2017 2020
## 8661 2018-09-09 2021-09-08 2018 2021
## 8662 2018-06-27 2021-06-26 2018 2021
## 8663 2018-09-05 2021-09-04 2018 2021
## 8664 2017-10-25 2019-12-14 2017 2019
## 8665 2018-09-09 2021-09-08 2018 2021
## 8666 2018-09-06 2021-09-05 2018 2021
## 8667 2018-02-14 2021-02-13 2018 2021
## 8668 2018-07-31 2020-09-29 2018 2020
## 8669 2018-06-22 2021-06-21 2018 2021
## 8670 2018-05-01 2021-04-30 2018 2021
## 8671 2018-06-14 2021-06-13 2018 2021
## 8672 2018-09-17 2021-09-16 2018 2021
## 8673 2018-08-29 2021-08-28 2018 2021
## 8674 2017-12-03 2020-12-02 2017 2020
## 8675 2019-02-28 2022-02-27 2019 2022
## 8676 2018-06-06 2021-06-06 2018 2021
## 8677 2018-08-25 2021-08-24 2018 2021
## 8678 2018-09-21 2021-09-20 2018 2021
## 8679 2018-07-28 2021-07-27 2018 2021
## 8680 2018-09-06 2021-09-05 2018 2021
## 8681 2018-02-18 2021-02-17 2018 2021
## 8682 2018-07-25 2021-07-24 2018 2021
## 8683 2018-03-12 2021-03-12 2018 2021
## 8684 2018-07-17 2021-07-16 2018 2021
## 8685 2018-06-11 2021-06-09 2018 2021
## 8686 2018-06-24 2021-06-23 2018 2021
## 8687 2018-01-11 2021-01-10 2018 2021
## 8688 2018-08-31 2021-08-31 2018 2021
## 8689 2018-08-28 2021-08-27 2018 2021
## 8690 2018-08-27 2021-08-26 2018 2021
## 8691 2018-09-30 2021-09-29 2018 2021
## 8692 2018-05-09 2021-05-08 2018 2021
## 8693 2018-05-20 2021-05-19 2018 2021
## 8694 2018-09-05 2021-09-04 2018 2021
## 8695 2018-05-18 2021-05-17 2018 2021
## 8696 2018-07-30 2021-07-29 2018 2021
## 8697 2018-07-29 2021-07-28 2018 2021
## 8698 2018-04-17 2021-04-16 2018 2021
## 8699 2018-07-21 2021-07-20 2018 2021
## 8700 2018-09-05 2021-09-04 2018 2021
## 8701 2018-03-31 2021-03-30 2018 2021
## 8702 2018-09-30 2021-09-29 2018 2021
## 8703 2018-09-13 2021-09-13 2018 2021
## 8704 2018-09-08 2021-09-08 2018 2021
## 8705 2018-08-31 2021-08-31 2018 2021
## 8706 2018-09-11 2021-09-10 2018 2021
## 8707 2018-08-31 2021-08-31 2018 2021
## 8708 2018-09-13 2021-09-13 2018 2021
## 8709 2018-08-29 2021-08-29 2018 2021
## 8710 2018-08-15 2021-08-14 2018 2021
## 8711 2018-09-23 2021-09-22 2018 2021
## 8712 2018-09-18 2021-09-18 2018 2021
## 8713 2018-07-31 2021-07-30 2018 2021
## 8714 2018-04-29 2021-04-28 2018 2021
## 8715 2018-09-11 2021-09-11 2018 2021
## 8716 2018-08-31 2020-12-30 2018 2020
## 8717 2018-03-16 2021-03-16 2018 2021
## 8718 2018-07-01 2021-07-01 2018 2021
## 8719 2018-02-24 2021-02-23 2018 2021
## 8720 2018-07-15 2021-07-14 2018 2021
## 8721 2018-06-14 2021-06-14 2018 2021
## 8722 2018-05-07 2021-05-06 2018 2021
## 8723 2018-08-29 2021-08-28 2018 2021
## 8724 2018-01-14 2021-01-13 2018 2021
## 8725 2018-07-13 2021-07-13 2018 2021
## 8726 2018-08-12 2021-08-12 2018 2021
## 8727 2018-07-25 2021-07-24 2018 2021
## 8728 2018-04-12 2021-04-12 2018 2021
## 8729 2018-08-15 2021-08-15 2018 2021
## 8730 2018-08-15 2021-08-14 2018 2021
## 8731 2018-08-31 2021-08-30 2018 2021
## 8732 2018-03-20 2021-03-14 2018 2021
## 8733 2018-07-31 2021-07-31 2018 2021
## 8734 2018-09-18 2021-09-17 2018 2021
## 8735 2018-06-02 2021-06-02 2018 2021
## 8736 2018-09-30 2019-09-29 2018 2019
## 8737 2018-09-06 2020-09-05 2018 2020
## 8738 2018-07-09 2021-07-08 2018 2021
## 8739 2018-01-09 2020-12-19 2018 2020
## 8740 2018-08-19 2021-08-18 2018 2021
## 8741 2018-05-07 2021-05-06 2018 2021
## 8742 2018-06-30 2021-06-29 2018 2021
## 8743 2018-08-02 2020-08-13 2018 2020
## 8744 2018-07-31 2021-07-31 2018 2021
## 8745 2018-09-07 2021-09-07 2018 2021
## 8746 2018-07-31 2019-06-14 2018 2019
## 8747 2018-09-20 2021-09-20 2018 2021
## 8748 2018-08-26 2021-08-25 2018 2021
## 8749 2018-08-14 2021-08-13 2018 2021
## 8750 2018-07-15 2021-07-14 2018 2021
## 8751 2019-01-06 2022-01-05 2019 2022
## 8752 2018-07-31 2021-07-30 2018 2021
## 8753 2017-10-15 2020-10-14 2017 2020
## 8754 2017-12-17 2020-12-16 2017 2020
## 8755 2018-07-14 2021-07-13 2018 2021
## 8756 2018-08-16 2021-08-16 2018 2021
## 8757 2018-07-31 2021-07-31 2018 2021
## 8758 2018-08-21 2021-08-20 2018 2021
## 8759 2018-04-30 2021-04-29 2018 2021
## 8760 2018-02-22 2021-02-21 2018 2021
## 8761 2018-09-30 2021-09-30 2018 2021
## 8762 2018-08-31 2020-03-30 2018 2020
## 8763 2018-07-17 2021-07-15 2018 2021
## 8764 2018-06-30 2021-04-29 2018 2021
## 8765 2018-06-30 2021-06-29 2018 2021
## 8766 2018-09-23 2018-11-22 2018 2018
## 8767 2018-06-17 2021-06-16 2018 2021
## 8768 2018-03-14 2021-03-13 2018 2021
## 8769 2018-03-20 2021-03-19 2018 2021
## 8770 2018-05-07 2021-05-06 2018 2021
## 8771 2018-02-25 2021-02-24 2018 2021
## 8772 2018-03-25 2021-03-24 2018 2021
## 8773 2018-09-03 2021-09-03 2018 2021
## 8774 2018-02-05 2020-09-02 2018 2020
## 8775 2018-06-14 2021-06-14 2018 2021
## 8776 2018-06-30 2021-06-30 2018 2021
## 8777 2018-06-14 2021-06-14 2018 2021
## 8778 2018-09-11 2021-09-10 2018 2021
## 8779 2018-09-15 2021-09-14 2018 2021
## 8780 2018-09-16 2021-09-15 2018 2021
## 8781 2018-11-08 2021-11-07 2018 2021
## 8782 2019-03-06 2022-03-06 2019 2022
## 8783 2018-08-31 2021-08-30 2018 2021
## 8784 2017-10-22 2020-01-05 2017 2020
## 8785 2018-09-24 2021-09-23 2018 2021
## 8786 2018-08-31 2021-08-30 2018 2021
## 8787 2018-07-03 2021-07-02 2018 2021
## 8788 2018-01-14 2021-01-13 2018 2021
## 8789 2018-03-11 2021-03-10 2018 2021
## 8790 2018-06-14 2021-06-13 2018 2021
## 8791 2018-12-31 2021-12-30 2018 2021
## 8792 2018-08-24 2021-08-23 2018 2021
## 8793 2018-01-25 2021-01-24 2018 2021
## 8794 2018-03-27 2021-03-26 2018 2021
## 8795 2018-08-27 2021-08-27 2018 2021
## 8796 2018-07-26 2021-07-26 2018 2021
## 8797 2018-02-22 2021-02-21 2018 2021
## 8798 2018-08-31 2021-08-31 2018 2021
## 8799 2017-11-04 2020-11-01 2017 2020
## 8800 2018-08-01 2021-08-01 2018 2021
## 8801 2018-09-25 2021-09-25 2018 2021
## 8802 2017-11-12 2020-11-12 2017 2020
## 8803 2018-05-07 2021-05-06 2018 2021
## 8804 2018-10-31 2021-10-30 2018 2021
## 8805 2018-09-04 2021-09-03 2018 2021
## 8806 2018-09-13 2021-09-10 2018 2021
## 8807 2018-07-31 2021-07-30 2018 2021
## 8808 2018-03-25 2021-03-24 2018 2021
## 8809 2018-09-20 2021-09-19 2018 2021
## 8810 2018-01-31 2021-01-28 2018 2021
## 8811 2018-09-16 2021-09-15 2018 2021
## 8812 2018-05-17 2021-05-16 2018 2021
## 8813 2018-02-12 2021-02-12 2018 2021
## 8814 2018-09-16 2021-09-15 2018 2021
## 8815 2017-11-12 2020-11-11 2017 2020
## 8816 2018-04-08 2021-04-07 2018 2021
## 8817 2018-08-19 2021-08-18 2018 2021
## 8818 2018-07-31 2021-07-30 2018 2021
## 8819 2018-08-19 2021-08-18 2018 2021
## 8820 2018-09-30 2021-09-30 2018 2021
## 8821 2018-08-21 2021-08-20 2018 2021
## 8822 2018-03-06 2019-07-14 2018 2019
## 8823 2018-11-18 2021-11-17 2018 2021
## 8824 2018-01-14 2021-01-13 2018 2021
## 8825 2017-12-05 2020-12-04 2017 2020
## 8826 2018-09-13 2021-09-12 2018 2021
## 8827 2018-08-05 2021-08-04 2018 2021
## 8828 2018-08-21 2021-08-20 2018 2021
## 8829 2018-04-22 2021-04-22 2018 2021
## 8830 2018-07-08 2021-07-07 2018 2021
## 8831 2018-06-19 2021-06-19 2018 2021
## 8832 2017-12-27 2020-12-26 2017 2020
## 8833 2018-08-27 2021-08-27 2018 2021
## 8834 2018-08-30 2021-08-29 2018 2021
## 8835 2018-06-26 2021-06-26 2018 2021
## 8836 2018-08-11 2021-08-11 2018 2021
## 8837 2018-02-05 2021-02-05 2018 2021
## 8838 2017-11-12 2020-11-11 2017 2020
## 8839 2018-09-06 2021-09-05 2018 2021
## 8840 2018-02-14 2021-02-13 2018 2021
## 8841 2017-10-29 2020-02-03 2017 2020
## 8842 2018-09-14 2021-09-13 2018 2021
## 8843 2017-12-14 2020-12-13 2017 2020
## 8844 2018-09-11 2021-09-10 2018 2021
## 8845 2018-01-31 2021-01-30 2018 2021
## 8846 2018-08-14 2021-08-14 2018 2021
## 8847 2018-05-01 2021-05-01 2018 2021
## 8848 2018-03-29 2021-03-28 2018 2021
## 8849 2018-08-31 2021-08-30 2018 2021
## 8850 2018-06-14 2021-06-14 2018 2021
## 8851 2018-07-08 2021-07-07 2018 2021
## 8852 2018-05-27 2021-05-26 2018 2021
## 8853 2018-07-10 2021-07-10 2018 2021
## 8854 2018-01-17 2021-01-16 2018 2021
## 8855 2017-11-12 2020-11-11 2017 2020
## 8856 2018-09-09 2021-09-08 2018 2021
## 8857 2018-09-13 2020-08-20 2018 2020
## 8858 2018-06-03 2021-06-02 2018 2021
## 8859 2018-09-10 2021-09-10 2018 2021
## 8860 2018-11-15 2021-11-14 2018 2021
## 8861 2018-08-14 2021-08-13 2018 2021
## 8862 2017-12-20 2020-12-19 2017 2020
## 8863 2018-03-20 2021-03-19 2018 2021
## 8864 2018-01-01 2020-12-31 2018 2020
## 8865 2018-03-08 2021-03-08 2018 2021
## 8866 2018-03-25 2020-02-28 2018 2020
## 8867 2018-03-15 2021-03-15 2018 2021
## 8868 2018-08-07 2021-08-06 2018 2021
## 8869 2018-09-06 2021-09-05 2018 2021
## 8870 2018-07-31 2021-07-30 2018 2021
## 8871 2018-09-01 2021-08-31 2018 2021
## 8872 2018-09-15 2021-09-14 2018 2021
## 8873 2017-10-09 2020-10-09 2017 2020
## 8874 2018-04-30 2021-04-30 2018 2021
## 8875 2018-07-19 2020-02-28 2018 2020
## 8876 2017-11-12 2020-11-11 2017 2020
## 8877 2018-08-31 2021-08-30 2018 2021
## 8878 2018-09-30 2021-09-29 2018 2021
## 8879 2018-08-09 2021-08-08 2018 2021
## 8880 2018-05-08 2021-05-07 2018 2021
## 8881 2018-07-28 2021-07-27 2018 2021
## 8882 2018-09-27 2021-09-27 2018 2021
## 8883 2018-04-08 2020-05-06 2018 2020
## 8884 2017-11-06 2020-11-05 2017 2020
## 8885 2018-08-31 2021-08-30 2018 2021
## 8886 2018-03-05 2020-09-29 2018 2020
## 8887 2018-08-05 2021-08-04 2018 2021
## 8888 2018-07-15 2021-07-14 2018 2021
## 8889 2018-03-24 2021-03-24 2018 2021
## 8890 2018-09-10 2021-09-10 2018 2021
## 8891 2018-07-05 2021-07-02 2018 2021
## 8892 2018-09-10 2021-09-09 2018 2021
## 8893 2018-12-22 2021-12-22 2018 2021
## 8894 2018-08-31 2021-08-30 2018 2021
## 8895 2018-08-06 2021-08-05 2018 2021
## 8896 2018-03-31 2021-03-30 2018 2021
## 8897 2018-02-04 2021-02-03 2018 2021
## 8898 2018-09-10 2021-09-09 2018 2021
## 8899 2018-07-05 2021-07-04 2018 2021
## 8900 2018-05-29 2021-05-28 2018 2021
## 8901 2018-08-31 2021-08-30 2018 2021
## 8902 2018-06-14 2021-06-14 2018 2021
## 8903 2018-09-14 2021-09-13 2018 2021
## 8904 2018-03-11 2021-03-10 2018 2021
## 8905 2018-08-12 2019-12-17 2018 2019
## 8906 2018-07-31 2021-07-31 2018 2021
## 8907 2018-07-18 2021-07-17 2018 2021
## 8908 2017-10-26 2020-10-25 2017 2020
## 8909 2018-09-10 2021-09-09 2018 2021
## 8910 2018-06-28 2021-06-27 2018 2021
## 8911 2018-03-18 2021-03-17 2018 2021
## 8912 2018-06-17 2021-06-16 2018 2021
## 8913 2018-01-16 2021-01-15 2018 2021
## 8914 2018-09-10 2021-09-09 2018 2021
## 8915 2018-01-31 2021-01-31 2018 2021
## 8916 2018-01-07 2021-01-06 2018 2021
## 8917 2018-06-08 2021-06-08 2018 2021
## 8918 2018-12-20 2021-12-19 2018 2021
## 8919 2018-08-09 2021-08-09 2018 2021
## 8920 2018-08-31 2021-08-30 2018 2021
## 8921 2018-09-17 2021-09-16 2018 2021
## 8922 2018-09-14 2021-09-14 2018 2021
## 8923 2018-06-24 2021-06-24 2018 2021
## 8924 2018-02-08 2021-02-08 2018 2021
## 8925 2018-09-24 2021-09-23 2018 2021
## 8926 2018-04-23 2021-04-22 2018 2021
## 8927 2018-08-05 2021-08-04 2018 2021
## 8928 2017-12-31 2020-10-30 2017 2020
## 8929 2018-01-16 2021-01-15 2018 2021
## 8930 2018-07-31 2021-03-30 2018 2021
## 8931 2018-05-14 2021-05-07 2018 2021
## 8932 2018-09-24 2021-09-23 2018 2021
## 8933 2018-01-21 2021-01-20 2018 2021
## 8934 2019-03-20 2022-03-20 2019 2022
## 8935 2018-07-26 2021-07-25 2018 2021
## 8936 2018-08-12 2021-08-11 2018 2021
## 8937 2018-07-16 2021-07-15 2018 2021
## 8938 2018-09-06 2021-09-05 2018 2021
## 8939 2018-08-31 2021-08-30 2018 2021
## 8940 2018-09-23 2021-09-22 2018 2021
## 8941 2018-12-31 2021-09-29 2018 2021
## 8942 2018-08-14 2021-08-13 2018 2021
## 8943 2018-09-14 2021-09-13 2018 2021
## 8944 2018-04-22 2021-04-21 2018 2021
## 8945 2018-06-24 2021-06-23 2018 2021
## 8946 2018-07-01 2021-06-29 2018 2021
## 8947 2018-09-11 2021-09-10 2018 2021
## 8948 2017-10-29 2020-10-28 2017 2020
## 8949 2018-09-01 2021-09-01 2018 2021
## 8950 2018-08-28 2021-08-28 2018 2021
## 8951 2018-03-18 2021-03-17 2018 2021
## 8952 2018-07-16 2021-07-16 2018 2021
## 8953 2017-10-12 2020-10-11 2017 2020
## 8954 2018-09-09 2021-09-08 2018 2021
## 8955 2018-03-25 2021-03-24 2018 2021
## 8956 2018-08-08 2021-08-05 2018 2021
## 8957 2017-12-03 2020-12-03 2017 2020
## 8958 2018-10-26 2021-10-25 2018 2021
## 8959 2018-07-31 2021-07-30 2018 2021
## 8960 2018-09-09 2021-09-08 2018 2021
## 8961 2018-03-27 2021-03-26 2018 2021
## 8962 2018-07-30 2021-07-30 2018 2021
## 8963 2018-03-04 2021-03-03 2018 2021
## 8964 2018-08-27 2021-08-27 2018 2021
## 8965 2018-08-14 2021-08-14 2018 2021
## 8966 2018-05-08 2021-05-07 2018 2021
## 8967 2018-09-06 2021-09-06 2018 2021
## 8968 2018-08-31 2021-08-30 2018 2021
## 8969 2018-09-16 2021-09-15 2018 2021
## 8970 2017-11-19 2020-09-14 2017 2020
## 8971 2018-09-06 2021-09-06 2018 2021
## 8972 2018-09-29 2021-09-27 2018 2021
## 8973 2018-07-31 2021-07-30 2018 2021
## 8974 2017-12-10 2020-12-10 2017 2020
## 8975 2018-09-05 2021-09-02 2018 2021
## 8976 2018-09-17 2021-09-16 2018 2021
## 8977 2018-09-06 2021-09-06 2018 2021
## 8978 2018-09-24 2021-09-23 2018 2021
## 8979 2018-08-24 2021-08-23 2018 2021
## 8980 2018-09-14 2021-09-14 2018 2021
## 8981 2018-01-21 2021-01-18 2018 2021
## 8982 2018-05-27 2021-05-26 2018 2021
## 8983 2018-08-27 2021-08-26 2018 2021
## 8984 2018-08-03 2021-08-03 2018 2021
## 8985 2018-07-19 2021-07-19 2018 2021
## 8986 2018-01-30 2020-01-29 2018 2020
## 8987 2018-02-14 2021-02-13 2018 2021
## 8988 2018-08-14 2021-08-13 2018 2021
## 8989 2018-05-03 2021-05-02 2018 2021
## 8990 2018-09-14 2021-09-13 2018 2021
## 8991 2018-10-16 2021-10-15 2018 2021
## 8992 2018-07-17 2020-02-28 2018 2020
## 8993 2017-12-25 2018-09-29 2017 2018
## 8994 2018-08-19 2021-08-19 2018 2021
## 8995 2018-07-30 2021-07-30 2018 2021
## 8996 2018-08-04 2021-08-04 2018 2021
## 8997 2018-04-09 2021-04-08 2018 2021
## 8998 2017-10-14 2020-10-14 2017 2020
## 8999 2018-09-30 2021-09-29 2018 2021
## 9000 2018-09-20 2021-09-19 2018 2021
## 9001 2018-08-10 2021-08-09 2018 2021
## 9002 2018-08-05 2021-08-04 2018 2021
## 9003 2018-05-21 2021-05-20 2018 2021
## 9004 2017-10-29 2020-10-28 2017 2020
## 9005 2018-06-20 2021-06-19 2018 2021
## 9006 2018-09-11 2021-09-11 2018 2021
## 9007 2017-12-10 2020-12-09 2017 2020
## 9008 2018-01-01 2020-12-31 2018 2020
## 9009 2017-11-28 2020-11-27 2017 2020
## 9010 2018-05-04 2021-05-03 2018 2021
## 9011 2018-04-15 2021-04-14 2018 2021
## 9012 2018-04-30 2021-04-30 2018 2021
## 9013 2018-09-16 2021-09-15 2018 2021
## 9014 2018-08-29 2021-08-28 2018 2021
## 9015 2018-01-29 2021-01-24 2018 2021
## 9016 2017-12-31 2020-12-31 2017 2020
## 9017 2018-01-11 2021-01-11 2018 2021
## 9018 2018-09-14 2021-09-13 2018 2021
## 9019 2018-06-14 2021-06-13 2018 2021
## 9020 2018-11-13 2021-11-12 2018 2021
## 9021 2018-05-06 2021-05-05 2018 2021
## 9022 2018-09-13 2021-09-12 2018 2021
## 9023 2018-09-07 2021-09-06 2018 2021
## 9024 2018-01-28 2021-01-27 2018 2021
## 9025 2018-08-31 2021-08-30 2018 2021
## 9026 2018-07-19 2021-07-18 2018 2021
## 9027 2018-01-26 2021-01-26 2018 2021
## 9028 2018-09-12 2021-09-11 2018 2021
## 9029 2018-09-18 2021-09-18 2018 2021
## 9030 2018-09-14 2021-09-14 2018 2021
## 9031 2018-04-08 2021-04-07 2018 2021
## 9032 2018-08-31 2021-08-30 2018 2021
## 9033 2018-09-17 2021-09-16 2018 2021
## 9034 2018-07-01 2021-06-29 2018 2021
## 9035 2018-10-01 2021-09-30 2018 2021
## 9036 2018-07-31 2021-07-30 2018 2021
## 9037 2018-09-03 2021-09-02 2018 2021
## 9038 2018-08-14 2021-08-13 2018 2021
## 9039 2018-04-30 2021-04-29 2018 2021
## 9040 2017-10-09 2020-10-09 2017 2020
## 9041 2018-09-20 2021-09-19 2018 2021
## 9042 2017-12-17 2020-12-14 2017 2020
## 9043 2018-07-08 2021-07-07 2018 2021
## 9044 2018-04-26 2021-04-26 2018 2021
## 9045 2018-09-18 2021-09-17 2018 2021
## 9046 2019-01-03 2022-01-02 2019 2022
## 9047 2018-08-31 2021-08-30 2018 2021
## 9048 2018-09-11 2021-09-10 2018 2021
## 9049 2018-08-22 2021-08-22 2018 2021
## 9050 2018-09-06 2021-09-05 2018 2021
## 9051 2018-08-04 2021-08-03 2018 2021
## 9052 2018-03-08 2021-03-07 2018 2021
## 9053 2018-02-28 2021-02-27 2018 2021
## 9054 2017-10-03 2020-10-02 2017 2020
## 9055 2018-06-14 2021-06-14 2018 2021
## 9056 2017-12-12 2020-12-11 2017 2020
## 9057 2018-07-31 2021-07-31 2018 2021
## 9058 2018-11-30 2021-11-29 2018 2021
## 9059 2018-06-14 2021-06-14 2018 2021
## 9060 2018-08-31 2021-08-30 2018 2021
## 9061 2019-02-28 2022-02-27 2019 2022
## 9062 2018-09-26 2021-09-26 2018 2021
## 9063 2018-08-15 2021-08-15 2018 2021
## 9064 2018-09-09 2021-09-09 2018 2021
## 9065 2017-12-17 2020-12-14 2017 2020
## 9066 2018-11-30 2021-11-29 2018 2021
## 9067 2018-09-11 2021-09-10 2018 2021
## 9068 2018-08-29 2021-08-29 2018 2021
## 9069 2018-02-21 2021-02-20 2018 2021
## 9070 2018-09-06 2021-09-05 2018 2021
## 9071 2018-08-19 2021-08-18 2018 2021
## 9072 2018-04-15 2021-04-14 2018 2021
## 9073 2018-04-30 2021-04-29 2018 2021
## 9074 2018-02-28 2018-03-30 2018 2018
## 9075 2018-06-30 2021-06-30 2018 2021
## 9076 2018-08-30 2021-08-30 2018 2021
## 9077 2018-08-29 2021-08-29 2018 2021
## 9078 2018-06-13 2021-06-12 2018 2021
## 9079 2017-12-09 2020-12-09 2017 2020
## 9080 2018-06-21 2021-06-20 2018 2021
## 9081 2018-08-05 2021-08-02 2018 2021
## 9082 2018-04-22 2020-08-28 2018 2020
## 9083 2017-12-23 2020-12-22 2017 2020
## 9084 2018-08-21 2021-08-20 2018 2021
## 9085 2018-07-24 2021-07-23 2018 2021
## 9086 2018-07-31 2021-07-30 2018 2021
## 9087 2018-09-18 2021-09-17 2018 2021
## 9088 2018-11-29 2021-11-28 2018 2021
## 9089 2018-06-03 2021-06-02 2018 2021
## 9090 2018-08-12 2021-08-11 2018 2021
## 9091 2018-08-27 2021-08-24 2018 2021
## 9092 2018-03-15 2021-03-14 2018 2021
## 9093 2018-05-29 2021-05-28 2018 2021
## 9094 2018-08-29 2021-08-28 2018 2021
## 9095 2018-09-10 2021-09-10 2018 2021
## 9096 2018-12-30 2021-11-29 2018 2021
## 9097 2018-08-26 2021-08-25 2018 2021
## 9098 2018-05-13 2021-05-12 2018 2021
## 9099 2018-09-05 2021-09-05 2018 2021
## 9100 2018-09-11 2021-09-10 2018 2021
## 9101 2018-03-20 2021-03-18 2018 2021
## 9102 2018-08-23 2021-08-20 2018 2021
## 9103 2018-09-21 2021-09-19 2018 2021
## 9104 2018-09-09 2021-09-08 2018 2021
## 9105 2018-09-14 2021-09-14 2018 2021
## 9106 2018-02-25 2021-02-24 2018 2021
## 9107 2018-08-09 2021-08-08 2018 2021
## 9108 2018-09-13 2021-09-12 2018 2021
## 9109 2018-08-09 2021-08-09 2018 2021
## 9110 2018-08-10 2021-08-09 2018 2021
## 9111 2018-09-04 2021-09-03 2018 2021
## 9112 2018-08-31 2021-08-30 2018 2021
## 9113 2018-05-31 2021-05-30 2018 2021
## 9114 2018-08-31 2021-08-29 2018 2021
## 9115 2018-09-11 2021-09-11 2018 2021
## 9116 2018-01-16 2021-01-15 2018 2021
## 9117 2018-09-09 2021-09-09 2018 2021
## 9118 2018-08-31 2021-08-30 2018 2021
## 9119 2018-09-11 2021-09-10 2018 2021
## 9120 2018-01-01 2021-01-01 2018 2021
## 9121 2018-09-14 2021-08-13 2018 2021
## 9122 2018-08-27 2021-08-26 2018 2021
## 9123 2018-08-29 2021-08-29 2018 2021
## 9124 2018-11-26 2021-11-25 2018 2021
## 9125 2018-05-28 2021-05-28 2018 2021
## 9126 2018-04-01 2021-03-31 2018 2021
## 9127 2018-04-23 2021-04-22 2018 2021
## 9128 2018-03-18 2021-03-18 2018 2021
## 9129 2018-08-16 2021-08-16 2018 2021
## 9130 2018-07-27 2021-07-27 2018 2021
## 9131 2018-08-12 2021-08-11 2018 2021
## 9132 2017-11-05 2020-11-05 2017 2020
## 9133 2018-03-11 2021-03-10 2018 2021
## 9134 2018-08-31 2021-08-30 2018 2021
## 9135 2018-08-03 2021-08-02 2018 2021
## 9136 2018-05-21 2021-05-15 2018 2021
## 9137 2018-09-09 2021-09-09 2018 2021
## 9138 2017-12-25 2020-12-22 2017 2020
## 9139 2018-07-10 2021-07-09 2018 2021
## 9140 2018-05-31 2021-05-30 2018 2021
## 9141 2018-09-03 2021-09-02 2018 2021
## 9142 2018-10-25 2021-10-24 2018 2021
## 9143 2018-02-25 2021-02-22 2018 2021
## 9144 2018-09-17 2021-09-16 2018 2021
## 9145 2018-01-14 2021-01-13 2018 2021
## 9146 2018-07-31 2021-07-30 2018 2021
## 9147 2018-09-17 2021-09-16 2018 2021
## 9148 2018-06-30 2021-06-29 2018 2021
## 9149 2018-09-25 2021-09-25 2018 2021
## 9150 2018-09-01 2021-08-31 2018 2021
## 9151 2018-08-13 2021-08-12 2018 2021
## 9152 2018-06-30 2019-06-29 2018 2019
## 9153 2018-08-03 2019-04-24 2018 2019
## 9154 2018-09-10 2021-09-10 2018 2021
## 9155 2018-05-31 2021-05-31 2018 2021
## 9156 2018-09-12 2021-09-12 2018 2021
## 9157 2018-01-12 2021-01-11 2018 2021
## 9158 2018-09-19 2021-09-18 2018 2021
## 9159 2018-08-31 2021-08-28 2018 2021
## 9160 2018-09-11 2021-09-10 2018 2021
## 9161 2018-09-20 2021-09-19 2018 2021
## 9162 2018-09-05 2021-09-05 2018 2021
## 9163 2018-08-31 2021-08-30 2018 2021
## 9164 2018-09-09 2021-09-08 2018 2021
## 9165 2018-08-14 2021-08-13 2018 2021
## 9166 2018-08-30 2021-08-29 2018 2021
## 9167 2018-05-28 2021-05-27 2018 2021
## 9168 2017-10-31 2020-10-31 2017 2020
## 9169 2018-03-11 2021-03-11 2018 2021
## 9170 2018-07-15 2021-07-15 2018 2021
## 9171 2018-01-01 2021-01-01 2018 2021
## 9172 2017-12-14 2020-04-30 2017 2020
## 9173 2018-02-04 2021-02-03 2018 2021
## 9174 2018-05-11 2021-01-09 2018 2021
## 9175 2018-09-13 2021-09-12 2018 2021
## 9176 2018-08-24 2021-08-24 2018 2021
## 9177 2018-02-06 2021-02-05 2018 2021
## 9178 2018-01-25 2021-01-25 2018 2021
## 9179 2019-01-15 2022-01-14 2019 2022
## 9180 2018-09-13 2021-09-12 2018 2021
## 9181 2018-08-07 2021-08-07 2018 2021
## 9182 2018-05-13 2021-05-12 2018 2021
## 9183 2018-09-12 2021-09-12 2018 2021
## 9184 2018-09-11 2021-09-11 2018 2021
## 9185 2017-10-26 2020-10-25 2017 2020
## 9186 2018-09-01 2021-08-31 2018 2021
## 9187 2018-08-05 2021-08-04 2018 2021
## 9188 2018-09-17 2021-09-17 2018 2021
## 9189 2018-06-09 2021-06-09 2018 2021
## 9190 2018-02-19 2021-02-18 2018 2021
## 9191 2018-08-19 2021-08-18 2018 2021
## 9192 2018-09-04 2021-09-03 2018 2021
## 9193 2018-09-25 2021-09-24 2018 2021
## 9194 2019-01-29 2022-01-28 2019 2022
## 9195 2018-08-22 2021-08-21 2018 2021
## 9196 2018-06-14 2021-06-14 2018 2021
## 9197 2018-09-09 2021-09-08 2018 2021
## 9198 2017-12-31 2020-12-30 2017 2020
## 9199 2018-01-16 2021-01-15 2018 2021
## 9200 2018-07-15 2021-07-14 2018 2021
## 9201 2018-07-24 2021-07-23 2018 2021
## 9202 2018-08-14 2021-08-14 2018 2021
## 9203 2018-08-30 2021-08-29 2018 2021
## 9204 2018-06-06 2021-06-06 2018 2021
## 9205 2018-06-21 2021-06-18 2018 2021
## 9206 2018-09-11 2021-09-09 2018 2021
## 9207 2018-07-09 2021-07-08 2018 2021
## 9208 2018-02-04 2021-02-03 2018 2021
## 9209 2018-01-31 2021-01-31 2018 2021
## 9210 2018-05-14 2021-05-13 2018 2021
## 9211 2018-07-26 2021-07-25 2018 2021
## 9212 2018-09-02 2021-09-01 2018 2021
## 9213 2017-11-19 2020-11-18 2017 2020
## 9214 2018-06-21 2021-06-20 2018 2021
## 9215 2018-09-14 2021-09-13 2018 2021
## 9216 2018-08-22 2021-08-21 2018 2021
## 9217 2017-11-27 2020-08-08 2017 2020
## 9218 2017-11-19 2020-11-18 2017 2020
## 9219 2018-09-02 2021-09-02 2018 2021
## 9220 2018-10-16 2021-10-15 2018 2021
## 9221 2018-09-17 2021-09-17 2018 2021
## 9222 2017-09-25 2020-09-24 2017 2020
## 9223 2018-09-19 2021-09-18 2018 2021
## 9224 2018-06-30 2021-06-30 2018 2021
## 9225 2018-11-22 2021-11-21 2018 2021
## 9226 2018-10-07 2021-10-06 2018 2021
## 9227 2018-07-22 2021-07-21 2018 2021
## 9228 2018-02-28 2018-03-30 2018 2018
## 9229 2017-11-09 2020-11-04 2017 2020
## 9230 2018-09-25 2021-09-24 2018 2021
## 9231 2018-09-06 2021-09-06 2018 2021
## 9232 2017-12-05 2020-12-04 2017 2020
## 9233 2018-08-24 2021-08-24 2018 2021
## 9234 2018-01-14 2021-01-13 2018 2021
## 9235 2018-02-28 2021-02-27 2018 2021
## 9236 2018-09-29 2021-09-29 2018 2021
## 9237 2018-05-21 2021-05-20 2018 2021
## 9238 2018-06-14 2021-06-14 2018 2021
## 9239 2017-12-10 2020-12-09 2017 2020
## 9240 2018-09-16 2021-09-14 2018 2021
## 9241 2018-09-21 2021-09-21 2018 2021
## 9242 2018-12-30 2021-12-29 2018 2021
## 9243 2018-03-05 2021-03-04 2018 2021
## 9244 2018-01-31 2021-01-30 2018 2021
## 9245 2018-02-20 2021-02-20 2018 2021
## 9246 2018-12-20 2021-12-19 2018 2021
## 9247 2018-06-30 2021-06-29 2018 2021
## 9248 2018-03-28 2021-03-28 2018 2021
## 9249 2018-08-26 2021-08-25 2018 2021
## 9250 2018-08-31 2021-08-30 2018 2021
## 9251 2018-03-31 2021-03-30 2018 2021
## 9252 2018-02-18 2021-02-18 2018 2021
## 9253 2018-12-21 2021-12-18 2018 2021
## 9254 2018-07-08 2021-07-07 2018 2021
## 9255 2018-04-26 2021-04-26 2018 2021
## 9256 2018-01-18 2021-01-17 2018 2021
## 9257 2018-06-18 2021-06-15 2018 2021
## 9258 2018-09-14 2021-09-13 2018 2021
## 9259 2018-08-28 2021-08-27 2018 2021
## 9260 2018-05-31 2021-05-30 2018 2021
## 9261 2018-05-13 2021-05-12 2018 2021
## 9262 2018-03-29 2021-03-28 2018 2021
## 9263 2018-06-10 2021-06-10 2018 2021
## 9264 2018-08-28 2021-08-27 2018 2021
## 9265 2018-08-23 2021-08-22 2018 2021
## 9266 2018-08-06 2021-08-05 2018 2021
## 9267 2018-04-30 2020-06-29 2018 2020
## 9268 2018-01-22 2021-01-21 2018 2021
## 9269 2018-04-19 2021-04-16 2018 2021
## 9270 2017-11-30 2020-11-30 2017 2020
## 9271 2018-08-31 2021-08-31 2018 2021
## 9272 2018-09-20 2021-09-19 2018 2021
## 9273 2018-09-15 2021-09-14 2018 2021
## 9274 2018-09-10 2021-09-08 2018 2021
## 9275 2019-03-13 2022-03-12 2019 2022
## 9276 2018-07-15 2021-07-14 2018 2021
## 9277 2018-08-31 2021-08-30 2018 2021
## 9278 2018-08-19 2021-08-19 2018 2021
## 9279 2018-05-02 2021-05-01 2018 2021
## 9280 2018-01-11 2021-01-10 2018 2021
## 9281 2018-09-07 2021-09-06 2018 2021
## 9282 2018-09-10 2021-09-09 2018 2021
## 9283 2018-09-14 2021-09-13 2018 2021
## 9284 2018-09-04 2021-09-04 2018 2021
## 9285 2018-10-14 2021-10-11 2018 2021
## 9286 2018-08-11 2021-08-10 2018 2021
## 9287 2018-02-01 2021-01-31 2018 2021
## 9288 2018-07-15 2021-07-15 2018 2021
## 9289 2018-09-30 2021-09-29 2018 2021
## 9290 2018-06-17 2021-06-17 2018 2021
## 9291 2019-01-24 2022-01-23 2019 2022
## 9292 2018-08-15 2021-08-14 2018 2021
## 9293 2017-11-12 2020-11-11 2017 2020
## 9294 2018-02-09 2021-02-09 2018 2021
## 9295 2018-04-09 2021-04-08 2018 2021
## 9296 2018-09-17 2021-09-16 2018 2021
## 9297 2018-07-31 2021-07-30 2018 2021
## 9298 2017-10-14 2020-10-14 2017 2020
## 9299 2018-08-23 2021-08-22 2018 2021
## 9300 2017-10-31 2020-10-31 2017 2020
## 9301 2018-08-14 2021-08-14 2018 2021
## 9302 2018-09-18 2021-09-17 2018 2021
## 9303 2018-11-08 2021-11-07 2018 2021
## 9304 2017-12-03 2020-07-30 2017 2020
## 9305 2018-06-14 2021-06-14 2018 2021
## 9306 2017-10-22 2020-10-14 2017 2020
## 9307 2018-08-02 2021-08-02 2018 2021
## 9308 2018-01-07 2021-01-07 2018 2021
## 9309 2017-12-05 2020-12-04 2017 2020
## 9310 2018-07-08 2021-07-07 2018 2021
## 9311 2018-06-25 2021-06-25 2018 2021
## 9312 2018-01-01 2020-12-31 2018 2020
## 9313 2018-09-30 2021-09-29 2018 2021
## 9314 2018-09-07 2021-09-07 2018 2021
## 9315 2018-08-04 2019-08-30 2018 2019
## 9316 2018-05-31 2021-05-30 2018 2021
## 9317 2018-09-20 2021-09-20 2018 2021
## 9318 2018-08-05 2021-08-04 2018 2021
## 9319 2017-11-19 2020-11-18 2017 2020
## 9320 2018-02-18 2021-02-17 2018 2021
## 9321 2018-06-05 2020-09-17 2018 2020
## 9322 2018-10-31 2021-10-28 2018 2021
## 9323 2017-10-22 2020-10-21 2017 2020
## 9324 2018-09-11 2021-09-10 2018 2021
## 9325 2018-09-07 2021-09-06 2018 2021
## 9326 2018-02-21 2021-02-13 2018 2021
## 9327 2018-12-05 2021-12-04 2018 2021
## 9328 2018-08-30 2021-08-29 2018 2021
## 9329 2018-09-18 2021-09-17 2018 2021
## 9330 2018-09-09 2021-09-08 2018 2021
## 9331 2018-09-07 2020-09-06 2018 2020
## 9332 2018-09-14 2021-09-13 2018 2021
## 9333 2018-08-21 2021-08-21 2018 2021
## 9334 2017-09-25 2020-09-24 2017 2020
## 9335 2018-08-30 2021-08-30 2018 2021
## 9336 2018-09-15 2021-09-14 2018 2021
## 9337 2018-09-14 2020-03-14 2018 2020
## 9338 2018-09-21 2021-09-20 2018 2021
## 9339 2018-09-12 2021-09-12 2018 2021
## 9340 2018-04-05 2021-04-04 2018 2021
## 9341 2018-01-24 2021-01-23 2018 2021
## 9342 2018-09-21 2021-09-20 2018 2021
## 9343 2018-04-08 2021-04-07 2018 2021
## 9344 2017-12-25 2020-12-25 2017 2020
## 9345 2018-05-30 2021-05-30 2018 2021
## 9346 2018-07-09 2021-07-09 2018 2021
## 9347 2018-07-29 2021-07-29 2018 2021
## 9348 2018-09-07 2021-09-07 2018 2021
## 9349 2018-06-19 2021-05-29 2018 2021
## 9350 2018-02-21 2021-02-20 2018 2021
## 9351 2018-09-06 2021-09-05 2018 2021
## 9352 2018-09-23 2021-09-22 2018 2021
## 9353 2018-05-31 2021-05-30 2018 2021
## 9354 2018-09-24 2021-09-24 2018 2021
## 9355 2018-09-15 2021-09-14 2018 2021
## 9356 2018-07-29 2021-07-28 2018 2021
## 9357 2018-08-31 2021-08-29 2018 2021
## 9358 2018-02-04 2021-02-03 2018 2021
## 9359 2018-09-13 2021-09-13 2018 2021
## 9360 2018-07-31 2021-07-30 2018 2021
## 9361 2018-09-13 2021-04-28 2018 2021
## 9362 2018-09-10 2021-09-09 2018 2021
## 9363 2018-08-10 2021-08-09 2018 2021
## 9364 2017-11-01 2018-05-17 2017 2018
## 9365 2018-08-27 2021-08-26 2018 2021
## 9366 2018-05-09 2021-05-09 2018 2021
## 9367 2018-06-04 2021-06-03 2018 2021
## 9368 2018-04-27 2021-04-24 2018 2021
## 9369 2018-08-31 2021-08-30 2018 2021
## 9370 2018-08-07 2021-08-07 2018 2021
## 9371 2018-08-09 2021-08-09 2018 2021
## 9372 2018-04-28 2021-04-28 2018 2021
## 9373 2018-09-30 2021-09-29 2018 2021
## 9374 2018-01-11 2020-01-10 2018 2020
## 9375 2018-07-29 2021-07-28 2018 2021
## 9376 2018-06-30 2021-06-29 2018 2021
## 9377 2018-09-01 2021-08-31 2018 2021
## 9378 2018-09-03 2021-09-02 2018 2021
## 9379 2018-06-30 2021-06-29 2018 2021
## 9380 2018-09-30 2021-09-29 2018 2021
## 9381 2018-08-23 2021-08-22 2018 2021
## 9382 2018-08-25 2021-08-25 2018 2021
## 9383 2018-03-06 2021-03-05 2018 2021
## 9384 2017-12-19 2019-12-18 2017 2019
## 9385 2018-08-21 2021-08-20 2018 2021
## 9386 2018-06-30 2019-02-03 2018 2019
## 9387 2017-11-28 2018-08-14 2017 2018
## 9388 2017-11-09 2020-11-08 2017 2020
## 9389 2018-04-10 2021-04-09 2018 2021
## 9390 2018-05-01 2021-04-30 2018 2021
## 9391 2017-09-30 2020-09-30 2017 2020
## 9392 2018-09-18 2021-09-18 2018 2021
## 9393 2018-10-31 2021-10-30 2018 2021
## 9394 2018-09-14 2021-09-13 2018 2021
## 9395 2018-09-26 2021-09-25 2018 2021
## 9396 2018-02-13 2021-02-12 2018 2021
## 9397 2018-09-16 2021-09-15 2018 2021
## 9398 2017-12-26 2020-12-25 2017 2020
## 9399 2018-08-31 2021-08-30 2018 2021
## 9400 2018-07-11 2021-07-11 2018 2021
## 9401 2018-02-28 2021-02-28 2018 2021
## 9402 2017-12-10 2020-12-09 2017 2020
## 9403 2018-09-02 2021-09-01 2018 2021
## 9404 2018-05-30 2021-05-29 2018 2021
## 9405 2018-09-03 2021-09-02 2018 2021
## 9406 2018-08-04 2021-08-03 2018 2021
## 9407 2018-09-17 2021-09-17 2018 2021
## 9408 2018-03-04 2021-03-03 2018 2021
## 9409 2018-08-19 2021-08-18 2018 2021
## 9410 2018-12-31 2021-12-30 2018 2021
## 9411 2017-12-11 2020-12-11 2017 2020
## 9412 2018-09-09 2021-09-09 2018 2021
## 9413 2018-08-31 2021-08-30 2018 2021
## 9414 2017-09-28 2020-09-27 2017 2020
## 9415 2018-09-13 2021-09-13 2018 2021
## 9416 2017-12-23 2020-12-22 2017 2020
## 9417 2017-12-17 2020-12-16 2017 2020
## 9418 2018-09-04 2021-09-03 2018 2021
## 9419 2018-05-17 2021-05-16 2018 2021
## 9420 2018-02-01 2021-01-31 2018 2021
## 9421 2017-11-08 2020-11-07 2017 2020
## 9422 2018-07-31 2021-07-30 2018 2021
## 9423 2018-07-22 2021-07-21 2018 2021
## 9424 2018-03-31 2021-03-30 2018 2021
## 9425 2018-09-12 2021-09-11 2018 2021
## 9426 2018-08-14 2021-08-13 2018 2021
## 9427 2017-10-24 2018-02-19 2017 2018
## 9428 2017-11-29 2020-11-28 2017 2020
## 9429 2018-09-14 2021-09-14 2018 2021
## 9430 2018-07-31 2021-07-30 2018 2021
## 9431 2018-08-31 2021-08-31 2018 2021
## 9432 2018-12-31 2021-12-30 2018 2021
## 9433 2018-09-11 2021-09-11 2018 2021
## 9434 2018-08-29 2021-08-29 2018 2021
## 9435 2017-11-30 2020-11-29 2017 2020
## 9436 2018-06-03 2021-06-02 2018 2021
## 9437 2018-08-02 2019-09-29 2018 2019
## 9438 2018-03-18 2021-03-17 2018 2021
## 9439 2018-09-30 2021-09-29 2018 2021
## 9440 2018-09-06 2021-09-05 2018 2021
## 9441 2018-07-31 2021-07-30 2018 2021
## 9442 2018-01-01 2020-12-30 2018 2020
## 9443 2018-04-04 2021-04-03 2018 2021
## 9444 2018-03-07 2021-03-06 2018 2021
## 9445 2018-05-20 2021-05-20 2018 2021
## 9446 2018-02-28 2021-02-28 2018 2021
## 9447 2018-08-14 2021-08-14 2018 2021
## 9448 2018-08-22 2021-08-21 2018 2021
## 9449 2018-09-06 2021-09-05 2018 2021
## 9450 2018-09-11 2021-09-10 2018 2021
## 9451 2018-09-27 2019-09-27 2018 2019
## 9452 2018-09-18 2021-09-18 2018 2021
## 9453 2018-07-31 2019-06-04 2018 2019
## 9454 2018-09-06 2021-09-05 2018 2021
## 9455 2018-06-14 2021-06-14 2018 2021
## 9456 2018-02-23 2021-02-22 2018 2021
## 9457 2017-12-24 2020-12-23 2017 2020
## 9458 2018-09-26 2021-09-25 2018 2021
## 9459 2018-03-04 2021-03-03 2018 2021
## 9460 2017-10-23 2020-10-22 2017 2020
## 9461 2018-07-19 2021-07-18 2018 2021
## 9462 2018-08-03 2021-08-02 2018 2021
## 9463 2018-09-30 2021-09-29 2018 2021
## 9464 2018-05-06 2021-05-05 2018 2021
## 9465 2018-04-01 2021-04-01 2018 2021
## 9466 2018-07-31 2021-07-30 2018 2021
## 9467 2017-12-14 2020-12-14 2017 2020
## 9468 2018-09-17 2021-09-16 2018 2021
## 9469 2019-01-31 2022-01-30 2019 2022
## 9470 2018-09-15 2020-06-14 2018 2020
## 9471 2018-08-14 2021-08-14 2018 2021
## 9472 2018-07-01 2021-07-01 2018 2021
## 9473 2018-07-31 2021-07-30 2018 2021
## 9474 2018-08-07 2021-08-06 2018 2021
## 9475 2018-08-31 2021-08-29 2018 2021
## 9476 2018-08-27 2021-08-27 2018 2021
## 9477 2018-01-21 2021-01-20 2018 2021
## 9478 2018-05-08 2021-05-07 2018 2021
## 9479 2018-04-24 2021-04-24 2018 2021
## 9480 2017-10-24 2020-10-23 2017 2020
## 9481 2018-07-30 2021-06-29 2018 2021
## 9482 2018-09-19 2019-12-30 2018 2019
## 9483 2018-09-13 2021-09-12 2018 2021
## 9484 2018-09-05 2021-09-04 2018 2021
## 9485 2018-07-29 2021-07-29 2018 2021
## 9486 2018-08-04 2021-08-03 2018 2021
## 9487 2018-06-22 2021-06-21 2018 2021
## 9488 2018-02-25 2021-02-24 2018 2021
## 9489 2018-03-31 2021-03-30 2018 2021
## 9490 2018-03-18 2021-03-17 2018 2021
## 9491 2018-02-14 2020-06-05 2018 2020
## 9492 2018-08-27 2021-08-27 2018 2021
## 9493 2018-02-27 2021-02-26 2018 2021
## 9494 2018-08-30 2021-08-29 2018 2021
## 9495 2018-09-04 2021-09-03 2018 2021
## 9496 2018-08-19 2021-08-18 2018 2021
## 9497 2018-08-22 2021-08-21 2018 2021
## 9498 2018-09-15 2021-09-14 2018 2021
## 9499 2018-09-05 2021-09-04 2018 2021
## 9500 2018-09-14 2021-09-14 2018 2021
## 9501 2018-08-03 2021-08-02 2018 2021
## 9502 2019-01-24 2022-01-23 2019 2022
## 9503 2018-03-04 2021-03-04 2018 2021
## 9504 2018-08-23 2021-08-22 2018 2021
## 9505 2018-07-23 2021-07-23 2018 2021
## 9506 2018-06-19 2021-06-18 2018 2021
## 9507 2018-08-29 2021-08-29 2018 2021
## 9508 2018-03-11 2021-03-10 2018 2021
## 9509 2017-11-29 2020-11-28 2017 2020
## 9510 2018-09-10 2021-09-10 2018 2021
## 9511 2018-07-07 2021-07-04 2018 2021
## 9512 2018-09-06 2021-09-05 2018 2021
## 9513 2018-05-23 2021-05-22 2018 2021
## 9514 2018-09-03 2021-09-02 2018 2021
## 9515 2018-08-19 2021-08-19 2018 2021
## 9516 2018-10-15 2021-10-14 2018 2021
## 9517 2018-02-20 2021-02-19 2018 2021
## 9518 2018-01-07 2021-01-06 2018 2021
## 9519 2017-10-17 2020-10-16 2017 2020
## 9520 2018-02-11 2021-02-10 2018 2021
## 9521 2018-08-12 2021-08-11 2018 2021
## 9522 2018-12-27 2021-12-27 2018 2021
## 9523 2018-09-05 2021-09-04 2018 2021
## 9524 2018-06-24 2021-06-24 2018 2021
## 9525 2018-09-17 2021-09-16 2018 2021
## 9526 2018-07-18 2021-07-10 2018 2021
## 9527 2018-01-07 2021-01-06 2018 2021
## 9528 2018-05-29 2021-05-28 2018 2021
## 9529 2017-11-20 2019-09-08 2017 2019
## 9530 2018-08-18 2021-08-17 2018 2021
## 9531 2017-11-19 2020-11-18 2017 2020
## 9532 2018-02-25 2021-02-24 2018 2021
## 9533 2017-11-19 2020-11-18 2017 2020
## 9534 2018-03-15 2021-03-14 2018 2021
## 9535 2018-07-31 2021-07-30 2018 2021
## 9536 2018-04-19 2021-04-18 2018 2021
## 9537 2018-07-30 2021-07-29 2018 2021
## 9538 2018-09-29 2021-09-28 2018 2021
## 9539 2018-09-29 2021-09-28 2018 2021
## 9540 2018-09-17 2021-09-17 2018 2021
## 9541 2018-09-11 2021-09-10 2018 2021
## 9542 2017-12-14 2020-07-31 2017 2020
## 9543 2018-03-30 2021-03-30 2018 2021
## 9544 2018-09-05 2021-09-05 2018 2021
## 9545 2018-08-21 2020-07-24 2018 2020
## 9546 2018-01-01 2020-12-31 2018 2020
## 9547 2018-07-22 2021-07-21 2018 2021
## 9548 2018-09-03 2021-09-02 2018 2021
## 9549 2018-09-11 2021-09-10 2018 2021
## 9550 2018-08-22 2021-08-21 2018 2021
## 9551 2018-09-18 2021-09-17 2018 2021
## 9552 2018-02-11 2021-02-11 2018 2021
## 9553 2018-06-03 2021-06-02 2018 2021
## 9554 2018-09-08 2021-09-07 2018 2021
## 9555 2018-07-22 2021-07-21 2018 2021
## 9556 2018-09-16 2021-09-15 2018 2021
## 9557 2018-03-09 2021-03-06 2018 2021
## 9558 2018-07-31 2021-07-30 2018 2021
## 9559 2018-01-28 2021-01-27 2018 2021
## 9560 2018-08-31 2021-08-30 2018 2021
## 9561 2018-11-25 2021-11-24 2018 2021
## 9562 2018-08-13 2021-08-13 2018 2021
## 9563 2018-05-01 2021-04-30 2018 2021
## 9564 2018-02-07 2021-02-05 2018 2021
## 9565 2018-09-12 2021-09-11 2018 2021
## 9566 2018-01-01 2021-01-01 2018 2021
## 9567 2017-11-26 2020-11-25 2017 2020
## 9568 2018-07-24 2021-07-23 2018 2021
## 9569 2018-07-29 2021-07-26 2018 2021
## 9570 2018-03-18 2021-03-17 2018 2021
## 9571 2018-07-31 2021-07-31 2018 2021
## 9572 2018-09-06 2021-09-05 2018 2021
## 9573 2018-08-31 2021-08-30 2018 2021
## 9574 2018-05-28 2021-05-27 2018 2021
## 9575 2018-02-15 2021-02-14 2018 2021
## 9576 2018-09-19 2021-09-18 2018 2021
## 9577 2018-09-19 2021-09-18 2018 2021
## 9578 2017-12-20 2020-12-20 2017 2020
## 9579 2018-02-13 2021-02-12 2018 2021
## 9580 2018-03-18 2018-05-14 2018 2018
## 9581 2018-09-03 2021-09-02 2018 2021
## 9582 2018-05-31 2021-05-30 2018 2021
## 9583 2018-09-14 2021-09-13 2018 2021
## 9584 2018-03-06 2021-03-05 2018 2021
## 9585 2018-01-29 2021-01-28 2018 2021
## 9586 2018-03-19 2021-03-19 2018 2021
## 9587 2018-04-05 2021-04-04 2018 2021
## 9588 2018-09-11 2021-09-10 2018 2021
## 9589 2018-08-22 2021-08-21 2018 2021
## 9590 2018-09-07 2021-09-06 2018 2021
## 9591 2018-01-31 2021-01-30 2018 2021
## 9592 2018-10-15 2021-10-14 2018 2021
## 9593 2018-03-21 2021-03-20 2018 2021
## 9594 2018-09-12 2021-09-11 2018 2021
## 9595 2017-12-31 2020-12-30 2017 2020
## 9596 2018-08-08 2021-08-07 2018 2021
## 9597 2018-05-06 2021-05-05 2018 2021
## 9598 2017-10-02 2020-10-02 2017 2020
## 9599 2018-08-07 2021-08-06 2018 2021
## 9600 2018-09-03 2021-09-02 2018 2021
## 9601 2018-09-21 2021-09-21 2018 2021
## 9602 2018-08-14 2021-08-14 2018 2021
## 9603 2018-08-20 2021-08-19 2018 2021
## 9604 2018-08-31 2021-08-30 2018 2021
## 9605 2019-03-05 2022-03-04 2019 2022
## 9606 2018-08-22 2021-08-21 2018 2021
## 9607 2018-08-31 2021-08-30 2018 2021
## 9608 2018-09-11 2021-09-11 2018 2021
## 9609 2018-01-01 2020-12-31 2018 2020
## 9610 2018-06-28 2021-06-28 2018 2021
## 9611 2018-08-31 2021-08-29 2018 2021
## 9612 2018-06-24 2019-06-29 2018 2019
## 9613 2018-12-31 2021-12-30 2018 2021
## 9614 2018-06-21 2021-06-21 2018 2021
## 9615 2018-09-29 2021-09-29 2018 2021
## 9616 2017-12-10 2020-05-11 2017 2020
## 9617 2018-07-01 2021-06-29 2018 2021
## 9618 2018-05-14 2021-05-13 2018 2021
## 9619 2018-01-07 2021-01-06 2018 2021
## 9620 2018-08-09 2021-08-09 2018 2021
## 9621 2018-09-17 2021-09-16 2018 2021
## 9622 2018-03-18 2020-05-30 2018 2020
## 9623 2018-08-05 2021-08-05 2018 2021
## 9624 2018-06-16 2021-06-15 2018 2021
## 9625 2018-03-17 2021-03-16 2018 2021
## 9626 2018-07-26 2021-07-26 2018 2021
## 9627 2018-08-31 2021-08-30 2018 2021
## 9628 2018-08-31 2021-08-30 2018 2021
## 9629 2018-07-30 2021-07-29 2018 2021
## 9630 2018-09-17 2021-09-16 2018 2021
## 9631 2018-03-01 2021-02-28 2018 2021
## 9632 2018-09-17 2021-09-16 2018 2021
## 9633 2018-08-26 2021-08-25 2018 2021
## 9634 2018-08-12 2021-08-11 2018 2021
## 9635 2018-09-04 2021-09-03 2018 2021
## 9636 2018-08-31 2021-08-31 2018 2021
## 9637 2018-04-10 2021-04-08 2018 2021
## 9638 2018-09-10 2021-09-10 2018 2021
## 9639 2018-09-10 2021-09-10 2018 2021
## 9640 2018-05-29 2021-05-29 2018 2021
## 9641 2018-04-15 2021-04-15 2018 2021
## 9642 2018-12-31 2021-12-30 2018 2021
## 9643 2018-09-09 2021-09-08 2018 2021
## 9644 2018-08-15 2021-08-14 2018 2021
## 9645 2017-12-17 2020-12-16 2017 2020
## 9646 2018-08-09 2021-08-08 2018 2021
## 9647 2018-05-31 2021-05-30 2018 2021
## 9648 2018-09-13 2021-09-12 2018 2021
## 9649 2018-09-05 2021-09-04 2018 2021
## 9650 2018-03-15 2021-03-15 2018 2021
## 9651 2018-09-13 2021-09-12 2018 2021
## 9652 2018-09-08 2021-09-08 2018 2021
## 9653 2018-09-28 2021-09-27 2018 2021
## 9654 2017-12-17 2020-12-17 2017 2020
## 9655 2018-09-07 2021-09-07 2018 2021
## 9656 2018-07-01 2021-06-30 2018 2021
## 9657 2017-12-24 2020-12-23 2017 2020
## 9658 2018-02-25 2021-02-24 2018 2021
## 9659 2018-08-29 2021-08-29 2018 2021
## 9660 2018-09-04 2021-09-03 2018 2021
## 9661 2018-08-21 2021-08-20 2018 2021
## 9662 2018-02-19 2021-02-18 2018 2021
## 9663 2018-09-14 2021-09-14 2018 2021
## 9664 2018-05-09 2021-05-08 2018 2021
## 9665 2018-05-06 2021-05-05 2018 2021
## 9666 2018-09-08 2021-09-08 2018 2021
## 9667 2017-10-09 2020-10-08 2017 2020
## 9668 2018-08-01 2021-07-31 2018 2021
## 9669 2018-07-25 2021-07-25 2018 2021
## 9670 2018-08-31 2021-08-30 2018 2021
## 9671 2018-09-04 2021-09-04 2018 2021
## 9672 2018-02-14 2021-02-14 2018 2021
## 9673 2018-07-03 2021-07-01 2018 2021
## 9674 2018-09-11 2021-09-10 2018 2021
## 9675 2018-08-14 2021-08-13 2018 2021
## 9676 2018-09-18 2021-09-18 2018 2021
## 9677 2018-01-21 2021-01-20 2018 2021
## 9678 2018-08-17 2021-08-16 2018 2021
## 9679 2018-09-15 2021-09-14 2018 2021
## 9680 2018-09-07 2021-09-07 2018 2021
## 9681 2018-07-26 2021-07-25 2018 2021
## 9682 2018-08-31 2020-08-30 2018 2020
## 9683 2018-08-19 2021-08-18 2018 2021
## 9684 2017-10-18 2020-10-17 2017 2020
## 9685 2018-03-21 2021-02-27 2018 2021
## 9686 2018-04-06 2021-04-05 2018 2021
## 9687 2018-05-16 2021-05-15 2018 2021
## 9688 2018-05-31 2021-05-30 2018 2021
## 9689 2018-05-20 2021-05-20 2018 2021
## 9690 2018-08-13 2021-08-12 2018 2021
## 9691 2018-05-06 2021-05-05 2018 2021
## 9692 2018-09-03 2021-09-02 2018 2021
## 9693 2018-09-11 2021-09-10 2018 2021
## 9694 2018-11-05 2021-11-05 2018 2021
## 9695 2018-09-19 2021-09-18 2018 2021
## 9696 2018-08-14 2021-08-14 2018 2021
## 9697 2017-11-09 2020-11-08 2017 2020
## 9698 2018-08-23 2021-08-23 2018 2021
## 9699 2018-10-07 2021-10-06 2018 2021
## 9700 2018-01-28 2021-01-27 2018 2021
## 9701 2018-04-22 2021-04-21 2018 2021
## 9702 2018-08-27 2021-08-26 2018 2021
## 9703 2018-09-01 2021-08-31 2018 2021
## 9704 2018-08-31 2021-03-30 2018 2021
## 9705 2018-09-14 2021-09-13 2018 2021
## 9706 2018-06-30 2021-06-29 2018 2021
## 9707 2018-09-09 2021-09-09 2018 2021
## 9708 2018-03-18 2021-03-17 2018 2021
## 9709 2018-03-24 2021-03-23 2018 2021
## 9710 2017-12-17 2020-12-16 2017 2020
## 9711 2017-12-31 2020-12-31 2017 2020
## 9712 2017-12-21 2020-12-18 2017 2020
## 9713 2018-07-31 2021-07-30 2018 2021
## 9714 2018-06-21 2021-06-20 2018 2021
## 9715 2018-07-31 2021-07-28 2018 2021
## 9716 2018-08-31 2021-08-31 2018 2021
## 9717 2017-11-28 2020-11-27 2017 2020
## 9718 2018-09-27 2021-09-26 2018 2021
## 9719 2019-01-27 2022-01-26 2019 2022
## 9720 2018-08-14 2021-08-14 2018 2021
## 9721 2018-07-29 2021-07-29 2018 2021
## 9722 2018-09-06 2021-09-05 2018 2021
## 9723 2018-07-02 2021-07-01 2018 2021
## 9724 2018-06-19 2021-06-19 2018 2021
## 9725 2018-07-22 2021-07-22 2018 2021
## 9726 2018-09-24 2021-09-24 2018 2021
## 9727 2018-09-19 2021-09-18 2018 2021
## 9728 2018-08-12 2021-08-11 2018 2021
## 9729 2017-12-19 2020-12-18 2017 2020
## 9730 2018-07-31 2021-07-30 2018 2021
## 9731 2018-06-17 2021-06-17 2018 2021
## 9732 2018-06-08 2021-06-07 2018 2021
## 9733 2018-09-19 2021-09-19 2018 2021
## 9734 2018-10-08 2021-10-07 2018 2021
## 9735 2018-08-14 2021-08-13 2018 2021
## 9736 2018-10-15 2021-10-14 2018 2021
## 9737 2018-02-05 2021-02-04 2018 2021
## 9738 2018-09-07 2021-09-07 2018 2021
## 9739 2018-04-06 2021-04-05 2018 2021
## 9740 2018-08-31 2021-08-31 2018 2021
## 9741 2018-03-20 2021-03-19 2018 2021
## 9742 2018-11-14 2021-11-14 2018 2021
## 9743 2018-07-29 2021-07-28 2018 2021
## 9744 2018-08-08 2021-08-07 2018 2021
## 9745 2018-07-30 2021-07-29 2018 2021
## 9746 2018-08-20 2021-08-19 2018 2021
## 9747 2018-09-06 2021-09-06 2018 2021
## 9748 2019-01-14 2022-01-14 2019 2022
## 9749 2018-09-07 2021-09-07 2018 2021
## 9750 2018-04-10 2021-04-09 2018 2021
## 9751 2018-04-22 2019-11-30 2018 2019
## 9752 2018-09-12 2021-09-12 2018 2021
## 9753 2018-09-30 2021-09-29 2018 2021
## 9754 2018-09-19 2021-09-18 2018 2021
## 9755 2018-01-14 2021-01-14 2018 2021
## 9756 2018-08-29 2021-08-28 2018 2021
## 9757 2018-08-08 2021-08-07 2018 2021
## 9758 2018-06-21 2018-06-23 2018 2018
## 9759 2018-08-14 2021-08-14 2018 2021
## 9760 2018-07-23 2021-07-22 2018 2021
## 9761 2018-09-22 2021-09-21 2018 2021
## 9762 2018-04-12 2021-04-12 2018 2021
## 9763 2018-09-30 2021-09-29 2018 2021
## 9764 2018-08-14 2021-08-13 2018 2021
## 9765 2018-02-18 2021-02-17 2018 2021
## 9766 2018-09-30 2021-09-30 2018 2021
## 9767 2018-08-16 2021-08-15 2018 2021
## 9768 2018-09-18 2021-09-17 2018 2021
## 9769 2018-09-14 2021-09-11 2018 2021
## 9770 2018-05-27 2021-05-26 2018 2021
## 9771 2018-08-31 2021-08-30 2018 2021
## 9772 2018-10-26 2021-10-25 2018 2021
## 9773 2018-10-10 2021-10-07 2018 2021
## 9774 2018-09-05 2021-08-29 2018 2021
## 9775 2018-08-31 2021-08-31 2018 2021
## 9776 2018-07-30 2021-07-29 2018 2021
## 9777 2018-09-06 2021-09-05 2018 2021
## 9778 2018-05-13 2021-05-12 2018 2021
## 9779 2018-01-29 2021-01-14 2018 2021
## 9780 2018-10-26 2021-10-25 2018 2021
## 9781 2018-04-30 2021-04-29 2018 2021
## 9782 2017-12-06 2020-12-05 2017 2020
## 9783 2018-08-08 2021-08-05 2018 2021
## 9784 2018-09-23 2021-09-22 2018 2021
## 9785 2018-09-15 2021-09-14 2018 2021
## 9786 2018-07-01 2021-06-30 2018 2021
## 9787 2018-02-18 2021-02-17 2018 2021
## 9788 2018-03-06 2020-09-05 2018 2020
## 9789 2018-06-10 2021-06-10 2018 2021
## 9790 2018-02-20 2019-07-04 2018 2019
## 9791 2018-09-18 2021-09-17 2018 2021
## 9792 2018-09-16 2021-09-15 2018 2021
## 9793 2018-09-30 2021-09-29 2018 2021
## 9794 2018-08-31 2019-08-30 2018 2019
## 9795 2018-08-31 2021-08-30 2018 2021
## 9796 2018-09-05 2021-09-04 2018 2021
## 9797 2018-07-29 2021-07-28 2018 2021
## 9798 2018-03-13 2021-03-13 2018 2021
## 9799 2018-07-22 2021-07-21 2018 2021
## 9800 2018-08-27 2021-08-26 2018 2021
## 9801 2017-10-12 2020-10-11 2017 2020
## 9802 2018-08-27 2021-08-26 2018 2021
## 9803 2018-09-09 2021-09-07 2018 2021
## 9804 2018-08-05 2021-08-04 2018 2021
## 9805 2019-01-24 2022-01-23 2019 2022
## 9806 2018-05-06 2019-09-29 2018 2019
## 9807 2018-05-22 2021-05-21 2018 2021
## 9808 2018-08-19 2021-08-18 2018 2021
## 9809 2018-07-31 2021-07-30 2018 2021
## 9810 2018-09-02 2021-09-02 2018 2021
## 9811 2018-07-19 2021-07-18 2018 2021
## 9812 2018-09-06 2021-09-05 2018 2021
## 9813 2018-10-04 2021-10-03 2018 2021
## 9814 2018-10-26 2021-10-26 2018 2021
## 9815 2018-09-21 2021-09-20 2018 2021
## 9816 2018-08-28 2021-08-28 2018 2021
## 9817 2018-09-09 2021-09-09 2018 2021
## 9818 2018-08-15 2021-08-14 2018 2021
## 9819 2017-12-27 2020-12-25 2017 2020
## 9820 2018-12-06 2021-12-05 2018 2021
## 9821 2018-01-01 2021-01-01 2018 2021
## 9822 2017-10-22 2020-10-21 2017 2020
## 9823 2017-10-19 2020-10-19 2017 2020
## 9824 2018-09-30 2021-09-29 2018 2021
## 9825 2018-02-04 2021-02-03 2018 2021
## 9826 2018-09-10 2021-09-09 2018 2021
## 9827 2018-10-04 2021-10-03 2018 2021
## 9828 2018-03-31 2021-03-30 2018 2021
## 9829 2017-11-19 2020-11-18 2017 2020
## 9830 2018-07-31 2021-07-30 2018 2021
## 9831 2018-09-07 2021-09-07 2018 2021
## 9832 2018-08-31 2021-08-31 2018 2021
## 9833 2018-04-15 2021-04-14 2018 2021
## 9834 2018-08-06 2021-08-05 2018 2021
## 9835 2017-11-06 2020-11-05 2017 2020
## 9836 2018-05-09 2021-05-09 2018 2021
## 9837 2018-06-03 2021-06-03 2018 2021
## 9838 2018-06-30 2021-06-29 2018 2021
## 9839 2018-06-24 2021-06-24 2018 2021
## 9840 2018-07-17 2020-08-30 2018 2020
## 9841 2018-09-17 2021-09-16 2018 2021
## 9842 2018-02-22 2020-08-12 2018 2020
## 9843 2018-07-31 2021-07-30 2018 2021
## 9844 2018-01-31 2021-01-31 2018 2021
## 9845 2019-02-28 2022-02-28 2019 2022
## 9846 2018-07-31 2021-07-30 2018 2021
## 9847 2017-12-25 2020-12-24 2017 2020
## 9848 2018-09-30 2021-09-29 2018 2021
## 9849 2018-09-25 2021-09-25 2018 2021
## 9850 2018-04-15 2021-04-14 2018 2021
## 9851 2018-06-03 2020-06-02 2018 2020
## 9852 2018-08-26 2021-08-25 2018 2021
## 9853 2018-09-13 2021-09-12 2018 2021
## 9854 2018-08-04 2021-08-03 2018 2021
## 9855 2018-05-26 2021-05-25 2018 2021
## 9856 2018-08-30 2019-12-30 2018 2019
## 9857 2018-08-06 2021-08-06 2018 2021
## 9858 2018-08-22 2021-08-21 2018 2021
## 9859 2018-06-14 2021-06-14 2018 2021
## 9860 2018-03-05 2021-03-04 2018 2021
## 9861 2017-11-02 2020-11-02 2017 2020
## 9862 2018-03-30 2021-03-30 2018 2021
## 9863 2018-07-11 2021-07-11 2018 2021
## 9864 2018-03-19 2021-03-18 2018 2021
## 9865 2018-08-21 2021-08-20 2018 2021
## 9866 2018-09-16 2021-09-15 2018 2021
## 9867 2018-09-03 2021-09-02 2018 2021
## 9868 2018-01-31 2021-01-30 2018 2021
## 9869 2018-04-30 2021-04-29 2018 2021
## 9870 2018-08-31 2021-08-31 2018 2021
## 9871 2018-09-11 2021-09-10 2018 2021
## 9872 2018-05-05 2021-05-04 2018 2021
## 9873 2018-09-11 2021-09-11 2018 2021
## 9874 2018-05-13 2021-05-12 2018 2021
## 9875 2018-04-15 2021-04-14 2018 2021
## 9876 2018-09-02 2021-09-01 2018 2021
## 9877 2018-08-14 2021-08-13 2018 2021
## 9878 2018-07-02 2020-10-25 2018 2020
## 9879 2018-09-11 2021-09-10 2018 2021
## 9880 2018-06-22 2021-06-21 2018 2021
## 9881 2018-08-29 2021-08-29 2018 2021
## 9882 2018-09-01 2021-08-31 2018 2021
## 9883 2018-09-14 2021-09-14 2018 2021
## 9884 2018-04-04 2021-04-03 2018 2021
## 9885 2018-10-31 2021-10-30 2018 2021
## 9886 2018-08-31 2021-08-30 2018 2021
## 9887 2018-10-21 2021-10-20 2018 2021
## 9888 2018-08-31 2021-08-30 2018 2021
## 9889 2018-08-31 2021-08-29 2018 2021
## 9890 2018-09-25 2021-09-24 2018 2021
## 9891 2018-08-30 2021-08-30 2018 2021
## 9892 2018-09-21 2021-09-20 2018 2021
## 9893 2018-04-29 2021-04-28 2018 2021
## 9894 2017-10-15 2020-10-14 2017 2020
## 9895 2018-05-31 2021-05-30 2018 2021
## 9896 2018-09-23 2021-09-22 2018 2021
## 9897 2018-04-18 2021-04-17 2018 2021
## 9898 2018-05-17 2021-05-16 2018 2021
## 9899 2018-08-16 2021-08-15 2018 2021
## 9900 2018-08-02 2021-07-30 2018 2021
## 9901 2018-08-31 2021-08-30 2018 2021
## 9902 2018-08-31 2021-08-31 2018 2021
## 9903 2018-06-30 2019-06-29 2018 2019
## 9904 2017-12-14 2020-12-12 2017 2020
## 9905 2017-12-20 2020-12-19 2017 2020
## 9906 2018-12-30 2021-12-29 2018 2021
## 9907 2019-01-02 2022-01-01 2019 2022
## 9908 2018-08-29 2021-08-28 2018 2021
## 9909 2018-07-31 2021-07-30 2018 2021
## 9910 2018-08-29 2021-08-29 2018 2021
## 9911 2018-10-14 2021-10-13 2018 2021
## 9912 2018-09-24 2021-09-23 2018 2021
## 9913 2018-09-02 2021-09-01 2018 2021
## 9914 2018-08-14 2021-08-13 2018 2021
## 9915 2018-09-11 2021-09-10 2018 2021
## 9916 2018-08-25 2021-08-24 2018 2021
## 9917 2018-07-29 2021-07-29 2018 2021
## 9918 2017-10-30 2020-10-29 2017 2020
## 9919 2018-08-14 2021-08-14 2018 2021
## 9920 2018-09-06 2021-09-06 2018 2021
## 9921 2018-07-29 2021-07-26 2018 2021
## 9922 2018-09-10 2021-09-10 2018 2021
## 9923 2018-09-10 2021-09-10 2018 2021
## 9924 2017-11-15 2020-11-14 2017 2020
## 9925 2018-09-05 2021-09-04 2018 2021
## 9926 2017-12-04 2020-08-27 2017 2020
## 9927 2018-07-31 2021-07-30 2018 2021
## 9928 2018-07-31 2020-08-01 2018 2020
## 9929 2018-09-30 2021-09-29 2018 2021
## 9930 2018-12-06 2021-12-05 2018 2021
## 9931 2018-07-29 2020-10-28 2018 2020
## 9932 2018-04-30 2021-04-30 2018 2021
## 9933 2018-05-06 2021-05-06 2018 2021
## 9934 2018-09-07 2021-09-06 2018 2021
## 9935 2018-09-26 2021-09-25 2018 2021
## 9936 2018-08-25 2021-08-24 2018 2021
## 9937 2018-05-29 2021-05-29 2018 2021
## 9938 2018-08-27 2021-08-27 2018 2021
## 9939 2018-02-21 2021-02-20 2018 2021
## 9940 2018-02-07 2021-02-06 2018 2021
## 9941 2018-06-29 2021-06-28 2018 2021
## 9942 2018-05-28 2021-05-28 2018 2021
## 9943 2018-07-08 2021-07-07 2018 2021
## 9944 2018-09-08 2021-09-07 2018 2021
## 9945 2018-09-10 2021-09-10 2018 2021
## 9946 2018-03-04 2021-03-04 2018 2021
## 9947 2018-08-31 2021-08-31 2018 2021
## 9948 2018-05-15 2021-05-14 2018 2021
## 9949 2018-07-05 2021-07-05 2018 2021
## 9950 2018-09-19 2021-09-18 2018 2021
## 9951 2017-11-20 2020-11-20 2017 2020
## 9952 2018-09-20 2021-09-19 2018 2021
## 9953 2018-09-08 2021-09-08 2018 2021
## 9954 2018-07-27 2021-07-26 2018 2021
## 9955 2018-11-15 2021-11-14 2018 2021
## 9956 2017-12-24 2020-12-23 2017 2020
## 9957 2018-08-30 2020-08-29 2018 2020
## 9958 2018-04-12 2021-04-11 2018 2021
## 9959 2017-12-03 2020-12-02 2017 2020
## 9960 2017-10-26 2020-10-26 2017 2020
## 9961 2018-07-14 2021-07-13 2018 2021
## 9962 2018-07-15 2021-07-15 2018 2021
## 9963 2018-06-30 2021-06-29 2018 2021
## 9964 2018-09-05 2021-09-04 2018 2021
## 9965 2018-08-27 2021-08-26 2018 2021
## 9966 2018-08-13 2021-08-12 2018 2021
## 9967 2018-05-30 2020-05-29 2018 2020
## 9968 2018-09-29 2021-09-29 2018 2021
## 9969 2018-04-08 2021-04-07 2018 2021
## 9970 2018-07-20 2021-07-20 2018 2021
## 9971 2018-08-29 2021-08-28 2018 2021
## 9972 2018-09-11 2021-09-10 2018 2021
## 9973 2018-04-25 2021-04-24 2018 2021
## 9974 2017-12-12 2020-12-11 2017 2020
## 9975 2018-09-14 2021-09-14 2018 2021
## 9976 2018-06-03 2021-06-02 2018 2021
## 9977 2017-12-21 2020-12-21 2017 2020
## 9978 2018-07-31 2021-07-31 2018 2021
## 9979 2018-06-30 2019-11-27 2018 2019
## 9980 2017-12-25 2020-12-24 2017 2020
## 9981 2018-08-31 2021-08-31 2018 2021
## 9982 2018-08-19 2021-08-18 2018 2021
## 9983 2018-08-05 2020-07-26 2018 2020
## 9984 2018-09-11 2021-09-10 2018 2021
## 9985 2018-02-28 2021-02-25 2018 2021
## 9986 2018-09-16 2021-09-15 2018 2021
## 9987 2018-09-13 2021-09-12 2018 2021
## 9988 2018-08-22 2021-08-21 2018 2021
## 9989 2018-01-28 2021-01-28 2018 2021
## 9990 2018-04-14 2021-04-13 2018 2021
## 9991 2018-06-04 2021-06-03 2018 2021
## 9992 2018-01-14 2021-01-13 2018 2021
## 9993 2018-03-06 2021-03-06 2018 2021
## 9994 2018-08-15 2021-08-14 2018 2021
## 9995 2018-06-14 2021-06-14 2018 2021
## 9996 2018-07-15 2021-07-15 2018 2021
## 9997 2018-08-29 2021-08-28 2018 2021
## 9998 2017-11-09 2020-11-09 2017 2020
## 9999 2018-01-17 2021-01-16 2018 2021
## 10000 2018-10-07 2021-10-06 2018 2021
## 10001 2018-09-23 2018-11-22 2018 2018
## 10002 2018-08-29 2021-08-28 2018 2021
## 10003 2018-02-09 2021-02-09 2018 2021
## 10004 2018-05-29 2021-05-28 2018 2021
## 10005 2018-04-15 2021-04-14 2018 2021
## 10006 2018-08-31 2021-08-30 2018 2021
## 10007 2017-12-31 2020-12-31 2017 2020
## 10008 2018-08-31 2021-08-30 2018 2021
## 10009 2018-09-04 2021-09-03 2018 2021
## 10010 2018-09-12 2021-09-11 2018 2021
## 10011 2018-08-31 2021-08-31 2018 2021
## 10012 2018-08-25 2021-08-24 2018 2021
## 10013 2018-08-31 2021-08-30 2018 2021
## 10014 2018-09-13 2021-09-13 2018 2021
## 10015 2018-09-13 2021-09-13 2018 2021
## 10016 2018-08-28 2021-08-27 2018 2021
## 10017 2018-09-30 2021-09-29 2018 2021
## 10018 2018-03-11 2021-03-10 2018 2021
## 10019 2018-07-31 2021-07-30 2018 2021
## 10020 2018-09-22 2021-09-22 2018 2021
## 10021 2018-08-06 2021-08-06 2018 2021
## 10022 2018-08-20 2021-08-20 2018 2021
## 10023 2018-09-13 2021-09-13 2018 2021
## 10024 2018-08-23 2020-04-24 2018 2020
## 10025 2018-06-24 2021-06-23 2018 2021
## 10026 2018-09-10 2020-09-12 2018 2020
## 10027 2018-08-31 2021-08-31 2018 2021
## 10028 2017-10-03 2020-10-02 2017 2020
## 10029 2018-08-15 2021-08-14 2018 2021
## 10030 2017-12-10 2020-12-09 2017 2020
## 10031 2017-12-13 2020-12-13 2017 2020
## 10032 2018-06-24 2021-06-23 2018 2021
## 10033 2017-12-17 2020-12-16 2017 2020
## 10034 2018-09-13 2021-09-12 2018 2021
## 10035 2018-05-31 2021-05-31 2018 2021
## 10036 2018-09-10 2021-09-10 2018 2021
## 10037 2018-07-29 2021-07-28 2018 2021
## 10038 2018-08-28 2021-08-27 2018 2021
## 10039 2018-06-24 2021-06-23 2018 2021
## 10040 2018-06-14 2021-06-14 2018 2021
## 10041 2018-03-18 2021-03-17 2018 2021
## 10042 2018-06-30 2021-06-29 2018 2021
## 10043 2018-09-16 2021-09-16 2018 2021
## 10044 2019-02-12 2022-02-11 2019 2022
## 10045 2018-07-30 2021-07-30 2018 2021
## 10046 2018-03-25 2021-03-24 2018 2021
## 10047 2018-09-06 2021-09-05 2018 2021
## 10048 2017-10-10 2020-10-09 2017 2020
## 10049 2018-06-17 2021-06-16 2018 2021
## 10050 2018-09-19 2021-09-18 2018 2021
## 10051 2018-04-19 2021-04-19 2018 2021
## 10052 2018-07-09 2021-07-08 2018 2021
## 10053 2017-11-22 2020-11-21 2017 2020
## 10054 2018-09-06 2021-09-05 2018 2021
## 10055 2018-03-11 2021-03-10 2018 2021
## 10056 2018-09-07 2021-09-06 2018 2021
## 10057 2018-01-30 2020-01-29 2018 2020
## 10058 2018-06-30 2020-06-29 2018 2020
## 10059 2017-12-11 2020-12-11 2017 2020
## 10060 2018-08-31 2021-08-30 2018 2021
## 10061 2018-07-22 2021-07-22 2018 2021
## 10062 2018-08-21 2021-08-20 2018 2021
## 10063 2018-06-17 2021-06-16 2018 2021
## 10064 2018-09-02 2021-09-01 2018 2021
## 10065 2018-09-15 2021-09-14 2018 2021
## 10066 2018-09-06 2021-09-05 2018 2021
## 10067 2018-08-20 2021-08-20 2018 2021
## 10068 2018-09-06 2021-09-05 2018 2021
## 10069 2018-02-10 2019-02-07 2018 2019
## 10070 2018-09-04 2021-09-04 2018 2021
## 10071 2018-09-09 2021-09-08 2018 2021
## 10072 2018-06-27 2021-06-26 2018 2021
## 10073 2018-09-27 2021-09-26 2018 2021
## 10074 2017-12-17 2020-12-17 2017 2020
## 10075 2018-08-22 2021-08-22 2018 2021
## 10076 2018-09-09 2021-09-08 2018 2021
## 10077 2018-09-18 2021-09-17 2018 2021
## 10078 2018-09-28 2021-09-27 2018 2021
## 10079 2017-11-08 2020-11-08 2017 2020
## 10080 2018-09-01 2021-09-01 2018 2021
## 10081 2018-09-30 2021-09-29 2018 2021
## 10082 2018-09-15 2021-09-14 2018 2021
## 10083 2018-05-27 2021-05-26 2018 2021
## 10084 2018-11-29 2021-11-28 2018 2021
## 10085 2018-04-30 2021-04-30 2018 2021
## 10086 2018-03-14 2021-03-13 2018 2021
## 10087 2018-08-24 2021-08-23 2018 2021
## 10088 2018-06-11 2021-06-11 2018 2021
## 10089 2018-10-07 2021-10-06 2018 2021
## 10090 2018-04-30 2021-04-29 2018 2021
## 10091 2018-02-28 2021-02-27 2018 2021
## 10092 2018-09-16 2021-09-15 2018 2021
## 10093 2018-03-11 2021-03-10 2018 2021
## 10094 2018-06-10 2021-06-10 2018 2021
## 10095 2018-08-07 2021-08-06 2018 2021
## 10096 2018-02-14 2021-02-13 2018 2021
## 10097 2018-09-01 2021-08-31 2018 2021
## 10098 2018-09-13 2021-09-12 2018 2021
## 10099 2018-09-07 2021-09-07 2018 2021
## 10100 2018-02-16 2021-01-30 2018 2021
## 10101 2018-08-18 2021-08-17 2018 2021
## 10102 2018-08-27 2021-08-26 2018 2021
## 10103 2018-09-12 2021-09-11 2018 2021
## 10104 2018-06-30 2021-06-29 2018 2021
## 10105 2017-12-31 2020-12-30 2017 2020
## 10106 2018-09-09 2021-09-08 2018 2021
## 10107 2018-09-23 2021-09-23 2018 2021
## 10108 2018-07-21 2021-07-21 2018 2021
## 10109 2018-08-17 2021-08-16 2018 2021
## 10110 2018-08-05 2021-08-04 2018 2021
## 10111 2018-08-31 2021-08-31 2018 2021
## 10112 2018-06-14 2021-06-14 2018 2021
## 10113 2018-08-14 2021-08-13 2018 2021
## 10114 2017-11-14 2020-11-14 2017 2020
## 10115 2018-09-09 2021-09-08 2018 2021
## 10116 2018-05-01 2021-04-30 2018 2021
## 10117 2018-06-17 2021-06-16 2018 2021
## 10118 2018-09-05 2021-09-04 2018 2021
## 10119 2018-08-22 2021-08-21 2018 2021
## 10120 2018-11-12 2021-11-11 2018 2021
## 10121 2018-09-22 2021-09-21 2018 2021
## 10122 2018-02-27 2021-02-26 2018 2021
## 10123 2018-07-10 2021-07-09 2018 2021
## 10124 2018-08-31 2021-08-31 2018 2021
## 10125 2018-09-09 2021-09-08 2018 2021
## 10126 2017-11-14 2020-11-13 2017 2020
## 10127 2018-09-24 2021-09-23 2018 2021
## 10128 2018-08-12 2021-08-11 2018 2021
## 10129 2018-09-14 2021-09-14 2018 2021
## 10130 2017-11-26 2020-11-26 2017 2020
## 10131 2018-08-31 2021-08-30 2018 2021
## 10132 2017-10-08 2020-10-07 2017 2020
## 10133 2018-07-31 2019-07-30 2018 2019
## 10134 2018-09-09 2021-09-08 2018 2021
## 10135 2017-12-15 2020-12-14 2017 2020
## 10136 2017-12-06 2020-12-05 2017 2020
## 10137 2018-12-18 2021-12-18 2018 2021
## 10138 2018-09-11 2021-09-10 2018 2021
## 10139 2018-05-27 2021-05-26 2018 2021
## 10140 2018-09-13 2021-09-12 2018 2021
## 10141 2018-08-31 2021-08-30 2018 2021
## 10142 2018-08-31 2021-08-30 2018 2021
## 10143 2018-09-20 2021-09-19 2018 2021
## 10144 2018-09-11 2021-09-11 2018 2021
## 10145 2018-06-30 2021-06-30 2018 2021
## 10146 2018-09-04 2021-09-04 2018 2021
## 10147 2018-06-28 2021-06-28 2018 2021
## 10148 2018-09-18 2021-09-17 2018 2021
## 10149 2018-03-31 2021-03-30 2018 2021
## 10150 2018-08-04 2021-08-04 2018 2021
## 10151 2018-09-05 2021-09-04 2018 2021
## 10152 2018-09-16 2021-09-16 2018 2021
## 10153 2018-04-01 2021-03-31 2018 2021
## 10154 2018-03-31 2021-03-30 2018 2021
## 10155 2018-09-03 2021-09-02 2018 2021
## 10156 2018-08-14 2021-08-14 2018 2021
## 10157 2018-09-14 2021-09-13 2018 2021
## 10158 2017-12-10 2020-12-09 2017 2020
## 10159 2018-01-01 2020-12-31 2018 2020
## 10160 2018-06-10 2019-09-29 2018 2019
## 10161 2018-05-27 2021-05-27 2018 2021
## 10162 2018-09-13 2021-09-12 2018 2021
## 10163 2018-12-31 2021-12-30 2018 2021
## 10164 2018-12-31 2021-12-30 2018 2021
## 10165 2018-08-19 2021-08-18 2018 2021
## 10166 2018-08-28 2021-08-27 2018 2021
## 10167 2018-08-01 2021-07-31 2018 2021
## 10168 2018-08-25 2021-08-24 2018 2021
## 10169 2018-08-29 2021-08-28 2018 2021
## 10170 2018-08-17 2021-08-17 2018 2021
## 10171 2018-08-21 2021-08-20 2018 2021
## 10172 2018-07-10 2021-07-08 2018 2021
## 10173 2018-09-03 2021-09-02 2018 2021
## 10174 2018-09-02 2021-09-02 2018 2021
## 10175 2018-09-30 2021-09-29 2018 2021
## 10176 2018-05-31 2021-05-28 2018 2021
## 10177 2018-02-25 2021-02-24 2018 2021
## 10178 2018-09-12 2021-09-12 2018 2021
## 10179 2018-09-30 2021-09-29 2018 2021
## 10180 2018-09-11 2021-09-10 2018 2021
## 10181 2018-03-18 2021-03-18 2018 2021
## 10182 2018-09-11 2021-09-11 2018 2021
## 10183 2018-09-24 2021-09-24 2018 2021
## 10184 2018-03-15 2021-03-14 2018 2021
## 10185 2018-08-08 2021-08-07 2018 2021
## 10186 2018-08-12 2021-08-12 2018 2021
## 10187 2018-08-31 2021-08-31 2018 2021
## 10188 2018-06-19 2021-06-19 2018 2021
## 10189 2018-09-10 2021-09-09 2018 2021
## 10190 2018-03-22 2021-03-21 2018 2021
## 10191 2018-07-31 2021-07-31 2018 2021
## 10192 2018-10-04 2021-10-03 2018 2021
## 10193 2018-09-15 2021-09-14 2018 2021
## 10194 2018-07-31 2021-07-30 2018 2021
## 10195 2018-04-01 2021-03-31 2018 2021
## 10196 2018-08-27 2021-08-26 2018 2021
## 10197 2018-04-30 2021-04-29 2018 2021
## 10198 2018-06-15 2021-06-15 2018 2021
## 10199 2018-04-18 2021-04-17 2018 2021
## 10200 2018-01-23 2021-01-22 2018 2021
## 10201 2018-07-19 2021-06-18 2018 2021
## 10202 2018-08-05 2021-08-04 2018 2021
## 10203 2018-07-15 2021-07-14 2018 2021
## 10204 2018-03-31 2021-03-29 2018 2021
## 10205 2018-09-18 2021-09-18 2018 2021
## 10206 2018-06-12 2021-06-11 2018 2021
## 10207 2017-11-19 2020-11-18 2017 2020
## 10208 2018-08-05 2021-08-04 2018 2021
## 10209 2017-11-12 2020-11-11 2017 2020
## 10210 2018-04-27 2021-04-24 2018 2021
## 10211 2018-08-12 2021-08-11 2018 2021
## 10212 2018-04-25 2021-04-24 2018 2021
## 10213 2018-09-11 2021-09-10 2018 2021
## 10214 2018-06-11 2021-06-10 2018 2021
## 10215 2018-09-06 2021-09-06 2018 2021
## 10216 2018-08-18 2021-08-17 2018 2021
## 10217 2018-08-05 2021-08-04 2018 2021
## 10218 2018-07-31 2021-07-30 2018 2021
## 10219 2018-08-16 2021-08-15 2018 2021
## 10220 2018-05-13 2019-11-20 2018 2019
## 10221 2018-03-15 2021-03-12 2018 2021
## 10222 2017-10-03 2020-10-02 2017 2020
## 10223 2018-09-02 2021-09-01 2018 2021
## 10224 2017-12-11 2020-12-11 2017 2020
## 10225 2018-09-14 2021-09-13 2018 2021
## 10226 2018-06-14 2021-06-11 2018 2021
## 10227 2017-11-13 2020-11-12 2017 2020
## 10228 2018-12-08 2021-12-07 2018 2021
## 10229 2017-11-12 2020-11-11 2017 2020
## 10230 2018-08-13 2021-08-13 2018 2021
## 10231 2018-08-31 2021-08-30 2018 2021
## 10232 2018-04-18 2021-04-17 2018 2021
## 10233 2018-07-30 2021-07-29 2018 2021
## 10234 2018-05-23 2021-05-23 2018 2021
## 10235 2018-02-18 2021-02-17 2018 2021
## 10236 2018-03-12 2021-03-11 2018 2021
## 10237 2018-02-11 2021-02-10 2018 2021
## 10238 2018-04-06 2021-04-06 2018 2021
## 10239 2018-03-11 2021-03-10 2018 2021
## 10240 2018-09-18 2021-09-17 2018 2021
## 10241 2018-07-27 2021-07-26 2018 2021
## 10242 2018-05-07 2021-05-06 2018 2021
## 10243 2018-06-28 2021-06-27 2018 2021
## 10244 2017-11-30 2020-11-29 2017 2020
## 10245 2017-10-31 2020-10-31 2017 2020
## 10246 2018-08-11 2021-08-10 2018 2021
## 10247 2018-03-04 2021-03-03 2018 2021
## 10248 2018-09-16 2021-09-15 2018 2021
## 10249 2018-09-08 2021-09-07 2018 2021
## 10250 2018-08-30 2021-08-30 2018 2021
## 10251 2018-08-31 2021-08-30 2018 2021
## 10252 2018-06-30 2019-06-29 2018 2019
## 10253 2017-10-11 2020-10-11 2017 2020
## 10254 2017-12-27 2020-12-26 2017 2020
## 10255 2018-08-20 2021-08-19 2018 2021
## 10256 2018-08-09 2021-08-08 2018 2021
## 10257 2018-09-13 2021-09-12 2018 2021
## 10258 2018-09-06 2021-09-05 2018 2021
## 10259 2017-12-17 2020-12-17 2017 2020
## 10260 2017-12-19 2020-12-18 2017 2020
## 10261 2017-11-30 2020-11-30 2017 2020
## 10262 2018-02-25 2018-12-30 2018 2018
## 10263 2018-06-17 2021-06-17 2018 2021
## 10264 2018-05-16 2021-05-15 2018 2021
## 10265 2018-04-30 2021-04-29 2018 2021
## 10266 2018-06-15 2021-06-14 2018 2021
## 10267 2018-08-31 2021-08-30 2018 2021
## 10268 2018-09-11 2021-09-11 2018 2021
## 10269 2018-04-24 2021-04-23 2018 2021
## 10270 2018-08-12 2020-08-11 2018 2020
## 10271 2018-08-20 2021-08-20 2018 2021
## 10272 2018-09-03 2021-09-03 2018 2021
## 10273 2018-02-18 2021-02-17 2018 2021
## 10274 2018-09-11 2021-09-10 2018 2021
## 10275 2018-09-03 2021-09-02 2018 2021
## 10276 2018-03-11 2021-03-10 2018 2021
## 10277 2018-08-19 2021-08-18 2018 2021
## 10278 2018-08-26 2021-08-25 2018 2021
## 10279 2018-09-09 2021-09-09 2018 2021
## 10280 2018-08-23 2021-08-23 2018 2021
## 10281 2018-08-01 2021-07-31 2018 2021
## 10282 2018-09-13 2021-09-12 2018 2021
## 10283 2018-08-10 2021-08-07 2018 2021
## 10284 2017-09-30 2020-09-30 2017 2020
## 10285 2018-09-13 2021-09-13 2018 2021
## 10286 2018-09-14 2021-09-14 2018 2021
## 10287 2018-12-28 2019-06-29 2018 2019
## 10288 2018-07-17 2021-07-17 2018 2021
## 10289 2018-08-19 2021-08-18 2018 2021
## 10290 2018-09-14 2021-09-13 2018 2021
## 10291 2018-09-20 2021-09-19 2018 2021
## 10292 2018-09-20 2021-09-20 2018 2021
## 10293 2018-09-10 2021-09-09 2018 2021
## 10294 2018-09-11 2021-09-10 2018 2021
## 10295 2018-07-03 2021-07-01 2018 2021
## 10296 2018-09-19 2021-09-18 2018 2021
## 10297 2018-01-07 2021-01-06 2018 2021
## 10298 2018-08-31 2021-08-30 2018 2021
## 10299 2018-09-03 2021-09-02 2018 2021
## 10300 2018-04-02 2021-04-01 2018 2021
## 10301 2018-01-21 2021-01-21 2018 2021
## 10302 2018-09-19 2021-09-18 2018 2021
## 10303 2018-06-30 2021-06-29 2018 2021
## 10304 2018-08-06 2021-08-06 2018 2021
## 10305 2018-09-17 2021-09-16 2018 2021
## 10306 2018-04-11 2021-04-11 2018 2021
## 10307 2018-07-10 2021-06-29 2018 2021
## 10308 2018-11-04 2021-11-03 2018 2021
## 10309 2018-05-13 2021-05-13 2018 2021
## 10310 2018-09-23 2021-09-22 2018 2021
## 10311 2018-07-18 2021-07-17 2018 2021
## 10312 2018-06-14 2021-06-13 2018 2021
## 10313 2018-08-24 2021-08-24 2018 2021
## 10314 2018-03-23 2021-03-22 2018 2021
## 10315 2018-03-19 2021-03-18 2018 2021
## 10316 2018-09-05 2021-09-04 2018 2021
## 10317 2018-08-01 2021-07-31 2018 2021
## 10318 2018-09-20 2021-09-20 2018 2021
## 10319 2018-09-01 2021-08-31 2018 2021
## 10320 2018-05-07 2021-04-30 2018 2021
## 10321 2018-09-15 2021-09-15 2018 2021
## 10322 2018-05-06 2021-05-05 2018 2021
## 10323 2018-07-02 2021-07-01 2018 2021
## 10324 2018-09-25 2021-09-24 2018 2021
## 10325 2018-05-29 2021-05-29 2018 2021
## 10326 2018-08-21 2021-08-20 2018 2021
## 10327 2018-07-29 2021-07-28 2018 2021
## 10328 2018-08-14 2021-08-13 2018 2021
## 10329 2018-06-12 2021-06-11 2018 2021
## 10330 2017-12-12 2020-12-11 2017 2020
## 10331 2018-05-23 2021-05-23 2018 2021
## 10332 2018-02-18 2021-02-18 2018 2021
## 10333 2018-06-23 2021-06-22 2018 2021
## 10334 2018-05-06 2020-12-30 2018 2020
## 10335 2017-11-05 2020-11-04 2017 2020
## 10336 2017-10-22 2020-10-21 2017 2020
## 10337 2018-03-08 2021-03-07 2018 2021
## 10338 2018-08-28 2021-08-28 2018 2021
## 10339 2018-03-11 2021-03-10 2018 2021
## 10340 2018-03-06 2021-03-05 2018 2021
## 10341 2018-07-26 2021-07-25 2018 2021
## 10342 2018-08-12 2021-08-11 2018 2021
## 10343 2018-02-03 2021-01-31 2018 2021
## 10344 2017-11-27 2020-11-27 2017 2020
## 10345 2018-02-08 2021-02-07 2018 2021
## 10346 2018-09-17 2021-09-16 2018 2021
## 10347 2018-12-31 2021-12-30 2018 2021
## 10348 2018-09-11 2021-09-10 2018 2021
## 10349 2018-09-16 2021-09-15 2018 2021
## 10350 2018-05-13 2021-05-12 2018 2021
## 10351 2017-10-29 2020-10-29 2017 2020
## 10352 2018-09-08 2021-09-07 2018 2021
## 10353 2018-07-26 2021-07-25 2018 2021
## 10354 2018-04-08 2021-04-07 2018 2021
## 10355 2018-09-30 2021-09-29 2018 2021
## 10356 2018-07-30 2021-07-29 2018 2021
## 10357 2018-09-12 2021-09-11 2018 2021
## 10358 2018-08-03 2021-08-02 2018 2021
## 10359 2018-09-02 2020-12-30 2018 2020
## 10360 2018-07-31 2021-07-30 2018 2021
## 10361 2018-08-19 2021-08-18 2018 2021
## 10362 2018-02-12 2021-02-11 2018 2021
## 10363 2018-08-12 2021-08-11 2018 2021
## 10364 2018-09-19 2021-09-19 2018 2021
## 10365 2018-08-31 2021-08-30 2018 2021
## 10366 2018-02-13 2021-02-12 2018 2021
## 10367 2018-05-06 2021-05-06 2018 2021
## 10368 2017-10-19 2020-10-18 2017 2020
## 10369 2018-06-17 2021-06-16 2018 2021
## 10370 2018-09-11 2021-09-11 2018 2021
## 10371 2018-10-05 2021-10-05 2018 2021
## 10372 2018-09-12 2021-09-11 2018 2021
## 10373 2018-08-24 2021-08-23 2018 2021
## 10374 2018-09-19 2021-09-18 2018 2021
## 10375 2018-08-31 2021-08-30 2018 2021
## 10376 2018-09-17 2021-09-16 2018 2021
## 10377 2018-06-11 2021-06-10 2018 2021
## 10378 2018-03-21 2020-03-20 2018 2020
## 10379 2018-06-14 2021-06-14 2018 2021
## 10380 2018-09-20 2021-09-19 2018 2021
## 10381 2018-09-21 2021-09-20 2018 2021
## 10382 2018-05-27 2021-05-27 2018 2021
## 10383 2018-09-11 2021-09-11 2018 2021
## 10384 2018-05-20 2019-06-29 2018 2019
## 10385 2018-08-10 2021-08-09 2018 2021
## 10386 2018-05-25 2021-05-25 2018 2021
## 10387 2017-10-31 2020-10-30 2017 2020
## 10388 2018-09-19 2021-09-19 2018 2021
## 10389 2018-06-30 2019-03-30 2018 2019
## 10390 2018-06-14 2021-06-14 2018 2021
## 10391 2018-07-23 2021-07-22 2018 2021
## 10392 2018-07-31 2021-07-30 2018 2021
## 10393 2018-06-23 2021-06-22 2018 2021
## 10394 2018-01-23 2021-01-22 2018 2021
## 10395 2018-01-27 2021-01-26 2018 2021
## 10396 2018-11-26 2021-11-25 2018 2021
## 10397 2018-09-03 2021-09-02 2018 2021
## 10398 2018-03-18 2021-03-17 2018 2021
## 10399 2018-01-22 2021-01-22 2018 2021
## 10400 2019-02-25 2022-02-24 2019 2022
## 10401 2018-10-19 2021-10-19 2018 2021
## 10402 2018-10-03 2020-11-07 2018 2020
## 10403 2018-09-04 2021-09-03 2018 2021
## 10404 2018-07-09 2021-07-08 2018 2021
## 10405 2017-12-10 2020-12-09 2017 2020
## 10406 2018-09-13 2021-09-12 2018 2021
## 10407 2018-07-02 2021-06-29 2018 2021
## 10408 2018-08-09 2021-08-09 2018 2021
## 10409 2018-08-21 2021-08-20 2018 2021
## 10410 2018-09-14 2021-09-14 2018 2021
## 10411 2018-12-01 2021-11-30 2018 2021
## 10412 2018-07-25 2021-07-24 2018 2021
## 10413 2018-06-28 2021-06-27 2018 2021
## 10414 2018-06-04 2021-06-04 2018 2021
## 10415 2018-09-30 2021-09-29 2018 2021
## 10416 2018-08-22 2021-08-21 2018 2021
## 10417 2018-08-31 2021-08-30 2018 2021
## 10418 2017-11-19 2020-11-18 2017 2020
## 10419 2019-02-03 2022-02-02 2019 2022
## 10420 2018-06-24 2021-06-23 2018 2021
## 10421 2018-09-10 2021-09-09 2018 2021
## 10422 2017-11-30 2020-11-29 2017 2020
## 10423 2018-07-20 2021-07-19 2018 2021
## 10424 2018-06-25 2021-06-24 2018 2021
## 10425 2018-01-29 2021-01-14 2018 2021
## 10426 2018-09-18 2021-09-17 2018 2021
## 10427 2018-09-15 2021-09-14 2018 2021
## 10428 2018-04-19 2021-04-18 2018 2021
## 10429 2018-08-19 2021-08-18 2018 2021
## 10430 2017-12-26 2020-12-25 2017 2020
## 10431 2018-09-06 2021-09-05 2018 2021
## 10432 2017-11-26 2020-11-26 2017 2020
## 10433 2018-09-10 2021-09-09 2018 2021
## 10434 2018-03-28 2021-03-27 2018 2021
## 10435 2018-09-10 2021-09-10 2018 2021
## 10436 2018-02-21 2021-02-20 2018 2021
## 10437 2018-07-31 2021-07-30 2018 2021
## 10438 2018-03-04 2021-03-03 2018 2021
## 10439 2018-03-04 2021-03-04 2018 2021
## 10440 2018-08-30 2021-08-29 2018 2021
## 10441 2018-10-03 2021-10-03 2018 2021
## 10442 2018-11-30 2021-11-29 2018 2021
## 10443 2018-05-25 2021-05-25 2018 2021
## 10444 2018-08-08 2021-08-08 2018 2021
## 10445 2018-09-14 2021-09-13 2018 2021
## 10446 2018-04-10 2021-04-09 2018 2021
## 10447 2018-09-15 2021-09-14 2018 2021
## 10448 2018-08-27 2021-08-27 2018 2021
## 10449 2018-04-25 2021-04-24 2018 2021
## 10450 2017-10-29 2020-10-28 2017 2020
## 10451 2017-12-31 2020-12-30 2017 2020
## 10452 2018-09-08 2021-09-07 2018 2021
## 10453 2017-12-17 2020-12-16 2017 2020
## 10454 2018-05-10 2021-04-14 2018 2021
## 10455 2018-01-29 2021-01-28 2018 2021
## 10456 2018-09-30 2021-09-29 2018 2021
## 10457 2018-06-10 2021-06-09 2018 2021
## 10458 2018-08-31 2021-08-30 2018 2021
## 10459 2018-09-09 2021-09-09 2018 2021
## 10460 2018-09-07 2021-09-06 2018 2021
## 10461 2018-03-31 2021-03-30 2018 2021
## 10462 2018-09-05 2021-09-05 2018 2021
## 10463 2018-09-10 2021-09-10 2018 2021
## 10464 2018-06-04 2021-06-03 2018 2021
## 10465 2018-12-27 2021-12-27 2018 2021
## 10466 2018-04-29 2021-04-28 2018 2021
## 10467 2018-06-30 2021-06-30 2018 2021
## 10468 2018-08-16 2021-08-16 2018 2021
## 10469 2018-06-07 2021-06-06 2018 2021
## 10470 2018-08-29 2021-08-28 2018 2021
## 10471 2018-09-23 2021-09-22 2018 2021
## 10472 2018-07-15 2021-07-14 2018 2021
## 10473 2018-09-17 2021-09-16 2018 2021
## 10474 2018-05-26 2021-05-26 2018 2021
## 10475 2017-12-06 2020-12-06 2017 2020
## 10476 2018-09-12 2021-09-11 2018 2021
## 10477 2018-07-15 2020-09-29 2018 2020
## 10478 2018-09-02 2021-09-01 2018 2021
## 10479 2018-08-26 2021-08-25 2018 2021
## 10480 2018-06-14 2021-06-14 2018 2021
## 10481 2018-08-24 2021-08-24 2018 2021
## 10482 2018-05-30 2021-05-29 2018 2021
## 10483 2018-09-09 2021-09-08 2018 2021
## 10484 2018-08-20 2021-08-20 2018 2021
## 10485 2018-08-31 2021-08-29 2018 2021
## 10486 2017-10-14 2020-10-14 2017 2020
## 10487 2018-09-30 2021-09-29 2018 2021
## 10488 2018-07-22 2021-07-22 2018 2021
## 10489 2018-03-19 2021-03-19 2018 2021
## 10490 2018-08-22 2021-08-21 2018 2021
## 10491 2018-06-19 2021-06-19 2018 2021
## 10492 2018-09-12 2021-09-12 2018 2021
## 10493 2018-09-30 2021-09-29 2018 2021
## 10494 2018-07-31 2021-07-30 2018 2021
## 10495 2017-10-08 2020-10-07 2017 2020
## 10496 2018-07-31 2021-07-30 2018 2021
## 10497 2017-11-21 2020-11-18 2017 2020
## 10498 2017-11-26 2020-11-26 2017 2020
## 10499 2018-08-31 2021-08-30 2018 2021
## 10500 2018-09-28 2021-09-27 2018 2021
## 10501 2017-10-29 2020-10-29 2017 2020
## 10502 2018-07-01 2021-06-30 2018 2021
## 10503 2017-10-24 2020-10-23 2017 2020
## 10504 2018-06-30 2021-06-29 2018 2021
## 10505 2018-08-11 2021-08-10 2018 2021
## 10506 2018-09-16 2021-09-15 2018 2021
## 10507 2018-05-01 2021-04-30 2018 2021
## 10508 2018-08-20 2021-08-19 2018 2021
## 10509 2018-06-06 2021-06-06 2018 2021
## 10510 2018-09-07 2021-09-06 2018 2021
## 10511 2018-09-06 2021-09-06 2018 2021
## 10512 2018-09-16 2021-09-15 2018 2021
## 10513 2017-12-17 2020-12-16 2017 2020
## 10514 2018-08-31 2021-08-31 2018 2021
## 10515 2018-03-04 2021-03-04 2018 2021
## 10516 2018-04-18 2021-04-17 2018 2021
## 10517 2018-06-05 2021-06-04 2018 2021
## 10518 2018-08-28 2021-08-27 2018 2021
## 10519 2018-10-14 2021-10-14 2018 2021
## 10520 2018-09-14 2021-09-13 2018 2021
## 10521 2018-03-08 2021-03-07 2018 2021
## 10522 2018-02-24 2021-02-23 2018 2021
## 10523 2018-09-03 2021-09-03 2018 2021
## 10524 2018-09-03 2021-09-02 2018 2021
## 10525 2018-09-09 2021-09-08 2018 2021
## 10526 2017-10-22 2020-10-22 2017 2020
## 10527 2018-08-27 2021-08-26 2018 2021
## 10528 2018-01-10 2021-01-09 2018 2021
## 10529 2018-07-21 2021-07-18 2018 2021
## 10530 2018-07-18 2021-07-17 2018 2021
## 10531 2018-08-09 2021-08-09 2018 2021
## 10532 2018-08-31 2021-08-30 2018 2021
## 10533 2018-08-05 2021-08-05 2018 2021
## 10534 2018-08-30 2021-08-30 2018 2021
## 10535 2018-05-02 2020-09-29 2018 2020
## 10536 2018-08-21 2021-08-20 2018 2021
## 10537 2018-09-19 2021-09-18 2018 2021
## 10538 2018-08-01 2021-07-31 2018 2021
## 10539 2018-08-23 2021-08-22 2018 2021
## 10540 2018-02-03 2021-02-03 2018 2021
## 10541 2018-08-11 2021-08-10 2018 2021
## 10542 2018-09-20 2021-09-19 2018 2021
## 10543 2018-03-20 2021-03-19 2018 2021
## 10544 2018-08-31 2021-08-30 2018 2021
## 10545 2017-11-23 2020-11-22 2017 2020
## 10546 2018-07-23 2021-07-22 2018 2021
## 10547 2018-09-14 2021-09-13 2018 2021
## 10548 2018-09-03 2021-09-02 2018 2021
## 10549 2018-08-24 2021-08-24 2018 2021
## 10550 2019-02-28 2022-02-28 2019 2022
## 10551 2018-08-27 2021-08-26 2018 2021
## 10552 2018-07-17 2021-07-16 2018 2021
## 10553 2018-04-12 2021-04-11 2018 2021
## 10554 2018-09-30 2021-09-29 2018 2021
## 10555 2018-07-29 2020-07-29 2018 2020
## 10556 2019-03-10 2022-03-09 2019 2022
## 10557 2018-08-10 2021-08-09 2018 2021
## 10558 2017-10-23 2020-10-22 2017 2020
## 10559 2018-05-13 2021-05-12 2018 2021
## 10560 2018-08-31 2021-08-31 2018 2021
## 10561 2018-12-31 2021-12-31 2018 2021
## 10562 2018-09-18 2021-09-18 2018 2021
## 10563 2017-12-13 2020-08-31 2017 2020
## 10564 2018-08-27 2021-08-26 2018 2021
## 10565 2018-06-26 2021-06-23 2018 2021
## 10566 2018-08-27 2021-08-26 2018 2021
## 10567 2017-12-11 2020-12-10 2017 2020
## 10568 2018-02-18 2021-02-18 2018 2021
## 10569 2018-07-22 2021-07-21 2018 2021
## 10570 2018-08-14 2021-08-13 2018 2021
## 10571 2018-09-01 2021-09-01 2018 2021
## 10572 2018-08-01 2021-08-01 2018 2021
## 10573 2018-08-14 2021-08-13 2018 2021
## 10574 2018-05-31 2021-05-30 2018 2021
## 10575 2018-09-18 2021-09-17 2018 2021
## 10576 2018-07-16 2021-07-15 2018 2021
## 10577 2018-08-18 2021-08-17 2018 2021
## 10578 2018-09-16 2021-09-15 2018 2021
## 10579 2018-08-30 2021-08-29 2018 2021
## 10580 2018-08-10 2021-08-10 2018 2021
## 10581 2018-04-19 2021-04-18 2018 2021
## 10582 2018-01-14 2021-01-11 2018 2021
## 10583 2018-08-05 2021-08-04 2018 2021
## 10584 2018-09-06 2021-09-05 2018 2021
## 10585 2018-09-30 2021-09-29 2018 2021
## 10586 2018-03-22 2021-03-21 2018 2021
## 10587 2018-08-27 2021-08-26 2018 2021
## 10588 2018-08-14 2021-08-14 2018 2021
## 10589 2018-08-29 2021-08-29 2018 2021
## 10590 2018-07-04 2021-07-03 2018 2021
## 10591 2018-01-14 2021-01-14 2018 2021
## 10592 2018-08-31 2021-08-30 2018 2021
## 10593 2018-09-23 2021-09-23 2018 2021
## 10594 2019-01-11 2022-01-10 2019 2022
## 10595 2018-05-13 2021-05-13 2018 2021
## 10596 2018-08-15 2021-08-14 2018 2021
## 10597 2018-09-06 2021-09-05 2018 2021
## 10598 2018-08-06 2021-08-05 2018 2021
## 10599 2018-08-17 2021-08-16 2018 2021
## 10600 2018-06-14 2021-06-14 2018 2021
## 10601 2018-05-20 2021-05-20 2018 2021
## 10602 2018-09-04 2021-09-03 2018 2021
## 10603 2018-02-20 2021-02-19 2018 2021
## 10604 2018-08-26 2021-08-25 2018 2021
## 10605 2018-09-30 2021-09-29 2018 2021
## 10606 2018-08-28 2021-08-27 2018 2021
## 10607 2018-08-31 2021-08-31 2018 2021
## 10608 2017-11-13 2020-11-11 2017 2020
## 10609 2018-05-21 2019-07-02 2018 2019
## 10610 2018-06-18 2021-06-16 2018 2021
## 10611 2018-08-16 2021-08-15 2018 2021
## 10612 2018-06-05 2020-05-05 2018 2020
## 10613 2018-08-16 2021-08-15 2018 2021
## 10614 2018-09-14 2021-09-14 2018 2021
## 10615 2018-08-22 2021-08-21 2018 2021
## 10616 2018-09-11 2021-09-10 2018 2021
## 10617 2018-08-31 2021-08-30 2018 2021
## 10618 2018-11-07 2021-11-06 2018 2021
## 10619 2018-09-05 2021-09-05 2018 2021
## 10620 2018-04-29 2021-04-28 2018 2021
## 10621 2018-08-31 2021-08-31 2018 2021
## 10622 2018-09-08 2021-09-07 2018 2021
## 10623 2018-04-30 2021-04-29 2018 2021
## 10624 2018-09-09 2020-07-25 2018 2020
## 10625 2018-09-09 2021-09-08 2018 2021
## 10626 2018-08-22 2021-08-21 2018 2021
## 10627 2018-08-31 2021-08-29 2018 2021
## 10628 2018-09-05 2021-09-04 2018 2021
## 10629 2018-08-19 2021-08-18 2018 2021
## 10630 2018-08-24 2021-08-23 2018 2021
## 10631 2018-06-24 2021-06-23 2018 2021
## 10632 2017-10-31 2020-10-30 2017 2020
## 10633 2018-08-05 2021-08-04 2018 2021
## 10634 2018-09-24 2021-09-23 2018 2021
## 10635 2018-08-01 2021-07-31 2018 2021
## 10636 2018-08-31 2021-08-30 2018 2021
## 10637 2018-08-20 2021-08-19 2018 2021
## 10638 2018-05-29 2021-05-29 2018 2021
## 10639 2018-05-20 2021-05-19 2018 2021
## 10640 2018-08-19 2021-08-19 2018 2021
## 10641 2018-02-18 2019-09-18 2018 2019
## 10642 2018-08-31 2021-08-30 2018 2021
## 10643 2018-05-09 2021-05-08 2018 2021
## 10644 2018-05-31 2021-05-30 2018 2021
## 10645 2018-09-04 2021-09-03 2018 2021
## 10646 2017-12-24 2020-12-23 2017 2020
## 10647 2018-08-12 2021-08-12 2018 2021
## 10648 2018-06-17 2021-06-16 2018 2021
## 10649 2018-10-30 2021-10-29 2018 2021
## 10650 2018-09-17 2021-09-14 2018 2021
## 10651 2018-01-02 2021-01-01 2018 2021
## 10652 2018-04-10 2021-04-09 2018 2021
## 10653 2019-01-18 2022-01-17 2019 2022
## 10654 2018-09-16 2021-09-15 2018 2021
## 10655 2018-01-25 2021-01-24 2018 2021
## 10656 2018-07-26 2021-07-25 2018 2021
## 10657 2018-07-31 2021-07-30 2018 2021
## 10658 2018-09-26 2021-09-26 2018 2021
## 10659 2017-10-13 2020-10-10 2017 2020
## 10660 2018-09-19 2021-09-18 2018 2021
## 10661 2018-07-29 2021-07-28 2018 2021
## 10662 2018-03-18 2021-03-18 2018 2021
## 10663 2018-07-14 2021-07-13 2018 2021
## 10664 2018-07-31 2021-07-30 2018 2021
## 10665 2018-10-07 2021-10-06 2018 2021
## 10666 2017-12-14 2020-12-13 2017 2020
## 10667 2018-06-15 2021-06-15 2018 2021
## 10668 2018-09-11 2021-09-11 2018 2021
## 10669 2018-09-30 2021-09-30 2018 2021
## 10670 2018-12-31 2021-12-31 2018 2021
## 10671 2018-02-01 2021-01-31 2018 2021
## 10672 2018-10-01 2021-09-30 2018 2021
## 10673 2018-01-14 2021-01-13 2018 2021
## 10674 2018-06-28 2021-06-25 2018 2021
## 10675 2018-09-19 2021-09-19 2018 2021
## 10676 2018-07-31 2021-07-30 2018 2021
## 10677 2018-08-06 2021-08-05 2018 2021
## 10678 2018-08-14 2021-08-14 2018 2021
## 10679 2018-08-16 2021-08-15 2018 2021
## 10680 2018-04-26 2021-04-24 2018 2021
## 10681 2018-07-02 2021-07-01 2018 2021
## 10682 2018-06-14 2021-06-13 2018 2021
## 10683 2018-08-12 2021-08-11 2018 2021
## 10684 2018-09-01 2021-08-31 2018 2021
## 10685 2018-01-21 2021-01-21 2018 2021
## 10686 2018-06-03 2021-06-02 2018 2021
## 10687 2018-09-06 2021-09-05 2018 2021
## 10688 2018-08-02 2021-08-02 2018 2021
## 10689 2018-09-14 2021-09-13 2018 2021
## 10690 2018-09-08 2021-09-07 2018 2021
## 10691 2018-08-19 2021-08-18 2018 2021
## 10692 2018-09-02 2021-09-02 2018 2021
## 10693 2018-06-15 2021-06-15 2018 2021
## 10694 2018-09-09 2021-09-08 2018 2021
## 10695 2018-08-06 2021-08-05 2018 2021
## 10696 2018-07-15 2021-07-12 2018 2021
## 10697 2018-09-13 2021-09-12 2018 2021
## 10698 2017-12-17 2020-12-16 2017 2020
## 10699 2018-02-25 2021-02-25 2018 2021
## 10700 2018-06-10 2021-06-10 2018 2021
## 10701 2018-09-07 2021-09-06 2018 2021
## 10702 2017-11-07 2020-11-06 2017 2020
## 10703 2017-12-04 2018-09-29 2017 2018
## 10704 2018-08-31 2021-08-30 2018 2021
## 10705 2018-08-01 2021-07-31 2018 2021
## 10706 2018-09-07 2021-09-07 2018 2021
## 10707 2019-01-17 2022-01-16 2019 2022
## 10708 2018-09-06 2021-09-05 2018 2021
## 10709 2018-09-11 2021-09-10 2018 2021
## 10710 2018-09-14 2021-09-13 2018 2021
## 10711 2017-12-10 2020-12-09 2017 2020
## 10712 2018-08-14 2021-08-14 2018 2021
## 10713 2018-06-14 2021-06-14 2018 2021
## 10714 2018-08-22 2021-08-22 2018 2021
## 10715 2018-04-19 2021-02-18 2018 2021
## 10716 2018-09-06 2020-09-05 2018 2020
## 10717 2018-03-26 2021-03-25 2018 2021
## 10718 2017-10-01 2020-09-30 2017 2020
## 10719 2017-11-03 2020-11-02 2017 2020
## 10720 2018-06-04 2021-06-03 2018 2021
## 10721 2018-11-02 2021-11-01 2018 2021
## 10722 2018-03-11 2021-03-10 2018 2021
## 10723 2018-09-21 2021-09-21 2018 2021
## 10724 2018-09-17 2021-09-17 2018 2021
## 10725 2018-08-09 2021-08-08 2018 2021
## 10726 2017-11-12 2020-11-11 2017 2020
## 10727 2018-06-29 2019-09-30 2018 2019
## 10728 2018-09-19 2021-09-19 2018 2021
## 10729 2018-09-08 2021-09-07 2018 2021
## 10730 2018-08-14 2021-08-14 2018 2021
## 10731 2018-08-22 2021-08-22 2018 2021
## 10732 2018-04-26 2021-04-26 2018 2021
## 10733 2018-06-03 2021-06-02 2018 2021
## 10734 2018-05-10 2021-05-09 2018 2021
## 10735 2018-08-31 2020-08-31 2018 2020
## 10736 2018-07-24 2021-07-23 2018 2021
## 10737 2018-09-06 2021-09-05 2018 2021
## 10738 2018-05-23 2021-05-23 2018 2021
## 10739 2018-09-12 2021-09-11 2018 2021
## 10740 2018-02-11 2021-02-09 2018 2021
## 10741 2018-08-31 2021-08-30 2018 2021
## 10742 2019-01-18 2022-01-17 2019 2022
## 10743 2018-07-17 2021-07-16 2018 2021
## 10744 2018-06-04 2021-06-03 2018 2021
## 10745 2018-07-30 2021-07-29 2018 2021
## 10746 2017-10-30 2020-10-29 2017 2020
## 10747 2018-09-15 2021-09-15 2018 2021
## 10748 2018-05-22 2021-05-21 2018 2021
## 10749 2018-06-30 2021-06-29 2018 2021
## 10750 2018-09-26 2021-09-26 2018 2021
## 10751 2018-09-25 2021-09-24 2018 2021
## 10752 2018-11-22 2021-11-21 2018 2021
## 10753 2018-09-11 2021-09-10 2018 2021
## 10754 2018-07-31 2021-07-30 2018 2021
## 10755 2018-07-31 2020-12-29 2018 2020
## 10756 2018-03-31 2021-03-31 2018 2021
## 10757 2018-07-31 2021-07-30 2018 2021
## 10758 2018-07-31 2021-07-31 2018 2021
## 10759 2018-09-05 2021-09-04 2018 2021
## 10760 2018-08-31 2021-08-30 2018 2021
## 10761 2018-09-04 2021-09-04 2018 2021
## 10762 2017-10-08 2020-10-07 2017 2020
## 10763 2018-09-11 2021-09-10 2018 2021
## 10764 2018-07-08 2021-07-07 2018 2021
## 10765 2018-01-10 2018-12-02 2018 2018
## 10766 2018-07-19 2020-04-06 2018 2020
## 10767 2018-12-02 2021-12-01 2018 2021
## 10768 2018-06-27 2021-06-27 2018 2021
## 10769 2018-07-04 2021-07-04 2018 2021
## 10770 2017-12-13 2020-12-13 2017 2020
## 10771 2018-03-29 2021-03-28 2018 2021
## 10772 2018-09-14 2021-09-13 2018 2021
## 10773 2018-02-28 2021-02-27 2018 2021
## 10774 2017-10-26 2020-10-26 2017 2020
## 10775 2018-07-04 2021-07-03 2018 2021
## 10776 2018-04-02 2020-10-25 2018 2020
## 10777 2018-07-23 2021-07-22 2018 2021
## 10778 2018-03-25 2021-03-24 2018 2021
## 10779 2018-07-08 2021-07-08 2018 2021
## 10780 2017-12-31 2020-12-30 2017 2020
## 10781 2018-09-02 2021-09-01 2018 2021
## 10782 2018-08-30 2021-08-30 2018 2021
## 10783 2017-12-31 2020-12-31 2017 2020
## 10784 2017-10-17 2020-10-16 2017 2020
## 10785 2018-09-07 2021-09-07 2018 2021
## 10786 2018-01-01 2020-12-31 2018 2020
## 10787 2018-08-31 2021-08-30 2018 2021
## 10788 2018-09-10 2021-09-09 2018 2021
## 10789 2018-08-15 2021-08-15 2018 2021
## 10790 2018-09-19 2021-09-19 2018 2021
## 10791 2018-01-16 2021-01-15 2018 2021
## 10792 2018-08-31 2021-08-31 2018 2021
## 10793 2018-03-31 2021-03-30 2018 2021
## 10794 2018-06-07 2020-06-06 2018 2020
## 10795 2018-08-28 2021-08-27 2018 2021
## 10796 2018-09-09 2021-09-08 2018 2021
## 10797 2018-06-14 2021-06-14 2018 2021
## 10798 2018-02-22 2021-02-21 2018 2021
## 10799 2018-09-05 2021-09-04 2018 2021
## 10800 2018-07-11 2021-07-11 2018 2021
## 10801 2018-09-23 2021-09-22 2018 2021
## 10802 2018-08-24 2021-08-24 2018 2021
## 10803 2018-04-10 2019-04-29 2018 2019
## 10804 2017-12-17 2020-12-16 2017 2020
## 10805 2018-08-20 2021-08-20 2018 2021
## 10806 2018-07-31 2021-07-31 2018 2021
## 10807 2018-03-06 2021-03-06 2018 2021
## 10808 2018-07-19 2021-07-18 2018 2021
## 10809 2018-07-10 2021-07-10 2018 2021
## 10810 2018-09-04 2021-09-04 2018 2021
## 10811 2018-08-29 2021-08-28 2018 2021
## 10812 2018-04-10 2021-04-09 2018 2021
## 10813 2018-03-30 2021-03-30 2018 2021
## 10814 2018-02-08 2021-02-07 2018 2021
## 10815 2018-01-28 2021-01-27 2018 2021
## 10816 2018-07-29 2021-07-28 2018 2021
## 10817 2018-04-25 2019-04-24 2018 2019
## 10818 2018-09-20 2021-09-17 2018 2021
## 10819 2018-08-10 2021-08-10 2018 2021
## 10820 2018-08-15 2018-09-14 2018 2018
## 10821 2018-03-25 2021-03-24 2018 2021
## 10822 2018-08-12 2021-08-11 2018 2021
## 10823 2018-02-05 2021-02-04 2018 2021
## 10824 2018-01-15 2020-03-07 2018 2020
## 10825 2018-09-04 2021-09-04 2018 2021
## 10826 2018-08-24 2021-08-23 2018 2021
## 10827 2018-09-12 2021-09-11 2018 2021
## 10828 2018-05-30 2021-05-29 2018 2021
## 10829 2018-08-18 2021-08-18 2018 2021
## 10830 2018-10-01 2021-10-01 2018 2021
## 10831 2018-07-30 2021-07-30 2018 2021
## 10832 2018-07-02 2021-07-01 2018 2021
## 10833 2018-08-31 2021-08-30 2018 2021
## 10834 2018-08-08 2021-08-07 2018 2021
## 10835 2018-06-17 2021-06-17 2018 2021
## 10836 2018-04-09 2021-04-08 2018 2021
## 10837 2018-09-15 2021-09-14 2018 2021
## 10838 2018-04-30 2021-04-30 2018 2021
## 10839 2017-10-15 2020-10-14 2017 2020
## 10840 2018-09-16 2021-09-15 2018 2021
## 10841 2018-08-28 2021-08-28 2018 2021
## 10842 2018-03-25 2021-03-24 2018 2021
## 10843 2018-05-30 2021-05-29 2018 2021
## 10844 2018-08-31 2021-08-30 2018 2021
## 10845 2018-09-09 2021-09-08 2018 2021
## 10846 2018-02-04 2021-02-03 2018 2021
## 10847 2018-09-30 2021-09-30 2018 2021
## 10848 2018-05-29 2021-05-28 2018 2021
## 10849 2018-08-09 2021-08-08 2018 2021
## 10850 2018-06-03 2021-06-02 2018 2021
## 10851 2017-10-29 2020-10-29 2017 2020
## 10852 2018-09-14 2021-09-14 2018 2021
## 10853 2017-11-22 2020-11-21 2017 2020
## 10854 2018-09-09 2021-09-08 2018 2021
## 10855 2018-09-12 2021-09-12 2018 2021
## 10856 2018-09-17 2021-09-16 2018 2021
## 10857 2018-08-28 2021-08-28 2018 2021
## 10858 2018-01-31 2021-01-30 2018 2021
## 10859 2018-09-16 2021-09-15 2018 2021
## 10860 2018-08-09 2021-08-08 2018 2021
## 10861 2018-08-26 2021-08-26 2018 2021
## 10862 2018-08-25 2021-08-24 2018 2021
## 10863 2018-08-31 2021-08-30 2018 2021
## 10864 2018-09-20 2021-09-19 2018 2021
## 10865 2018-08-31 2021-08-30 2018 2021
## 10866 2018-09-17 2021-09-17 2018 2021
## 10867 2018-07-27 2021-07-26 2018 2021
## 10868 2018-03-31 2021-03-30 2018 2021
## 10869 2018-01-31 2021-01-31 2018 2021
## 10870 2018-09-16 2021-09-15 2018 2021
## 10871 2018-09-18 2020-09-17 2018 2020
## 10872 2017-12-31 2020-12-30 2017 2020
## 10873 2018-05-20 2021-05-19 2018 2021
## 10874 2018-05-06 2021-05-06 2018 2021
## 10875 2018-08-28 2021-08-27 2018 2021
## 10876 2018-10-16 2021-10-15 2018 2021
## 10877 2018-08-10 2021-08-09 2018 2021
## 10878 2018-09-03 2021-09-03 2018 2021
## 10879 2018-07-11 2021-07-10 2018 2021
## 10880 2018-06-17 2021-06-16 2018 2021
## 10881 2018-09-23 2021-09-23 2018 2021
## 10882 2018-12-31 2021-12-28 2018 2021
## 10883 2019-01-08 2022-01-07 2019 2022
## 10884 2018-08-31 2021-08-31 2018 2021
## 10885 2018-09-22 2021-09-22 2018 2021
## 10886 2018-09-03 2021-09-02 2018 2021
## 10887 2018-08-07 2021-08-06 2018 2021
## 10888 2018-09-10 2021-09-10 2018 2021
## 10889 2018-06-14 2021-06-14 2018 2021
## 10890 2018-03-15 2021-03-15 2018 2021
## 10891 2018-01-25 2021-01-24 2018 2021
## 10892 2018-08-31 2021-08-30 2018 2021
## 10893 2017-11-20 2020-11-19 2017 2020
## 10894 2018-09-10 2021-09-10 2018 2021
## 10895 2018-08-19 2021-08-18 2018 2021
## 10896 2017-10-31 2020-10-31 2017 2020
## 10897 2018-09-20 2021-09-19 2018 2021
## 10898 2018-07-31 2021-07-30 2018 2021
## 10899 2018-03-18 2021-03-17 2018 2021
## 10900 2018-02-14 2021-02-13 2018 2021
## 10901 2018-05-07 2021-05-06 2018 2021
## 10902 2018-09-10 2021-09-09 2018 2021
## 10903 2018-07-31 2021-07-30 2018 2021
## 10904 2018-03-14 2021-03-13 2018 2021
## 10905 2018-09-08 2021-09-07 2018 2021
## 10906 2018-05-06 2021-05-05 2018 2021
## 10907 2018-07-10 2021-07-09 2018 2021
## 10908 2018-08-31 2021-08-30 2018 2021
## 10909 2018-09-20 2021-09-19 2018 2021
## 10910 2018-09-14 2021-09-14 2018 2021
## 10911 2018-07-16 2021-07-15 2018 2021
## 10912 2018-08-15 2021-08-14 2018 2021
## 10913 2017-11-19 2020-11-18 2017 2020
## 10914 2018-04-01 2021-03-31 2018 2021
## 10915 2018-08-21 2021-08-20 2018 2021
## 10916 2018-06-14 2021-06-14 2018 2021
## 10917 2018-08-22 2021-08-22 2018 2021
## 10918 2018-09-07 2021-09-06 2018 2021
## 10919 2018-09-06 2021-09-06 2018 2021
## 10920 2017-10-18 2020-10-17 2017 2020
## 10921 2018-05-20 2021-05-19 2018 2021
## 10922 2018-07-31 2021-07-30 2018 2021
## 10923 2018-09-12 2021-09-12 2018 2021
## 10924 2018-04-01 2021-03-31 2018 2021
## 10925 2018-08-20 2021-08-19 2018 2021
## 10926 2018-12-11 2021-12-10 2018 2021
## 10927 2018-02-13 2021-02-10 2018 2021
## 10928 2018-09-08 2021-09-07 2018 2021
## 10929 2018-08-29 2021-08-28 2018 2021
## 10930 2018-09-28 2021-09-27 2018 2021
## 10931 2018-09-02 2021-09-01 2018 2021
## 10932 2018-09-30 2021-09-29 2018 2021
## 10933 2018-09-18 2021-09-18 2018 2021
## 10934 2018-06-28 2021-06-27 2018 2021
## 10935 2018-09-06 2021-09-05 2018 2021
## 10936 2018-09-09 2021-09-08 2018 2021
## 10937 2017-11-30 2020-11-29 2017 2020
## 10938 2018-07-27 2021-07-27 2018 2021
## 10939 2018-08-05 2021-08-04 2018 2021
## 10940 2018-08-31 2021-08-30 2018 2021
## 10941 2018-06-30 2019-06-29 2018 2019
## 10942 2018-02-26 2019-07-25 2018 2019
## 10943 2018-09-30 2021-09-29 2018 2021
## 10944 2018-06-30 2021-06-30 2018 2021
## 10945 2018-09-14 2021-09-14 2018 2021
## 10946 2018-08-24 2021-08-23 2018 2021
## 10947 2018-09-09 2021-09-08 2018 2021
## 10948 2018-09-05 2021-09-05 2018 2021
## 10949 2018-09-27 2021-09-26 2018 2021
## 10950 2018-09-10 2021-09-10 2018 2021
## 10951 2018-09-06 2021-09-05 2018 2021
## 10952 2018-09-03 2021-09-03 2018 2021
## 10953 2018-08-30 2021-08-29 2018 2021
## 10954 2018-07-09 2021-07-08 2018 2021
## 10955 2018-08-31 2021-07-30 2018 2021
## 10956 2018-09-30 2021-09-29 2018 2021
## 10957 2018-09-10 2021-09-09 2018 2021
## 10958 2018-08-14 2021-08-13 2018 2021
## 10959 2018-04-23 2020-04-22 2018 2020
## 10960 2018-08-28 2021-08-27 2018 2021
## 10961 2018-09-02 2021-09-01 2018 2021
## 10962 2018-08-26 2021-08-25 2018 2021
## 10963 2017-10-22 2020-10-21 2017 2020
## 10964 2018-04-08 2021-04-08 2018 2021
## 10965 2019-01-02 2022-01-01 2019 2022
## 10966 2018-09-04 2021-09-04 2018 2021
## 10967 2018-06-27 2021-06-26 2018 2021
## 10968 2018-09-11 2021-09-10 2018 2021
## 10969 2018-03-31 2021-03-30 2018 2021
## 10970 2017-10-22 2020-10-19 2017 2020
## 10971 2018-04-30 2021-04-29 2018 2021
## 10972 2018-05-31 2021-05-30 2018 2021
## 10973 2018-09-30 2021-09-29 2018 2021
## 10974 2018-09-19 2021-09-19 2018 2021
## 10975 2017-12-19 2019-12-18 2017 2019
## 10976 2018-08-14 2021-08-13 2018 2021
## 10977 2018-06-27 2021-06-26 2018 2021
## 10978 2018-02-28 2021-02-28 2018 2021
## 10979 2018-04-05 2021-04-04 2018 2021
## 10980 2018-08-30 2021-08-30 2018 2021
## 10981 2018-04-22 2021-04-21 2018 2021
## 10982 2018-09-02 2021-09-01 2018 2021
## 10983 2018-06-30 2021-06-27 2018 2021
## 10984 2018-09-20 2021-09-19 2018 2021
## 10985 2018-07-25 2021-07-24 2018 2021
## 10986 2017-11-20 2020-11-19 2017 2020
## 10987 2017-10-08 2020-10-07 2017 2020
## 10988 2017-11-05 2020-11-04 2017 2020
## 10989 2018-09-05 2021-09-04 2018 2021
## 10990 2018-09-23 2021-09-22 2018 2021
## 10991 2018-09-21 2021-09-20 2018 2021
## 10992 2018-09-07 2021-09-07 2018 2021
## 10993 2018-08-26 2021-08-25 2018 2021
## 10994 2017-11-30 2018-09-29 2017 2018
## 10995 2018-01-22 2021-01-21 2018 2021
## 10996 2018-09-15 2021-09-15 2018 2021
## 10997 2018-09-12 2021-09-11 2018 2021
## 10998 2018-09-06 2021-09-05 2018 2021
## 10999 2017-10-14 2020-10-14 2017 2020
## 11000 2018-04-13 2021-04-12 2018 2021
## 11001 2018-10-06 2021-10-06 2018 2021
## 11002 2018-08-29 2021-08-29 2018 2021
## 11003 2018-05-02 2021-05-01 2018 2021
## 11004 2018-03-22 2021-03-21 2018 2021
## 11005 2017-12-31 2020-12-30 2017 2020
## 11006 2018-03-11 2021-03-10 2018 2021
## 11007 2018-03-10 2021-03-10 2018 2021
## 11008 2018-08-19 2021-08-18 2018 2021
## 11009 2018-09-07 2021-09-06 2018 2021
## 11010 2018-01-24 2021-01-24 2018 2021
## 11011 2018-05-06 2019-08-13 2018 2019
## 11012 2018-10-04 2021-10-04 2018 2021
## 11013 2018-03-04 2021-03-03 2018 2021
## 11014 2018-03-11 2021-03-10 2018 2021
## 11015 2018-06-20 2021-06-20 2018 2021
## 11016 2018-03-04 2021-03-04 2018 2021
## 11017 2018-08-30 2021-08-30 2018 2021
## 11018 2018-11-14 2021-11-13 2018 2021
## 11019 2018-08-27 2021-08-26 2018 2021
## 11020 2017-11-26 2020-11-25 2017 2020
## 11021 2017-09-27 2020-09-27 2017 2020
## 11022 2018-09-30 2021-09-30 2018 2021
## 11023 2018-07-29 2021-07-28 2018 2021
## 11024 2018-08-14 2019-08-10 2018 2019
## 11025 2018-06-14 2021-06-14 2018 2021
## 11026 2018-09-22 2021-09-21 2018 2021
## 11027 2017-12-03 2020-12-02 2017 2020
## 11028 2018-09-28 2021-09-27 2018 2021
## 11029 2018-01-17 2021-01-16 2018 2021
## 11030 2018-07-19 2021-07-19 2018 2021
## 11031 2018-09-04 2021-09-03 2018 2021
## 11032 2018-09-09 2021-09-08 2018 2021
## 11033 2018-08-12 2020-08-22 2018 2020
## 11034 2018-03-22 2021-03-22 2018 2021
## 11035 2018-09-14 2021-09-14 2018 2021
## 11036 2018-07-16 2021-07-16 2018 2021
## 11037 2017-10-10 2020-10-09 2017 2020
## 11038 2018-09-27 2021-09-26 2018 2021
## 11039 2018-04-15 2018-09-29 2018 2018
## 11040 2018-08-08 2021-08-08 2018 2021
## 11041 2018-09-19 2021-09-18 2018 2021
## 11042 2018-08-31 2021-08-30 2018 2021
## 11043 2018-09-04 2021-09-03 2018 2021
## 11044 2017-10-04 2020-10-03 2017 2020
## 11045 2017-11-14 2020-11-13 2017 2020
## 11046 2018-04-24 2021-04-23 2018 2021
## 11047 2018-08-31 2021-08-31 2018 2021
## 11048 2018-06-17 2021-06-16 2018 2021
## 11049 2018-09-06 2021-09-05 2018 2021
## 11050 2018-03-02 2021-03-02 2018 2021
## 11051 2017-12-10 2020-12-09 2017 2020
## 11052 2018-02-01 2021-01-31 2018 2021
## 11053 2018-08-19 2021-08-18 2018 2021
## 11054 2018-04-30 2021-04-30 2018 2021
## 11055 2018-04-01 2021-04-01 2018 2021
## 11056 2018-02-20 2021-02-19 2018 2021
## 11057 2018-09-30 2021-09-29 2018 2021
## 11058 2018-09-09 2021-09-08 2018 2021
## 11059 2018-07-01 2021-06-30 2018 2021
## 11060 2018-10-09 2021-10-09 2018 2021
## 11061 2019-03-05 2022-03-05 2019 2022
## 11062 2018-01-01 2020-12-31 2018 2020
## 11063 2018-07-02 2021-07-01 2018 2021
## 11064 2018-03-30 2021-03-29 2018 2021
## 11065 2018-09-14 2021-09-13 2018 2021
## 11066 2018-08-31 2021-08-29 2018 2021
## 11067 2018-02-27 2021-02-26 2018 2021
## 11068 2018-08-13 2021-08-13 2018 2021
## 11069 2018-06-24 2021-06-17 2018 2021
## 11070 2018-05-13 2021-05-12 2018 2021
## 11071 2018-08-25 2020-06-05 2018 2020
## 11072 2018-07-31 2021-07-30 2018 2021
## 11073 2018-05-13 2021-05-10 2018 2021
## 11074 2018-01-02 2021-01-02 2018 2021
## 11075 2019-01-31 2022-01-30 2019 2022
## 11076 2018-05-03 2021-05-02 2018 2021
## 11077 2018-07-22 2020-02-28 2018 2020
## 11078 2018-05-30 2021-05-30 2018 2021
## 11079 2018-09-24 2021-09-23 2018 2021
## 11080 2018-09-23 2021-09-22 2018 2021
## 11081 2018-08-24 2021-08-24 2018 2021
## 11082 2017-10-30 2020-10-29 2017 2020
## 11083 2018-09-09 2021-09-09 2018 2021
## 11084 2018-09-14 2020-09-14 2018 2020
## 11085 2018-04-29 2021-04-28 2018 2021
## 11086 2018-05-03 2021-05-02 2018 2021
## 11087 2018-08-31 2021-08-30 2018 2021
## 11088 2018-08-23 2021-08-22 2018 2021
## 11089 2018-09-06 2021-09-05 2018 2021
## 11090 2018-06-21 2021-06-20 2018 2021
## 11091 2018-09-08 2021-09-07 2018 2021
## 11092 2018-03-25 2021-03-24 2018 2021
## 11093 2018-04-23 2021-04-22 2018 2021
## 11094 2018-06-28 2021-06-28 2018 2021
## 11095 2018-07-04 2021-07-03 2018 2021
## 11096 2018-08-31 2021-08-30 2018 2021
## 11097 2018-09-15 2021-09-14 2018 2021
## 11098 2018-01-07 2021-01-06 2018 2021
## 11099 2018-08-08 2021-08-05 2018 2021
## 11100 2018-02-13 2021-02-13 2018 2021
## 11101 2018-02-28 2020-03-22 2018 2020
## 11102 2018-06-30 2021-06-29 2018 2021
## 11103 2018-10-29 2021-10-28 2018 2021
## 11104 2018-09-05 2021-09-04 2018 2021
## 11105 2018-01-31 2021-01-30 2018 2021
## 11106 2018-06-14 2021-06-14 2018 2021
## 11107 2018-09-07 2021-09-06 2018 2021
## 11108 2018-09-10 2021-09-10 2018 2021
## 11109 2018-08-14 2021-08-13 2018 2021
## 11110 2018-09-03 2021-09-02 2018 2021
## 11111 2017-11-13 2020-11-12 2017 2020
## 11112 2018-09-14 2021-09-13 2018 2021
## 11113 2018-05-27 2021-05-26 2018 2021
## 11114 2018-04-19 2021-04-18 2018 2021
## 11115 2018-08-20 2021-08-19 2018 2021
## 11116 2018-09-15 2021-09-15 2018 2021
## 11117 2018-01-11 2021-01-08 2018 2021
## 11118 2018-10-31 2020-03-03 2018 2020
## 11119 2018-09-30 2021-09-29 2018 2021
## 11120 2017-12-03 2020-12-03 2017 2020
## 11121 2018-08-14 2021-08-13 2018 2021
## 11122 2018-01-15 2021-01-14 2018 2021
## 11123 2018-01-01 2021-01-01 2018 2021
## 11124 2017-10-05 2020-10-03 2017 2020
## 11125 2018-09-06 2021-09-05 2018 2021
## 11126 2018-08-30 2021-08-30 2018 2021
## 11127 2018-06-24 2021-06-24 2018 2021
## 11128 2018-08-03 2021-08-03 2018 2021
## 11129 2018-08-30 2021-08-29 2018 2021
## 11130 2018-09-05 2021-09-05 2018 2021
## 11131 2018-07-22 2021-07-21 2018 2021
## 11132 2018-08-18 2021-08-17 2018 2021
## 11133 2018-09-06 2021-09-05 2018 2021
## 11134 2018-09-05 2021-09-04 2018 2021
## 11135 2018-08-30 2021-08-30 2018 2021
## 11136 2018-08-16 2021-08-15 2018 2021
## 11137 2018-09-03 2021-09-02 2018 2021
## 11138 2018-02-19 2019-02-18 2018 2019
## 11139 2018-05-06 2021-05-05 2018 2021
## 11140 2018-04-28 2021-04-25 2018 2021
## 11141 2018-09-17 2021-09-16 2018 2021
## 11142 2018-10-07 2021-10-06 2018 2021
## 11143 2018-09-08 2021-09-07 2018 2021
## 11144 2018-05-29 2021-05-28 2018 2021
## 11145 2018-06-11 2021-06-10 2018 2021
## 11146 2018-12-30 2021-12-29 2018 2021
## 11147 2018-08-23 2021-08-22 2018 2021
## 11148 2017-12-25 2020-12-24 2017 2020
## 11149 2018-02-25 2020-12-30 2018 2020
## 11150 2018-09-01 2021-09-01 2018 2021
## 11151 2018-09-19 2021-09-19 2018 2021
## 11152 2018-09-17 2021-09-16 2018 2021
## 11153 2018-07-22 2021-07-19 2018 2021
## 11154 2018-02-18 2021-02-18 2018 2021
## 11155 2018-08-31 2021-08-30 2018 2021
## 11156 2018-08-07 2021-06-29 2018 2021
## 11157 2018-09-14 2021-09-14 2018 2021
## 11158 2018-03-31 2021-03-30 2018 2021
## 11159 2018-08-01 2021-08-01 2018 2021
## 11160 2018-08-19 2021-08-18 2018 2021
## 11161 2018-09-09 2021-09-08 2018 2021
## 11162 2018-09-07 2021-09-06 2018 2021
## 11163 2018-09-16 2021-09-16 2018 2021
## 11164 2018-03-08 2019-09-29 2018 2019
## 11165 2017-10-31 2020-10-30 2017 2020
## 11166 2018-06-14 2021-06-14 2018 2021
## 11167 2018-01-28 2021-01-27 2018 2021
## 11168 2017-11-12 2020-11-11 2017 2020
## 11169 2017-10-22 2020-08-09 2017 2020
## 11170 2018-07-22 2021-07-21 2018 2021
## 11171 2018-02-28 2021-02-27 2018 2021
## 11172 2018-09-06 2019-10-27 2018 2019
## 11173 2018-09-04 2021-09-03 2018 2021
## 11174 2017-12-04 2020-12-04 2017 2020
## 11175 2017-10-15 2020-10-14 2017 2020
## 11176 2018-09-03 2021-09-03 2018 2021
## 11177 2018-09-07 2021-09-06 2018 2021
## 11178 2018-02-28 2021-02-27 2018 2021
## 11179 2018-01-30 2021-01-29 2018 2021
## 11180 2018-09-19 2021-09-18 2018 2021
## 11181 2018-06-30 2021-06-29 2018 2021
## 11182 2017-11-05 2020-11-04 2017 2020
## 11183 2018-09-14 2021-09-13 2018 2021
## 11184 2018-02-11 2021-02-10 2018 2021
## 11185 2018-03-12 2021-03-12 2018 2021
## 11186 2018-01-31 2020-12-30 2018 2020
## 11187 2018-08-31 2021-08-31 2018 2021
## 11188 2018-09-20 2021-09-20 2018 2021
## 11189 2018-08-07 2021-08-06 2018 2021
## 11190 2018-07-31 2021-07-24 2018 2021
## 11191 2018-09-06 2021-09-05 2018 2021
## 11192 2018-04-02 2019-12-17 2018 2019
## 11193 2017-11-12 2020-11-11 2017 2020
## 11194 2018-07-29 2018-10-17 2018 2018
## 11195 2018-08-09 2021-08-08 2018 2021
## 11196 2018-08-20 2021-08-20 2018 2021
## 11197 2018-09-06 2021-09-05 2018 2021
## 11198 2018-08-31 2021-08-30 2018 2021
## 11199 2018-03-18 2021-03-15 2018 2021
## 11200 2018-08-24 2021-08-23 2018 2021
## 11201 2018-09-06 2021-09-05 2018 2021
## 11202 2018-02-11 2021-02-10 2018 2021
## 11203 2018-01-15 2021-01-14 2018 2021
## 11204 2018-03-08 2021-03-08 2018 2021
## 11205 2018-08-08 2021-08-07 2018 2021
## 11206 2018-04-30 2021-04-30 2018 2021
## 11207 2018-02-20 2020-05-30 2018 2020
## 11208 2018-09-12 2021-09-12 2018 2021
## 11209 2018-08-31 2021-08-30 2018 2021
## 11210 2018-08-25 2021-08-24 2018 2021
## 11211 2018-09-15 2021-09-14 2018 2021
## 11212 2018-07-24 2021-07-23 2018 2021
## 11213 2018-07-27 2021-07-26 2018 2021
## 11214 2018-06-14 2021-06-14 2018 2021
## 11215 2018-08-05 2021-08-02 2018 2021
## 11216 2018-07-10 2021-07-09 2018 2021
## 11217 2018-08-31 2021-08-31 2018 2021
## 11218 2018-07-04 2021-07-03 2018 2021
## 11219 2018-08-26 2021-08-25 2018 2021
## 11220 2018-09-09 2021-09-09 2018 2021
## 11221 2018-08-26 2021-08-25 2018 2021
## 11222 2018-08-20 2021-08-19 2018 2021
## 11223 2018-03-14 2021-03-13 2018 2021
## 11224 2018-09-06 2021-09-05 2018 2021
## 11225 2018-08-19 2021-08-18 2018 2021
## 11226 2018-08-31 2021-08-31 2018 2021
## 11227 2018-10-25 2021-10-24 2018 2021
## 11228 2018-08-27 2021-08-26 2018 2021
## 11229 2018-12-19 2021-12-19 2018 2021
## 11230 2018-05-28 2020-12-15 2018 2020
## 11231 2018-08-09 2021-08-09 2018 2021
## 11232 2018-04-01 2020-04-01 2018 2020
## 11233 2018-09-17 2021-09-17 2018 2021
## 11234 2018-08-03 2021-08-02 2018 2021
## 11235 2017-10-23 2020-10-22 2017 2020
## 11236 2018-06-02 2021-06-01 2018 2021
## 11237 2018-04-27 2021-04-26 2018 2021
## 11238 2018-08-19 2021-08-19 2018 2021
## 11239 2018-08-23 2021-08-22 2018 2021
## 11240 2018-03-11 2021-03-10 2018 2021
## 11241 2018-09-11 2021-09-10 2018 2021
## 11242 2018-09-06 2021-09-05 2018 2021
## 11243 2018-09-20 2021-09-19 2018 2021
## 11244 2017-10-15 2020-10-14 2017 2020
## 11245 2018-12-31 2021-12-30 2018 2021
## 11246 2018-08-19 2021-08-18 2018 2021
## 11247 2018-09-10 2021-09-09 2018 2021
## 11248 2018-08-26 2021-08-25 2018 2021
## 11249 2018-08-04 2021-08-03 2018 2021
## 11250 2018-08-05 2020-11-04 2018 2020
## 11251 2018-08-31 2021-08-31 2018 2021
## 11252 2018-07-08 2021-07-07 2018 2021
## 11253 2018-05-06 2021-05-05 2018 2021
## 11254 2018-05-15 2021-05-14 2018 2021
## 11255 2018-08-18 2021-08-17 2018 2021
## 11256 2018-09-12 2021-09-12 2018 2021
## 11257 2018-07-12 2021-07-11 2018 2021
## 11258 2018-03-25 2020-05-19 2018 2020
## 11259 2018-02-11 2021-02-10 2018 2021
## 11260 2018-04-01 2021-03-31 2018 2021
## 11261 2018-04-05 2021-04-05 2018 2021
## 11262 2018-03-22 2019-04-23 2018 2019
## 11263 2018-09-10 2021-09-09 2018 2021
## 11264 2018-09-06 2021-09-05 2018 2021
## 11265 2018-09-21 2021-09-21 2018 2021
## 11266 2018-08-09 2021-08-08 2018 2021
## 11267 2018-01-08 2021-01-07 2018 2021
## 11268 2018-02-28 2021-02-25 2018 2021
## 11269 2018-08-30 2021-08-30 2018 2021
## 11270 2018-08-31 2021-08-31 2018 2021
## 11271 2018-05-13 2021-02-27 2018 2021
## 11272 2018-05-20 2019-12-30 2018 2019
## 11273 2018-06-25 2021-06-25 2018 2021
## 11274 2018-07-14 2021-07-13 2018 2021
## 11275 2017-12-10 2020-12-09 2017 2020
## 11276 2018-08-24 2021-08-24 2018 2021
## 11277 2018-08-10 2021-08-09 2018 2021
## 11278 2018-09-04 2021-09-03 2018 2021
## 11279 2018-10-30 2021-10-27 2018 2021
## 11280 2018-07-27 2021-07-26 2018 2021
## 11281 2018-03-17 2021-03-16 2018 2021
## 11282 2018-08-05 2021-08-04 2018 2021
## 11283 2018-09-30 2021-09-29 2018 2021
## 11284 2018-02-19 2021-02-18 2018 2021
## 11285 2018-09-17 2020-09-29 2018 2020
## 11286 2018-07-12 2021-07-11 2018 2021
## 11287 2018-03-22 2021-03-21 2018 2021
## 11288 2018-06-13 2020-08-19 2018 2020
## 11289 2018-08-05 2021-08-04 2018 2021
## 11290 2018-05-23 2021-05-22 2018 2021
## 11291 2018-03-04 2021-03-03 2018 2021
## 11292 2018-04-30 2021-04-30 2018 2021
## 11293 2018-08-23 2021-08-22 2018 2021
## 11294 2018-08-30 2021-08-29 2018 2021
## 11295 2018-09-09 2021-09-09 2018 2021
## 11296 2017-11-08 2020-11-08 2017 2020
## 11297 2018-03-04 2021-03-03 2018 2021
## 11298 2018-07-31 2021-07-30 2018 2021
## 11299 2018-09-07 2021-09-07 2018 2021
## 11300 2017-12-10 2020-12-09 2017 2020
## 11301 2018-07-31 2021-07-30 2018 2021
## 11302 2018-03-28 2021-03-27 2018 2021
## 11303 2018-08-27 2021-08-26 2018 2021
## 11304 2018-07-18 2021-07-17 2018 2021
## 11305 2018-08-22 2021-08-21 2018 2021
## 11306 2017-10-04 2018-09-03 2017 2018
## 11307 2018-09-04 2021-09-04 2018 2021
## 11308 2017-10-31 2020-10-31 2017 2020
## 11309 2018-08-31 2021-08-30 2018 2021
## 11310 2018-08-21 2021-08-21 2018 2021
## 11311 2018-02-28 2018-03-30 2018 2018
## 11312 2018-08-24 2021-08-23 2018 2021
## 11313 2018-09-06 2021-09-05 2018 2021
## 11314 2018-09-12 2021-03-08 2018 2021
## 11315 2018-09-16 2021-09-15 2018 2021
## 11316 2018-08-26 2021-08-25 2018 2021
## 11317 2018-09-03 2021-09-02 2018 2021
## 11318 2018-09-11 2021-09-10 2018 2021
## 11319 2018-01-01 2020-12-31 2018 2020
## 11320 2018-02-28 2020-06-14 2018 2020
## 11321 2018-09-22 2021-09-22 2018 2021
## 11322 2018-08-19 2021-08-18 2018 2021
## 11323 2018-05-16 2021-05-15 2018 2021
## 11324 2018-04-08 2021-04-07 2018 2021
## 11325 2018-09-13 2021-09-12 2018 2021
## 11326 2018-04-15 2021-04-14 2018 2021
## 11327 2018-05-23 2021-05-22 2018 2021
## 11328 2018-02-14 2021-02-13 2018 2021
## 11329 2018-09-14 2021-09-14 2018 2021
## 11330 2018-01-14 2021-01-13 2018 2021
## 11331 2018-02-28 2021-02-27 2018 2021
## 11332 2018-09-11 2021-09-10 2018 2021
## 11333 2018-05-16 2021-05-15 2018 2021
## 11334 2018-09-18 2021-09-17 2018 2021
## 11335 2018-08-13 2021-08-13 2018 2021
## 11336 2017-12-29 2020-12-28 2017 2020
## 11337 2018-09-17 2021-09-16 2018 2021
## 11338 2018-09-15 2021-09-15 2018 2021
## 11339 2018-02-09 2021-02-09 2018 2021
## 11340 2018-09-02 2021-09-01 2018 2021
## 11341 2018-09-30 2020-04-27 2018 2020
## 11342 2018-09-06 2021-09-06 2018 2021
## 11343 2018-09-15 2019-01-21 2018 2019
## 11344 2018-02-19 2021-02-18 2018 2021
## 11345 2017-10-15 2020-10-15 2017 2020
## 11346 2018-08-11 2021-08-10 2018 2021
## 11347 2018-06-30 2021-06-29 2018 2021
## 11348 2017-10-10 2020-10-09 2017 2020
## 11349 2019-01-08 2022-01-07 2019 2022
## 11350 2018-09-11 2021-09-10 2018 2021
## 11351 2018-09-09 2021-09-08 2018 2021
## 11352 2017-10-30 2020-10-29 2017 2020
## 11353 2018-08-12 2021-08-11 2018 2021
## 11354 2018-07-31 2021-07-31 2018 2021
## 11355 2018-06-10 2021-06-09 2018 2021
## 11356 2018-03-11 2021-03-10 2018 2021
## 11357 2018-09-19 2021-09-18 2018 2021
## 11358 2018-08-25 2021-08-24 2018 2021
## 11359 2018-07-15 2021-07-14 2018 2021
## 11360 2018-10-14 2021-10-13 2018 2021
## 11361 2019-01-01 2021-12-31 2019 2021
## 11362 2018-08-27 2021-08-26 2018 2021
## 11363 2018-11-02 2019-12-03 2018 2019
## 11364 2017-10-29 2020-10-28 2017 2020
## 11365 2018-02-15 2021-02-14 2018 2021
## 11366 2018-06-14 2021-06-14 2018 2021
## 11367 2018-01-30 2020-01-29 2018 2020
## 11368 2018-08-19 2021-08-18 2018 2021
## 11369 2017-12-24 2020-12-23 2017 2020
## 11370 2018-01-03 2021-01-02 2018 2021
## 11371 2018-04-05 2021-04-04 2018 2021
## 11372 2018-04-30 2021-04-30 2018 2021
## 11373 2018-04-01 2021-04-01 2018 2021
## 11374 2018-12-20 2021-12-19 2018 2021
## 11375 2017-11-30 2020-11-29 2017 2020
## 11376 2018-03-19 2021-03-19 2018 2021
## 11377 2017-11-06 2018-12-21 2017 2018
## 11378 2018-08-02 2021-08-01 2018 2021
## 11379 2018-06-14 2021-06-14 2018 2021
## 11380 2018-09-16 2021-08-29 2018 2021
## 11381 2018-01-02 2020-12-31 2018 2020
## 11382 2018-04-15 2021-04-14 2018 2021
## 11383 2018-07-31 2021-07-30 2018 2021
## 11384 2017-11-15 2020-11-08 2017 2020
## 11385 2018-06-28 2021-06-27 2018 2021
## 11386 2018-08-31 2018-12-30 2018 2018
## 11387 2018-09-01 2021-08-31 2018 2021
## 11388 2018-07-31 2021-07-30 2018 2021
## 11389 2018-09-04 2021-09-04 2018 2021
## 11390 2018-09-14 2021-09-13 2018 2021
## 11391 2018-12-05 2021-12-04 2018 2021
## 11392 2018-01-17 2021-01-16 2018 2021
## 11393 2018-08-22 2021-08-22 2018 2021
## 11394 2018-02-11 2021-02-10 2018 2021
## 11395 2019-01-31 2022-01-30 2019 2022
## 11396 2018-07-09 2021-07-08 2018 2021
## 11397 2018-05-27 2021-05-26 2018 2021
## 11398 2018-09-05 2021-09-05 2018 2021
## 11399 2018-07-08 2021-07-07 2018 2021
## 11400 2017-12-31 2020-12-31 2017 2020
## 11401 2018-08-14 2021-08-13 2018 2021
## 11402 2018-06-30 2021-06-29 2018 2021
## 11403 2018-03-11 2021-03-10 2018 2021
## 11404 2018-02-11 2021-02-11 2018 2021
## 11405 2017-10-24 2020-10-24 2017 2020
## 11406 2018-03-27 2021-03-24 2018 2021
## 11407 2018-09-10 2021-09-09 2018 2021
## 11408 2018-08-29 2021-08-28 2018 2021
## 11409 2018-03-27 2021-03-26 2018 2021
## 11410 2018-10-12 2021-10-11 2018 2021
## 11411 2018-08-31 2021-08-30 2018 2021
## 11412 2018-09-13 2021-09-13 2018 2021
## 11413 2018-09-25 2019-09-29 2018 2019
## 11414 2018-07-31 2021-07-30 2018 2021
## 11415 2018-08-14 2021-08-14 2018 2021
## 11416 2018-04-15 2021-04-14 2018 2021
## 11417 2018-08-26 2021-08-25 2018 2021
## 11418 2018-09-02 2021-09-01 2018 2021
## 11419 2018-08-09 2021-08-08 2018 2021
## 11420 2018-05-12 2021-05-09 2018 2021
## 11421 2018-08-01 2021-07-31 2018 2021
## 11422 2018-09-12 2021-09-12 2018 2021
## 11423 2018-09-06 2021-09-06 2018 2021
## 11424 2018-07-01 2021-06-30 2018 2021
## 11425 2018-09-13 2021-09-13 2018 2021
## 11426 2018-08-31 2021-08-30 2018 2021
## 11427 2018-09-23 2021-09-22 2018 2021
## 11428 2018-11-29 2021-11-28 2018 2021
## 11429 2018-09-17 2021-09-16 2018 2021
## 11430 2018-05-06 2021-05-06 2018 2021
## 11431 2018-07-01 2021-06-30 2018 2021
## 11432 2018-07-26 2021-07-25 2018 2021
## 11433 2018-04-22 2021-04-22 2018 2021
## 11434 2018-03-12 2021-03-11 2018 2021
## 11435 2018-05-07 2021-05-06 2018 2021
## 11436 2018-03-18 2021-03-17 2018 2021
## 11437 2018-07-31 2021-07-31 2018 2021
## 11438 2018-08-11 2021-08-10 2018 2021
## 11439 2017-12-14 2020-12-13 2017 2020
## 11440 2018-09-09 2021-09-08 2018 2021
## 11441 2018-07-31 2021-07-30 2018 2021
## 11442 2018-09-18 2021-09-18 2018 2021
## 11443 2018-09-09 2021-09-08 2018 2021
## 11444 2018-08-16 2021-08-16 2018 2021
## 11445 2017-12-28 2020-12-28 2017 2020
## 11446 2018-04-30 2021-04-30 2018 2021
## 11447 2018-02-25 2021-02-25 2018 2021
## 11448 2018-08-30 2021-08-29 2018 2021
## 11449 2018-06-30 2021-06-29 2018 2021
## 11450 2018-09-24 2021-09-23 2018 2021
## 11451 2018-07-19 2021-07-18 2018 2021
## 11452 2018-09-30 2021-09-29 2018 2021
## 11453 2018-06-14 2021-06-14 2018 2021
## 11454 2018-04-14 2021-04-13 2018 2021
## 11455 2018-02-03 2021-02-03 2018 2021
## 11456 2018-08-06 2021-08-06 2018 2021
## 11457 2018-07-01 2021-05-30 2018 2021
## 11458 2018-07-17 2021-07-14 2018 2021
## 11459 2018-04-29 2021-04-28 2018 2021
## 11460 2017-10-04 2020-10-04 2017 2020
## 11461 2018-08-13 2021-08-13 2018 2021
## 11462 2018-06-14 2021-06-14 2018 2021
## 11463 2017-10-01 2020-10-01 2017 2020
## 11464 2018-07-29 2021-07-29 2018 2021
## 11465 2018-09-02 2021-09-02 2018 2021
## 11466 2018-04-29 2021-04-28 2018 2021
## 11467 2018-07-31 2021-07-31 2018 2021
## 11468 2018-08-27 2021-08-26 2018 2021
## 11469 2018-08-23 2021-08-22 2018 2021
## 11470 2018-05-08 2021-05-07 2018 2021
## 11471 2018-07-31 2021-07-30 2018 2021
## 11472 2018-03-14 2021-03-13 2018 2021
## 11473 2018-05-28 2021-05-28 2018 2021
## 11474 2018-09-13 2021-09-12 2018 2021
## 11475 2018-09-02 2021-09-01 2018 2021
## 11476 2018-05-21 2021-05-21 2018 2021
## 11477 2018-08-27 2021-08-27 2018 2021
## 11478 2018-06-19 2019-03-18 2018 2019
## 11479 2018-08-31 2021-08-31 2018 2021
## 11480 2018-06-03 2021-06-03 2018 2021
## 11481 2018-09-10 2021-08-09 2018 2021
## 11482 2017-11-14 2020-11-13 2017 2020
## 11483 2018-08-31 2021-03-30 2018 2021
## 11484 2018-08-11 2021-08-11 2018 2021
## 11485 2018-09-17 2021-09-17 2018 2021
## 11486 2018-01-11 2021-01-11 2018 2021
## 11487 2018-09-02 2021-09-01 2018 2021
## 11488 2018-07-15 2021-07-15 2018 2021
## 11489 2018-09-03 2021-09-02 2018 2021
## 11490 2017-10-29 2020-10-28 2017 2020
## 11491 2018-06-30 2021-06-29 2018 2021
## 11492 2018-09-14 2021-09-13 2018 2021
## 11493 2018-12-31 2020-12-30 2018 2020
## 11494 2018-05-26 2021-05-25 2018 2021
## 11495 2018-09-12 2021-09-12 2018 2021
## 11496 2018-09-13 2021-09-12 2018 2021
## 11497 2018-08-31 2021-08-31 2018 2021
## 11498 2018-07-21 2021-07-21 2018 2021
## 11499 2018-07-15 2021-07-15 2018 2021
## 11500 2018-07-27 2021-07-26 2018 2021
## 11501 2018-07-31 2021-07-30 2018 2021
## 11502 2018-09-14 2020-09-13 2018 2020
## 11503 2018-08-24 2021-08-23 2018 2021
## 11504 2018-08-19 2021-08-19 2018 2021
## 11505 2018-07-05 2021-07-05 2018 2021
## 11506 2018-09-30 2021-09-29 2018 2021
## 11507 2018-09-16 2021-09-13 2018 2021
## 11508 2018-09-19 2021-09-19 2018 2021
## 11509 2018-08-14 2021-08-13 2018 2021
## 11510 2018-04-30 2020-08-30 2018 2020
## 11511 2018-09-05 2021-09-04 2018 2021
## 11512 2018-09-19 2021-09-18 2018 2021
## 11513 2018-08-29 2021-08-29 2018 2021
## 11514 2018-08-14 2021-08-13 2018 2021
## 11515 2018-11-30 2021-11-29 2018 2021
## 11516 2018-10-04 2021-10-01 2018 2021
## 11517 2018-07-27 2021-07-26 2018 2021
## 11518 2018-09-03 2021-09-03 2018 2021
## 11519 2018-09-09 2020-09-29 2018 2020
## 11520 2018-06-18 2021-06-18 2018 2021
## 11521 2018-06-17 2021-06-16 2018 2021
## 11522 2018-05-17 2021-05-14 2018 2021
## 11523 2018-09-03 2021-09-02 2018 2021
## 11524 2018-09-16 2021-09-15 2018 2021
## 11525 2018-04-30 2021-04-29 2018 2021
## 11526 2018-07-23 2021-07-22 2018 2021
## 11527 2018-09-18 2021-09-17 2018 2021
## 11528 2018-04-10 2021-04-10 2018 2021
## 11529 2018-12-21 2021-12-21 2018 2021
## 11530 2018-08-13 2021-08-12 2018 2021
## 11531 2018-08-12 2021-08-12 2018 2021
## 11532 2018-05-23 2021-05-23 2018 2021
## 11533 2018-09-07 2021-09-07 2018 2021
## 11534 2018-06-14 2021-06-14 2018 2021
## 11535 2018-08-14 2021-08-13 2018 2021
## 11536 2018-11-05 2021-11-04 2018 2021
## 11537 2018-04-10 2021-04-09 2018 2021
## 11538 2018-09-19 2021-09-19 2018 2021
## 11539 2018-09-03 2021-09-02 2018 2021
## 11540 2018-06-29 2021-06-28 2018 2021
## 11541 2018-03-07 2021-03-06 2018 2021
## 11542 2018-07-11 2021-07-10 2018 2021
## 11543 2018-08-02 2021-08-02 2018 2021
## 11544 2018-08-31 2021-08-30 2018 2021
## 11545 2018-04-03 2021-04-02 2018 2021
## 11546 2018-04-12 2020-05-05 2018 2020
## 11547 2018-07-04 2021-07-03 2018 2021
## 11548 2018-06-30 2021-06-30 2018 2021
## 11549 2018-01-31 2021-01-30 2018 2021
## 11550 2018-08-31 2021-08-31 2018 2021
## 11551 2018-07-29 2021-07-28 2018 2021
## 11552 2018-08-28 2021-08-27 2018 2021
## 11553 2018-09-16 2021-09-15 2018 2021
## 11554 2018-09-17 2021-09-16 2018 2021
## 11555 2018-07-15 2021-07-15 2018 2021
## 11556 2017-10-18 2020-10-17 2017 2020
## 11557 2017-11-19 2020-11-18 2017 2020
## 11558 2017-10-08 2020-10-07 2017 2020
## 11559 2018-09-14 2021-09-13 2018 2021
## 11560 2018-07-12 2021-07-11 2018 2021
## 11561 2017-11-19 2020-11-18 2017 2020
## 11562 2018-09-30 2021-06-04 2018 2021
## 11563 2018-01-31 2021-01-31 2018 2021
## 11564 2018-04-03 2021-04-01 2018 2021
## 11565 2018-05-13 2021-05-12 2018 2021
## 11566 2018-02-04 2019-05-14 2018 2019
## 11567 2018-08-30 2021-08-27 2018 2021
## 11568 2018-01-23 2020-01-22 2018 2020
## 11569 2018-09-13 2021-09-13 2018 2021
## 11570 2018-08-31 2021-08-31 2018 2021
## 11571 2018-08-16 2021-08-15 2018 2021
## 11572 2018-04-23 2021-04-22 2018 2021
## 11573 2018-07-27 2021-07-26 2018 2021
## 11574 2018-08-13 2021-08-13 2018 2021
## 11575 2018-02-28 2021-02-28 2018 2021
## 11576 2017-10-29 2020-10-28 2017 2020
## 11577 2018-09-18 2021-09-18 2018 2021
## 11578 2018-02-04 2021-02-03 2018 2021
## 11579 2018-02-06 2021-02-05 2018 2021
## 11580 2019-03-19 2022-03-18 2019 2022
## 11581 2018-04-30 2019-04-29 2018 2019
## 11582 2018-07-27 2021-07-26 2018 2021
## 11583 2018-07-05 2021-07-04 2018 2021
## 11584 2018-09-04 2021-09-03 2018 2021
## 11585 2018-07-01 2021-06-30 2018 2021
## 11586 2018-01-28 2021-01-27 2018 2021
## 11587 2018-05-31 2021-05-30 2018 2021
## 11588 2018-09-12 2021-09-11 2018 2021
## 11589 2018-07-27 2021-07-26 2018 2021
## 11590 2018-08-08 2021-08-07 2018 2021
## 11591 2018-03-11 2021-03-10 2018 2021
## 11592 2018-09-16 2021-09-16 2018 2021
## 11593 2018-07-14 2020-07-13 2018 2020
## 11594 2018-08-26 2021-08-26 2018 2021
## 11595 2018-09-10 2021-09-10 2018 2021
## 11596 2018-08-19 2021-08-19 2018 2021
## 11597 2018-08-26 2021-08-25 2018 2021
## 11598 2018-08-31 2021-08-29 2018 2021
## 11599 2018-09-05 2021-09-04 2018 2021
## 11600 2018-09-18 2021-09-18 2018 2021
## 11601 2018-02-14 2021-02-13 2018 2021
## 11602 2018-03-14 2018-08-30 2018 2018
## 11603 2018-09-30 2021-09-29 2018 2021
## 11604 2017-12-13 2020-12-13 2017 2020
## 11605 2018-06-03 2021-06-03 2018 2021
## 11606 2018-05-08 2021-05-07 2018 2021
## 11607 2018-01-31 2021-01-31 2018 2021
## 11608 2018-08-12 2021-03-25 2018 2021
## 11609 2018-07-30 2021-07-29 2018 2021
## 11610 2017-11-13 2020-11-12 2017 2020
## 11611 2018-08-13 2021-08-12 2018 2021
## 11612 2018-07-28 2021-07-27 2018 2021
## 11613 2018-04-25 2021-04-24 2018 2021
## 11614 2018-08-30 2021-08-29 2018 2021
## 11615 2018-05-06 2021-05-06 2018 2021
## 11616 2018-08-31 2021-08-30 2018 2021
## 11617 2018-11-11 2021-11-10 2018 2021
## 11618 2018-01-15 2021-01-14 2018 2021
## 11619 2018-07-01 2021-06-28 2018 2021
## 11620 2018-08-12 2021-08-11 2018 2021
## 11621 2018-06-29 2021-06-28 2018 2021
## 11622 2018-06-14 2021-06-14 2018 2021
## 11623 2018-09-13 2021-09-12 2018 2021
## 11624 2018-01-17 2021-01-16 2018 2021
## 11625 2018-09-11 2021-09-10 2018 2021
## 11626 2018-05-31 2021-05-30 2018 2021
## 11627 2017-11-14 2019-09-10 2017 2019
## 11628 2019-02-28 2022-02-25 2019 2022
## 11629 2018-07-15 2021-07-14 2018 2021
## 11630 2018-05-31 2021-05-30 2018 2021
## 11631 2018-06-10 2021-06-09 2018 2021
## 11632 2018-07-31 2021-07-30 2018 2021
## 11633 2018-12-14 2021-12-13 2018 2021
## 11634 2018-08-30 2021-08-29 2018 2021
## 11635 2018-07-08 2021-07-07 2018 2021
## 11636 2018-02-06 2021-02-06 2018 2021
## 11637 2018-09-11 2021-08-27 2018 2021
## 11638 2018-09-06 2021-09-05 2018 2021
## 11639 2018-03-25 2021-03-22 2018 2021
## 11640 2018-08-14 2021-08-13 2018 2021
## 11641 2018-01-03 2021-01-01 2018 2021
## 11642 2018-07-31 2021-07-30 2018 2021
## 11643 2018-09-30 2021-09-29 2018 2021
## 11644 2018-09-03 2021-09-02 2018 2021
## 11645 2018-06-30 2021-06-29 2018 2021
## 11646 2017-11-26 2020-11-25 2017 2020
## 11647 2018-09-04 2021-09-04 2018 2021
## 11648 2018-02-27 2021-02-21 2018 2021
## 11649 2018-08-08 2021-08-08 2018 2021
## 11650 2018-03-15 2021-03-14 2018 2021
## 11651 2017-12-04 2020-12-04 2017 2020
## 11652 2018-09-08 2021-09-07 2018 2021
## 11653 2018-09-17 2021-09-16 2018 2021
## 11654 2018-08-16 2021-08-15 2018 2021
## 11655 2017-11-19 2020-11-19 2017 2020
## 11656 2018-07-29 2021-07-26 2018 2021
## 11657 2018-05-26 2021-05-23 2018 2021
## 11658 2017-10-14 2017-11-18 2017 2017
## 11659 2018-08-10 2021-08-09 2018 2021
## 11660 2017-12-03 2020-12-02 2017 2020
## 11661 2018-09-11 2021-09-10 2018 2021
## 11662 2018-08-31 2020-12-29 2018 2020
## 11663 2018-09-26 2021-09-25 2018 2021
## 11664 2018-07-20 2021-07-20 2018 2021
## 11665 2018-09-07 2021-09-06 2018 2021
## 11666 2018-09-06 2021-09-04 2018 2021
## 11667 2018-09-06 2021-09-05 2018 2021
## 11668 2018-06-23 2021-06-20 2018 2021
## 11669 2017-12-17 2020-12-16 2017 2020
## 11670 2018-09-10 2021-09-10 2018 2021
## 11671 2018-09-09 2021-09-09 2018 2021
## 11672 2018-09-13 2021-09-12 2018 2021
## 11673 2018-08-28 2021-08-27 2018 2021
## 11674 2018-08-31 2021-08-30 2018 2021
## 11675 2018-09-01 2021-09-01 2018 2021
## 11676 2018-08-23 2021-08-23 2018 2021
## 11677 2018-08-31 2021-08-30 2018 2021
## 11678 2018-06-29 2021-06-28 2018 2021
## 11679 2018-09-11 2021-09-10 2018 2021
## 11680 2018-04-01 2021-03-31 2018 2021
## 11681 2018-09-10 2021-09-09 2018 2021
## 11682 2018-06-14 2021-06-13 2018 2021
## 11683 2018-06-17 2021-06-16 2018 2021
## 11684 2018-06-14 2021-06-14 2018 2021
## 11685 2018-08-31 2021-08-30 2018 2021
## 11686 2019-01-31 2022-01-30 2019 2022
## 11687 2018-08-14 2021-08-14 2018 2021
## 11688 2018-09-03 2021-09-02 2018 2021
## 11689 2018-01-01 2020-12-31 2018 2020
## 11690 2017-10-15 2020-10-14 2017 2020
## 11691 2018-08-30 2021-08-29 2018 2021
## 11692 2018-07-29 2021-07-28 2018 2021
## 11693 2018-10-17 2021-10-17 2018 2021
## 11694 2018-09-14 2021-09-14 2018 2021
## 11695 2017-10-29 2020-10-28 2017 2020
## 11696 2018-09-04 2021-09-03 2018 2021
## 11697 2018-01-17 2021-01-17 2018 2021
## 11698 2018-07-26 2021-07-25 2018 2021
## 11699 2018-12-16 2021-12-15 2018 2021
## 11700 2018-08-31 2021-08-30 2018 2021
## 11701 2018-08-12 2021-08-11 2018 2021
## 11702 2018-05-10 2021-05-10 2018 2021
## 11703 2018-01-21 2021-01-21 2018 2021
## 11704 2018-08-26 2021-08-26 2018 2021
## 11705 2018-09-16 2021-09-15 2018 2021
## 11706 2018-01-01 2021-01-01 2018 2021
## 11707 2018-08-10 2021-08-09 2018 2021
## 11708 2017-10-19 2020-10-18 2017 2020
## 11709 2018-08-01 2021-07-31 2018 2021
## 11710 2018-08-15 2021-08-12 2018 2021
## 11711 2017-10-22 2020-10-21 2017 2020
## 11712 2018-09-11 2021-09-10 2018 2021
## 11713 2018-08-19 2021-08-18 2018 2021
## 11714 2018-08-25 2021-08-24 2018 2021
## 11715 2018-07-15 2021-07-14 2018 2021
## 11716 2018-08-23 2021-08-22 2018 2021
## 11717 2018-04-24 2021-04-24 2018 2021
## 11718 2018-08-05 2021-08-04 2018 2021
## 11719 2018-06-14 2021-06-14 2018 2021
## 11720 2018-07-31 2021-07-30 2018 2021
## 11721 2018-08-05 2021-08-05 2018 2021
## 11722 2018-07-11 2021-07-11 2018 2021
## 11723 2017-12-25 2020-12-24 2017 2020
## 11724 2018-06-14 2021-06-14 2018 2021
## 11725 2018-09-26 2021-09-26 2018 2021
## 11726 2018-03-11 2021-03-11 2018 2021
## 11727 2019-03-05 2022-03-04 2019 2022
## 11728 2018-06-30 2021-06-29 2018 2021
## 11729 2017-10-02 2020-10-02 2017 2020
## 11730 2018-04-22 2021-04-21 2018 2021
## 11731 2018-01-09 2021-01-09 2018 2021
## 11732 2018-09-23 2021-09-22 2018 2021
## 11733 2018-02-04 2021-02-03 2018 2021
## 11734 2018-09-07 2021-09-07 2018 2021
## 11735 2018-09-19 2021-09-19 2018 2021
## 11736 2018-08-14 2021-08-13 2018 2021
## 11737 2018-09-17 2021-09-17 2018 2021
## 11738 2018-09-05 2021-09-04 2018 2021
## 11739 2018-09-30 2021-09-29 2018 2021
## 11740 2018-03-27 2021-03-26 2018 2021
## 11741 2018-06-18 2020-02-04 2018 2020
## 11742 2018-03-22 2021-03-21 2018 2021
## 11743 2018-03-04 2020-10-05 2018 2020
## 11744 2018-09-09 2021-09-08 2018 2021
## 11745 2018-08-31 2021-08-30 2018 2021
## 11746 2018-06-30 2021-06-29 2018 2021
## 11747 2018-06-30 2021-06-30 2018 2021
## 11748 2018-07-26 2021-07-26 2018 2021
## 11749 2018-08-02 2021-08-01 2018 2021
## 11750 2018-08-03 2021-08-03 2018 2021
## 11751 2017-11-22 2020-11-22 2017 2020
## 11752 2018-11-21 2021-11-20 2018 2021
## 11753 2018-06-14 2021-06-13 2018 2021
## 11754 2018-06-14 2021-06-14 2018 2021
## 11755 2018-09-04 2021-09-04 2018 2021
## 11756 2017-10-28 2020-10-24 2017 2020
## 11757 2018-08-25 2021-08-24 2018 2021
## 11758 2018-09-15 2021-09-15 2018 2021
## 11759 2018-05-13 2021-05-12 2018 2021
## 11760 2018-04-29 2021-04-29 2018 2021
## 11761 2018-08-25 2021-08-24 2018 2021
## 11762 2018-09-26 2021-09-25 2018 2021
## 11763 2018-09-27 2021-09-26 2018 2021
## 11764 2018-02-07 2021-02-06 2018 2021
## 11765 2018-11-04 2021-11-03 2018 2021
## 11766 2018-08-11 2021-08-11 2018 2021
## 11767 2018-06-29 2021-06-28 2018 2021
## 11768 2018-07-31 2020-07-30 2018 2020
## 11769 2018-09-16 2021-09-16 2018 2021
## 11770 2018-07-12 2021-07-11 2018 2021
## 11771 2018-09-07 2021-09-07 2018 2021
## 11772 2018-08-17 2021-08-16 2018 2021
## 11773 2018-09-10 2021-09-09 2018 2021
## 11774 2018-09-12 2021-09-11 2018 2021
## 11775 2018-08-24 2021-08-24 2018 2021
## 11776 2018-09-04 2021-09-04 2018 2021
## 11777 2018-06-30 2019-06-29 2018 2019
## 11778 2017-12-25 2020-12-24 2017 2020
## 11779 2018-09-30 2021-09-27 2018 2021
## 11780 2017-10-31 2020-10-31 2017 2020
## 11781 2018-12-30 2021-12-29 2018 2021
## 11782 2018-07-22 2021-07-22 2018 2021
## 11783 2018-09-10 2021-09-09 2018 2021
## 11784 2018-10-17 2021-10-16 2018 2021
## 11785 2018-01-15 2021-01-14 2018 2021
## 11786 2018-06-17 2021-06-16 2018 2021
## 11787 2018-04-11 2021-04-10 2018 2021
## 11788 2018-08-14 2021-08-13 2018 2021
## 11789 2018-07-31 2021-07-30 2018 2021
## 11790 2018-05-20 2021-05-17 2018 2021
## 11791 2018-03-21 2021-03-20 2018 2021
## 11792 2017-11-26 2018-12-30 2017 2018
## 11793 2018-07-25 2021-07-24 2018 2021
## 11794 2018-07-01 2021-06-28 2018 2021
## 11795 2018-09-24 2021-09-23 2018 2021
## 11796 2018-03-21 2021-01-20 2018 2021
## 11797 2018-06-14 2021-06-14 2018 2021
## 11798 2018-07-31 2021-07-31 2018 2021
## 11799 2018-03-23 2021-03-22 2018 2021
## 11800 2018-07-10 2021-07-10 2018 2021
## 11801 2018-11-04 2021-11-04 2018 2021
## 11802 2018-05-16 2021-05-16 2018 2021
## 11803 2018-08-22 2021-08-21 2018 2021
## 11804 2018-04-29 2021-04-28 2018 2021
## 11805 2018-04-22 2020-10-30 2018 2020
## 11806 2018-07-01 2021-06-29 2018 2021
## 11807 2018-04-12 2021-04-11 2018 2021
## 11808 2018-09-06 2021-09-05 2018 2021
## 11809 2018-04-08 2021-04-07 2018 2021
## 11810 2018-05-29 2021-05-28 2018 2021
## 11811 2018-07-08 2021-07-07 2018 2021
## 11812 2018-08-19 2021-08-18 2018 2021
## 11813 2018-01-23 2021-01-22 2018 2021
## 11814 2017-10-31 2020-10-30 2017 2020
## 11815 2018-07-31 2021-07-30 2018 2021
## 11816 2018-01-07 2021-01-06 2018 2021
## 11817 2018-05-07 2021-05-06 2018 2021
## 11818 2018-09-09 2021-09-08 2018 2021
## 11819 2018-06-19 2019-08-27 2018 2019
## 11820 2018-08-31 2021-08-30 2018 2021
## 11821 2018-09-07 2021-09-07 2018 2021
## 11822 2017-11-19 2020-11-18 2017 2020
## 11823 2018-07-25 2021-07-24 2018 2021
## 11824 2018-09-04 2021-09-03 2018 2021
## 11825 2018-07-20 2021-07-20 2018 2021
## 11826 2018-09-13 2021-09-12 2018 2021
## 11827 2018-08-19 2021-08-19 2018 2021
## 11828 2018-07-15 2021-07-14 2018 2021
## 11829 2017-12-25 2020-11-25 2017 2020
## 11830 2018-09-14 2021-09-14 2018 2021
## 11831 2018-08-20 2021-08-19 2018 2021
## 11832 2018-03-08 2021-03-07 2018 2021
## 11833 2018-03-25 2021-03-18 2018 2021
## 11834 2018-02-07 2021-02-07 2018 2021
## 11835 2018-09-10 2021-09-10 2018 2021
## 11836 2018-09-05 2021-09-04 2018 2021
## 11837 2018-02-21 2021-02-20 2018 2021
## 11838 2018-06-25 2021-06-24 2018 2021
## 11839 2018-09-23 2021-09-22 2018 2021
## 11840 2018-08-31 2021-08-31 2018 2021
## 11841 2018-04-09 2021-04-08 2018 2021
## 11842 2018-09-28 2021-09-28 2018 2021
## 11843 2018-03-30 2021-03-29 2018 2021
## 11844 2018-12-31 2020-06-29 2018 2020
## 11845 2018-09-07 2021-09-06 2018 2021
## 11846 2018-06-14 2021-06-14 2018 2021
## 11847 2018-02-25 2021-02-24 2018 2021
## 11848 2018-10-04 2021-10-03 2018 2021
## 11849 2018-01-27 2021-01-26 2018 2021
## 11850 2017-11-19 2020-11-18 2017 2020
## 11851 2018-04-29 2021-04-28 2018 2021
## 11852 2018-07-15 2020-04-14 2018 2020
## 11853 2018-08-21 2021-08-20 2018 2021
## 11854 2018-08-31 2021-08-31 2018 2021
## 11855 2018-09-23 2021-09-22 2018 2021
## 11856 2018-01-17 2021-01-16 2018 2021
## 11857 2018-06-24 2021-06-24 2018 2021
## 11858 2018-02-17 2021-02-14 2018 2021
## 11859 2018-07-18 2021-07-18 2018 2021
## 11860 2018-08-27 2021-08-26 2018 2021
## 11861 2018-04-08 2021-04-07 2018 2021
## 11862 2018-03-04 2021-03-03 2018 2021
## 11863 2018-06-03 2021-06-02 2018 2021
## 11864 2018-08-09 2021-08-08 2018 2021
## 11865 2017-11-26 2020-11-26 2017 2020
## 11866 2018-09-08 2021-09-08 2018 2021
## 11867 2017-11-15 2019-12-19 2017 2019
## 11868 2018-09-17 2021-09-17 2018 2021
## 11869 2018-09-06 2021-09-06 2018 2021
## 11870 2018-08-22 2021-08-22 2018 2021
## 11871 2018-08-05 2021-08-05 2018 2021
## 11872 2018-02-14 2021-02-13 2018 2021
## 11873 2017-10-15 2020-10-14 2017 2020
## 11874 2018-03-31 2021-03-30 2018 2021
## 11875 2018-08-14 2021-08-13 2018 2021
## 11876 2018-09-11 2021-09-11 2018 2021
## 11877 2018-09-05 2021-09-04 2018 2021
## 11878 2017-12-06 2020-12-04 2017 2020
## 11879 2018-07-03 2021-07-01 2018 2021
## 11880 2018-07-31 2021-07-30 2018 2021
## 11881 2018-09-28 2021-09-27 2018 2021
## 11882 2018-08-01 2021-07-31 2018 2021
## 11883 2018-09-18 2021-09-18 2018 2021
## 11884 2018-09-30 2021-09-29 2018 2021
## 11885 2018-05-19 2021-05-18 2018 2021
## 11886 2018-08-19 2021-08-18 2018 2021
## 11887 2017-12-10 2020-12-09 2017 2020
## 11888 2018-05-26 2021-05-26 2018 2021
## 11889 2018-06-14 2021-06-14 2018 2021
## 11890 2018-08-12 2021-08-11 2018 2021
## 11891 2018-06-14 2021-06-14 2018 2021
## 11892 2018-03-04 2021-03-03 2018 2021
## 11893 2018-03-31 2020-06-29 2018 2020
## 11894 2018-07-28 2021-07-27 2018 2021
## 11895 2018-09-09 2021-09-08 2018 2021
## 11896 2018-09-15 2020-06-14 2018 2020
## 11897 2018-03-20 2021-03-19 2018 2021
## 11898 2018-08-25 2021-08-24 2018 2021
## 11899 2018-09-07 2021-09-06 2018 2021
## 11900 2018-08-31 2021-08-31 2018 2021
## 11901 2018-07-01 2021-06-30 2018 2021
## 11902 2018-01-21 2021-01-20 2018 2021
## 11903 2018-08-03 2021-08-02 2018 2021
## 11904 2018-08-31 2020-08-30 2018 2020
## 11905 2018-09-11 2021-09-10 2018 2021
## 11906 2018-08-01 2021-08-01 2018 2021
## 11907 2018-07-31 2021-07-31 2018 2021
## 11908 2018-08-14 2021-08-13 2018 2021
## 11909 2018-01-22 2021-01-21 2018 2021
## 11910 2018-04-14 2021-04-14 2018 2021
## 11911 2018-05-31 2021-05-30 2018 2021
## 11912 2018-09-02 2021-09-02 2018 2021
## 11913 2018-08-22 2021-08-21 2018 2021
## 11914 2018-01-03 2021-01-01 2018 2021
## 11915 2018-09-13 2021-09-13 2018 2021
## 11916 2018-07-31 2021-07-31 2018 2021
## 11917 2018-08-24 2021-08-24 2018 2021
## 11918 2018-09-04 2021-09-03 2018 2021
## 11919 2018-09-21 2021-09-21 2018 2021
## 11920 2018-07-30 2021-07-29 2018 2021
## 11921 2018-09-14 2021-09-14 2018 2021
## 11922 2018-09-20 2021-09-19 2018 2021
## 11923 2018-03-08 2021-03-05 2018 2021
## 11924 2018-11-27 2019-11-26 2018 2019
## 11925 2018-09-04 2021-09-03 2018 2021
## 11926 2018-07-31 2021-07-31 2018 2021
## 11927 2018-05-29 2021-05-29 2018 2021
## 11928 2018-08-05 2021-08-04 2018 2021
## 11929 2018-09-14 2020-09-13 2018 2020
## 11930 2018-01-14 2021-01-13 2018 2021
## 11931 2018-03-28 2021-03-28 2018 2021
## 11932 2018-01-02 2021-01-02 2018 2021
## 11933 2018-08-02 2021-08-01 2018 2021
## 11934 2017-10-22 2020-10-21 2017 2020
## 11935 2018-07-22 2021-07-21 2018 2021
## 11936 2018-04-16 2021-04-15 2018 2021
## 11937 2018-07-31 2021-07-30 2018 2021
## 11938 2018-06-30 2021-06-29 2018 2021
## 11939 2017-11-19 2020-11-18 2017 2020
## 11940 2018-08-01 2019-07-30 2018 2019
## 11941 2018-07-26 2021-07-26 2018 2021
## 11942 2018-08-19 2021-08-18 2018 2021
## 11943 2018-04-18 2021-04-17 2018 2021
## 11944 2018-06-22 2021-06-21 2018 2021
## 11945 2017-11-08 2020-11-08 2017 2020
## 11946 2018-06-17 2021-06-16 2018 2021
## 11947 2018-07-31 2021-07-30 2018 2021
## 11948 2017-12-18 2020-12-17 2017 2020
## 11949 2018-02-27 2021-02-26 2018 2021
## 11950 2018-07-22 2021-07-22 2018 2021
## 11951 2018-07-24 2021-07-23 2018 2021
## 11952 2018-07-01 2021-06-30 2018 2021
## 11953 2018-08-10 2021-08-10 2018 2021
## 11954 2018-09-23 2021-09-23 2018 2021
## 11955 2018-09-06 2021-09-05 2018 2021
## 11956 2018-08-14 2021-08-13 2018 2021
## 11957 2018-07-29 2021-07-28 2018 2021
## 11958 2018-07-31 2021-07-30 2018 2021
## 11959 2018-12-02 2021-12-01 2018 2021
## 11960 2018-08-04 2021-08-04 2018 2021
## 11961 2018-06-19 2021-06-18 2018 2021
## 11962 2017-12-03 2019-10-01 2017 2019
## 11963 2018-06-30 2021-06-29 2018 2021
## 11964 2018-09-25 2021-09-24 2018 2021
## 11965 2018-03-29 2021-03-28 2018 2021
## 11966 2018-08-24 2021-08-24 2018 2021
## 11967 2018-09-20 2021-09-19 2018 2021
## 11968 2018-08-27 2021-08-27 2018 2021
## 11969 2018-09-18 2021-09-18 2018 2021
## 11970 2018-08-31 2021-08-30 2018 2021
## 11971 2018-09-12 2021-09-12 2018 2021
## 11972 2017-10-08 2020-10-08 2017 2020
## 11973 2017-10-16 2020-10-13 2017 2020
## 11974 2018-09-03 2021-09-03 2018 2021
## 11975 2018-09-05 2021-08-29 2018 2021
## 11976 2018-09-07 2021-09-06 2018 2021
## 11977 2018-02-22 2020-12-17 2018 2020
## 11978 2018-08-25 2021-08-24 2018 2021
## 11979 2018-06-17 2019-12-30 2018 2019
## 11980 2018-09-04 2021-09-04 2018 2021
## 11981 2018-09-17 2021-09-16 2018 2021
## 11982 2018-08-24 2021-08-23 2018 2021
## 11983 2018-05-06 2021-05-05 2018 2021
## 11984 2018-09-09 2021-09-08 2018 2021
## 11985 2018-09-20 2021-09-20 2018 2021
## 11986 2018-04-30 2021-04-29 2018 2021
## 11987 2018-09-13 2021-09-13 2018 2021
## 11988 2018-06-08 2021-06-07 2018 2021
## 11989 2018-02-13 2021-02-12 2018 2021
## 11990 2018-08-31 2021-08-30 2018 2021
## 11991 2018-08-27 2021-08-26 2018 2021
## 11992 2018-04-01 2021-03-29 2018 2021
## 11993 2018-08-08 2021-08-07 2018 2021
## 11994 2018-03-19 2021-03-19 2018 2021
## 11995 2018-05-13 2021-05-13 2018 2021
## 11996 2018-09-16 2021-09-16 2018 2021
## 11997 2017-11-15 2020-11-14 2017 2020
## 11998 2018-03-08 2021-03-07 2018 2021
## 11999 2018-09-02 2021-09-01 2018 2021
## 12000 2018-11-30 2021-11-29 2018 2021
## 12001 2018-09-14 2021-09-14 2018 2021
## 12002 2018-01-31 2021-01-31 2018 2021
## 12003 2018-09-12 2021-09-11 2018 2021
## 12004 2018-05-31 2021-05-30 2018 2021
## 12005 2018-09-07 2021-09-06 2018 2021
## 12006 2018-03-03 2021-03-02 2018 2021
## 12007 2018-09-14 2021-09-14 2018 2021
## 12008 2018-07-15 2021-07-15 2018 2021
## 12009 2018-09-12 2021-09-11 2018 2021
## 12010 2018-08-31 2021-08-30 2018 2021
## 12011 2018-02-18 2021-02-17 2018 2021
## 12012 2018-04-02 2021-04-02 2018 2021
## 12013 2017-11-29 2020-11-28 2017 2020
## 12014 2018-03-18 2021-03-17 2018 2021
## 12015 2018-09-10 2021-09-09 2018 2021
## 12016 2018-04-29 2021-04-28 2018 2021
## 12017 2018-02-18 2021-02-17 2018 2021
## 12018 2018-08-04 2021-08-03 2018 2021
## 12019 2018-08-31 2021-08-30 2018 2021
## 12020 2018-09-14 2021-09-14 2018 2021
## 12021 2018-09-03 2021-09-02 2018 2021
## 12022 2018-10-24 2021-10-24 2018 2021
## 12023 2018-07-31 2021-07-30 2018 2021
## 12024 2017-11-26 2020-11-14 2017 2020
## 12025 2018-09-23 2021-09-22 2018 2021
## 12026 2018-07-31 2021-07-30 2018 2021
## 12027 2018-02-28 2021-02-27 2018 2021
## 12028 2018-09-30 2021-09-29 2018 2021
## 12029 2018-08-06 2021-08-05 2018 2021
## 12030 2018-04-08 2021-04-07 2018 2021
## 12031 2018-08-07 2021-08-06 2018 2021
## 12032 2018-07-24 2021-07-24 2018 2021
## 12033 2018-08-20 2021-08-19 2018 2021
## 12034 2018-01-31 2021-01-31 2018 2021
## 12035 2018-09-30 2021-09-29 2018 2021
## 12036 2018-02-11 2021-02-06 2018 2021
## 12037 2018-04-22 2021-04-21 2018 2021
## 12038 2018-09-06 2021-09-06 2018 2021
## 12039 2018-05-14 2021-05-13 2018 2021
## 12040 2018-09-09 2021-09-08 2018 2021
## 12041 2018-05-14 2019-09-16 2018 2019
## 12042 2018-08-26 2021-01-13 2018 2021
## 12043 2018-07-27 2021-07-26 2018 2021
## 12044 2018-09-03 2021-09-02 2018 2021
## 12045 2018-02-04 2021-02-03 2018 2021
## 12046 2018-09-12 2021-09-11 2018 2021
## 12047 2018-07-15 2021-07-14 2018 2021
## 12048 2018-09-14 2021-09-13 2018 2021
## 12049 2017-12-31 2020-12-30 2017 2020
## 12050 2018-05-19 2021-05-18 2018 2021
## 12051 2018-08-25 2021-08-24 2018 2021
## 12052 2018-05-31 2021-05-29 2018 2021
## 12053 2018-08-28 2021-08-27 2018 2021
## 12054 2018-08-26 2021-08-25 2018 2021
## 12055 2018-09-14 2020-09-14 2018 2020
## 12056 2018-09-02 2021-09-01 2018 2021
## 12057 2018-09-04 2021-09-03 2018 2021
## 12058 2018-02-23 2021-02-22 2018 2021
## 12059 2018-09-07 2021-09-07 2018 2021
## 12060 2018-07-17 2021-07-16 2018 2021
## 12061 2018-02-07 2021-02-06 2018 2021
## 12062 2018-08-31 2021-08-31 2018 2021
## 12063 2018-03-07 2021-03-06 2018 2021
## 12064 2018-07-14 2021-07-13 2018 2021
## 12065 2018-08-27 2021-08-26 2018 2021
## 12066 2018-08-27 2021-08-27 2018 2021
## 12067 2019-02-15 2022-02-14 2019 2022
## 12068 2018-08-14 2021-08-13 2018 2021
## 12069 2017-10-19 2020-10-18 2017 2020
## 12070 2018-03-03 2021-03-02 2018 2021
## 12071 2018-05-13 2018-11-06 2018 2018
## 12072 2019-02-04 2022-02-03 2019 2022
## 12073 2018-08-23 2021-08-22 2018 2021
## 12074 2018-08-31 2021-08-30 2018 2021
## 12075 2018-08-14 2021-08-13 2018 2021
## 12076 2017-11-13 2020-11-13 2017 2020
## 12077 2018-09-05 2021-09-04 2018 2021
## 12078 2018-06-14 2021-06-13 2018 2021
## 12079 2018-08-19 2021-08-18 2018 2021
## 12080 2018-08-31 2021-08-28 2018 2021
## 12081 2017-12-11 2020-12-11 2017 2020
## 12082 2018-08-14 2021-08-14 2018 2021
## 12083 2018-05-30 2021-05-29 2018 2021
## 12084 2018-04-04 2021-04-03 2018 2021
## 12085 2018-10-11 2021-10-11 2018 2021
## 12086 2018-09-12 2021-09-12 2018 2021
## 12087 2018-02-04 2021-02-03 2018 2021
## 12088 2018-08-22 2021-08-21 2018 2021
## 12089 2018-05-15 2021-05-14 2018 2021
## 12090 2018-07-11 2021-07-10 2018 2021
## 12091 2018-08-31 2021-08-30 2018 2021
## 12092 2018-06-30 2021-06-29 2018 2021
## 12093 2018-05-29 2021-05-29 2018 2021
## 12094 2018-04-14 2021-04-14 2018 2021
## 12095 2017-11-05 2020-09-18 2017 2020
## 12096 2018-01-14 2021-01-13 2018 2021
## 12097 2017-10-29 2020-10-28 2017 2020
## 12098 2018-04-03 2021-04-02 2018 2021
## 12099 2018-09-25 2021-09-24 2018 2021
## 12100 2018-08-19 2021-08-18 2018 2021
## 12101 2018-08-07 2021-08-07 2018 2021
## 12102 2018-10-11 2021-10-10 2018 2021
## 12103 2018-07-31 2021-07-02 2018 2021
## 12104 2018-04-01 2019-03-31 2018 2019
## 12105 2018-01-14 2021-01-13 2018 2021
## 12106 2018-09-01 2021-08-31 2018 2021
## 12107 2018-09-06 2021-09-05 2018 2021
## 12108 2018-08-06 2021-08-05 2018 2021
## 12109 2018-09-20 2021-09-19 2018 2021
## 12110 2017-11-26 2020-11-25 2017 2020
## 12111 2018-04-22 2019-08-10 2018 2019
## 12112 2018-09-11 2021-09-10 2018 2021
## 12113 2018-07-04 2021-07-03 2018 2021
## 12114 2018-03-31 2021-03-30 2018 2021
## 12115 2018-07-31 2020-08-26 2018 2020
## 12116 2018-08-31 2021-08-30 2018 2021
## 12117 2018-09-12 2021-09-11 2018 2021
## 12118 2018-02-08 2021-02-08 2018 2021
## 12119 2018-09-13 2021-09-13 2018 2021
## 12120 2018-12-27 2021-12-27 2018 2021
## 12121 2018-08-23 2021-08-22 2018 2021
## 12122 2018-02-28 2021-02-27 2018 2021
## 12123 2018-09-26 2021-09-26 2018 2021
## 12124 2018-09-04 2021-09-03 2018 2021
## 12125 2018-09-09 2021-09-08 2018 2021
## 12126 2018-09-18 2021-09-18 2018 2021
## 12127 2018-09-10 2021-09-09 2018 2021
## 12128 2018-08-21 2021-08-20 2018 2021
## 12129 2018-09-11 2021-09-10 2018 2021
## 12130 2019-03-03 2022-03-02 2019 2022
## 12131 2018-04-22 2021-04-21 2018 2021
## 12132 2018-07-30 2021-07-29 2018 2021
## 12133 2018-08-31 2021-08-30 2018 2021
## 12134 2018-07-02 2021-07-02 2018 2021
## 12135 2018-08-29 2021-08-28 2018 2021
## 12136 2018-06-30 2021-04-07 2018 2021
## 12137 2018-09-15 2021-09-14 2018 2021
## 12138 2018-04-11 2021-04-10 2018 2021
## 12139 2019-01-17 2022-01-16 2019 2022
## 12140 2018-09-09 2021-09-08 2018 2021
## 12141 2017-10-20 2020-10-19 2017 2020
## 12142 2018-09-14 2021-09-14 2018 2021
## 12143 2018-03-31 2021-03-30 2018 2021
## 12144 2018-09-09 2021-09-08 2018 2021
## 12145 2018-08-31 2021-08-29 2018 2021
## 12146 2018-09-15 2021-09-14 2018 2021
## 12147 2017-12-04 2020-12-01 2017 2020
## 12148 2018-08-19 2021-08-18 2018 2021
## 12149 2018-07-14 2021-07-13 2018 2021
## 12150 2018-01-01 2020-12-31 2018 2020
## 12151 2018-09-14 2021-09-13 2018 2021
## 12152 2018-08-19 2021-08-19 2018 2021
## 12153 2018-09-05 2021-09-04 2018 2021
## 12154 2018-04-30 2021-04-29 2018 2021
## 12155 2017-11-19 2020-11-18 2017 2020
## 12156 2018-04-17 2021-04-16 2018 2021
## 12157 2018-08-09 2021-08-06 2018 2021
## 12158 2018-09-20 2019-09-20 2018 2019
## 12159 2018-07-01 2021-06-30 2018 2021
## 12160 2018-07-14 2021-07-14 2018 2021
## 12161 2018-09-14 2021-09-14 2018 2021
## 12162 2018-06-14 2021-06-14 2018 2021
## 12163 2017-12-10 2020-12-10 2017 2020
## 12164 2017-10-03 2020-10-03 2017 2020
## 12165 2017-12-10 2020-12-09 2017 2020
## 12166 2018-06-24 2021-06-24 2018 2021
## 12167 2018-06-07 2021-06-04 2018 2021
## 12168 2017-10-22 2020-10-21 2017 2020
## 12169 2018-01-01 2020-12-31 2018 2020
## 12170 2018-04-12 2021-04-11 2018 2021
## 12171 2017-10-09 2020-10-08 2017 2020
## 12172 2018-07-31 2021-07-30 2018 2021
## 12173 2018-08-06 2021-08-06 2018 2021
## 12174 2018-09-29 2021-09-28 2018 2021
## 12175 2018-09-05 2021-09-04 2018 2021
## 12176 2018-06-29 2021-06-28 2018 2021
## 12177 2018-09-04 2021-09-03 2018 2021
## 12178 2018-03-12 2021-03-09 2018 2021
## 12179 2018-02-12 2021-02-12 2018 2021
## 12180 2018-09-02 2021-09-01 2018 2021
## 12181 2018-06-14 2021-06-14 2018 2021
## 12182 2018-06-24 2021-05-31 2018 2021
## 12183 2018-10-30 2021-10-30 2018 2021
## 12184 2018-07-30 2021-07-29 2018 2021
## 12185 2018-08-31 2021-08-31 2018 2021
## 12186 2018-09-14 2021-09-13 2018 2021
## 12187 2017-11-28 2020-11-27 2017 2020
## 12188 2018-09-02 2021-09-02 2018 2021
## 12189 2018-08-19 2021-08-18 2018 2021
## 12190 2018-01-02 2021-01-02 2018 2021
## 12191 2018-08-31 2021-08-30 2018 2021
## 12192 2018-07-22 2021-07-22 2018 2021
## 12193 2018-09-11 2021-09-10 2018 2021
## 12194 2018-09-24 2020-09-29 2018 2020
## 12195 2018-09-08 2021-09-07 2018 2021
## 12196 2018-07-31 2021-07-30 2018 2021
## 12197 2018-06-19 2021-06-19 2018 2021
## 12198 2018-08-06 2021-08-06 2018 2021
## 12199 2018-01-21 2021-01-20 2018 2021
## 12200 2018-08-02 2021-08-01 2018 2021
## 12201 2018-08-29 2021-08-28 2018 2021
## 12202 2018-08-31 2021-08-31 2018 2021
## 12203 2018-02-14 2021-02-13 2018 2021
## 12204 2018-09-05 2021-09-05 2018 2021
## 12205 2018-09-03 2021-09-02 2018 2021
## 12206 2019-01-21 2022-01-20 2019 2022
## 12207 2018-01-29 2020-01-28 2018 2020
## 12208 2017-11-13 2020-11-12 2017 2020
## 12209 2018-09-14 2021-09-13 2018 2021
## 12210 2018-08-05 2021-08-04 2018 2021
## 12211 2018-05-03 2021-05-02 2018 2021
## 12212 2018-01-31 2021-01-30 2018 2021
## 12213 2018-09-05 2021-09-05 2018 2021
## 12214 2017-11-12 2019-02-04 2017 2019
## 12215 2018-09-06 2021-09-05 2018 2021
## 12216 2018-07-05 2021-07-05 2018 2021
## 12217 2018-09-06 2021-09-06 2018 2021
## 12218 2018-08-22 2021-08-22 2018 2021
## 12219 2018-09-08 2021-09-08 2018 2021
## 12220 2018-05-06 2021-05-06 2018 2021
## 12221 2018-08-13 2021-08-13 2018 2021
## 12222 2018-01-01 2020-12-31 2018 2020
## 12223 2018-04-09 2021-04-08 2018 2021
## 12224 2018-09-16 2021-09-15 2018 2021
## 12225 2018-02-06 2019-09-05 2018 2019
## 12226 2018-09-05 2021-09-04 2018 2021
## 12227 2018-07-27 2021-07-26 2018 2021
## 12228 2017-11-19 2020-11-18 2017 2020
## 12229 2018-02-15 2021-02-14 2018 2021
## 12230 2018-09-04 2021-09-03 2018 2021
## 12231 2017-10-15 2020-10-14 2017 2020
## 12232 2018-03-31 2021-03-31 2018 2021
## 12233 2018-07-20 2021-07-19 2018 2021
## 12234 2018-09-18 2021-09-18 2018 2021
## 12235 2018-06-14 2021-06-14 2018 2021
## 12236 2018-08-15 2021-08-15 2018 2021
## 12237 2018-03-31 2021-03-30 2018 2021
## 12238 2018-09-11 2021-09-10 2018 2021
## 12239 2018-09-03 2021-09-02 2018 2021
## 12240 2018-09-14 2021-09-14 2018 2021
## 12241 2017-12-10 2020-12-09 2017 2020
## 12242 2017-10-14 2020-10-14 2017 2020
## 12243 2018-06-07 2021-06-06 2018 2021
## 12244 2018-03-15 2021-03-14 2018 2021
## 12245 2018-09-09 2021-09-08 2018 2021
## 12246 2018-08-05 2019-12-20 2018 2019
## 12247 2017-12-28 2020-12-27 2017 2020
## 12248 2018-09-12 2021-09-12 2018 2021
## 12249 2018-09-19 2021-09-19 2018 2021
## 12250 2018-08-31 2021-08-31 2018 2021
## 12251 2018-07-31 2021-07-31 2018 2021
## 12252 2018-01-30 2021-01-29 2018 2021
## 12253 2018-08-29 2021-08-28 2018 2021
## 12254 2017-11-29 2019-09-08 2017 2019
## 12255 2018-09-05 2021-09-05 2018 2021
## 12256 2017-12-31 2018-12-30 2017 2018
## 12257 2018-06-30 2021-06-29 2018 2021
## 12258 2018-01-21 2021-01-20 2018 2021
## 12259 2018-03-01 2021-02-28 2018 2021
## 12260 2017-12-03 2020-12-02 2017 2020
## 12261 2018-09-10 2021-09-10 2018 2021
## 12262 2017-10-14 2020-10-11 2017 2020
## 12263 2018-09-09 2021-09-08 2018 2021
## 12264 2018-02-11 2021-02-10 2018 2021
## 12265 2018-12-31 2021-12-30 2018 2021
## 12266 2017-12-03 2020-12-02 2017 2020
## 12267 2018-08-01 2021-07-31 2018 2021
## 12268 2018-08-31 2021-08-30 2018 2021
## 12269 2018-09-09 2021-09-09 2018 2021
## 12270 2018-08-13 2021-08-13 2018 2021
## 12271 2018-09-06 2021-09-06 2018 2021
## 12272 2018-09-05 2021-09-05 2018 2021
## 12273 2018-09-10 2021-09-09 2018 2021
## 12274 2018-01-17 2021-01-17 2018 2021
## 12275 2018-08-27 2021-08-26 2018 2021
## 12276 2018-08-02 2021-07-01 2018 2021
## 12277 2018-06-29 2021-06-28 2018 2021
## 12278 2018-09-10 2021-09-10 2018 2021
## 12279 2018-10-28 2021-10-27 2018 2021
## 12280 2018-09-19 2021-09-18 2018 2021
## 12281 2017-11-07 2020-11-07 2017 2020
## 12282 2018-05-31 2021-05-31 2018 2021
## 12283 2017-12-12 2020-12-11 2017 2020
## 12284 2018-01-14 2021-01-14 2018 2021
## 12285 2018-09-13 2021-09-13 2018 2021
## 12286 2017-10-11 2018-07-18 2017 2018
## 12287 2018-05-02 2021-05-01 2018 2021
## 12288 2018-09-09 2021-09-09 2018 2021
## 12289 2017-12-31 2020-12-30 2017 2020
## 12290 2018-08-26 2021-08-25 2018 2021
## 12291 2017-10-29 2020-05-30 2017 2020
## 12292 2018-06-17 2020-06-17 2018 2020
## 12293 2018-04-12 2021-04-09 2018 2021
## 12294 2018-06-17 2021-06-16 2018 2021
## 12295 2019-01-22 2022-01-21 2019 2022
## 12296 2018-02-28 2021-02-28 2018 2021
## 12297 2018-08-31 2021-08-29 2018 2021
## 12298 2017-10-15 2020-10-14 2017 2020
## 12299 2018-04-29 2021-04-28 2018 2021
## 12300 2018-05-15 2019-04-25 2018 2019
## 12301 2018-05-12 2021-05-11 2018 2021
## 12302 2018-09-30 2021-09-29 2018 2021
## 12303 2018-06-27 2021-06-26 2018 2021
## 12304 2018-06-28 2021-06-27 2018 2021
## 12305 2018-07-31 2021-07-30 2018 2021
## 12306 2018-08-20 2021-08-19 2018 2021
## 12307 2017-11-20 2020-11-19 2017 2020
## 12308 2018-09-10 2021-09-09 2018 2021
## 12309 2018-09-04 2021-09-03 2018 2021
## 12310 2018-09-20 2021-09-19 2018 2021
## 12311 2018-02-24 2019-01-11 2018 2019
## 12312 2018-09-14 2021-09-13 2018 2021
## 12313 2018-02-01 2021-01-31 2018 2021
## 12314 2018-08-22 2021-08-21 2018 2021
## 12315 2018-09-06 2021-09-06 2018 2021
## 12316 2018-03-31 2021-03-30 2018 2021
## 12317 2018-09-06 2021-09-05 2018 2021
## 12318 2018-07-11 2021-07-10 2018 2021
## 12319 2018-07-08 2021-07-07 2018 2021
## 12320 2018-11-15 2021-11-14 2018 2021
## 12321 2018-08-30 2021-08-29 2018 2021
## 12322 2018-09-07 2021-09-06 2018 2021
## 12323 2018-09-02 2021-08-30 2018 2021
## 12324 2018-09-11 2021-09-10 2018 2021
## 12325 2018-08-24 2021-08-24 2018 2021
## 12326 2018-09-03 2021-09-03 2018 2021
## 12327 2018-04-23 2021-04-23 2018 2021
## 12328 2018-08-19 2020-03-25 2018 2020
## 12329 2018-09-12 2021-09-12 2018 2021
## 12330 2018-08-27 2021-08-26 2018 2021
## 12331 2018-06-14 2021-06-14 2018 2021
## 12332 2018-08-18 2021-08-17 2018 2021
## 12333 2018-08-26 2021-08-26 2018 2021
## 12334 2018-05-03 2021-02-27 2018 2021
## 12335 2018-07-20 2021-07-19 2018 2021
## 12336 2018-11-21 2021-11-20 2018 2021
## 12337 2018-09-19 2021-09-19 2018 2021
## 12338 2018-07-08 2021-07-07 2018 2021
## 12339 2018-01-23 2021-01-22 2018 2021
## 12340 2018-03-31 2021-03-30 2018 2021
## 12341 2018-07-14 2020-07-14 2018 2020
## 12342 2018-09-05 2021-09-04 2018 2021
## 12343 2019-01-04 2022-01-03 2019 2022
## 12344 2018-03-28 2021-03-27 2018 2021
## 12345 2017-10-12 2020-10-11 2017 2020
## 12346 2018-03-22 2021-03-21 2018 2021
## 12347 2018-08-02 2021-08-02 2018 2021
## 12348 2018-07-31 2021-07-30 2018 2021
## 12349 2018-05-31 2021-05-30 2018 2021
## 12350 2017-12-26 2020-12-26 2017 2020
## 12351 2018-06-10 2021-06-10 2018 2021
## 12352 2018-09-04 2021-09-03 2018 2021
## 12353 2018-07-29 2021-07-29 2018 2021
## 12354 2017-10-30 2020-10-29 2017 2020
## 12355 2019-02-01 2022-01-31 2019 2022
## 12356 2018-08-31 2021-08-31 2018 2021
## 12357 2018-08-14 2021-08-13 2018 2021
## 12358 2018-04-22 2021-04-22 2018 2021
## 12359 2018-02-23 2021-02-22 2018 2021
## 12360 2019-02-09 2022-02-09 2019 2022
## 12361 2018-08-12 2021-08-11 2018 2021
## 12362 2018-09-02 2021-09-01 2018 2021
## 12363 2017-11-05 2020-11-04 2017 2020
## 12364 2018-07-02 2021-07-01 2018 2021
## 12365 2018-09-02 2021-09-02 2018 2021
## 12366 2018-09-13 2021-09-12 2018 2021
## 12367 2018-09-14 2020-09-13 2018 2020
## 12368 2018-09-26 2021-09-25 2018 2021
## 12369 2017-10-22 2020-10-21 2017 2020
## 12370 2017-11-12 2020-11-12 2017 2020
## 12371 2018-06-14 2021-06-14 2018 2021
## 12372 2017-09-28 2020-09-27 2017 2020
## 12373 2018-03-04 2021-03-03 2018 2021
## 12374 2018-01-24 2021-01-24 2018 2021
## 12375 2018-12-29 2021-12-28 2018 2021
## 12376 2018-01-01 2020-12-31 2018 2020
## 12377 2018-09-02 2021-09-01 2018 2021
## 12378 2018-09-14 2021-09-13 2018 2021
## 12379 2018-03-11 2021-03-10 2018 2021
## 12380 2018-04-01 2021-03-31 2018 2021
## 12381 2017-12-11 2020-12-10 2017 2020
## 12382 2018-09-21 2021-09-20 2018 2021
## 12383 2018-09-30 2021-09-29 2018 2021
## 12384 2018-07-31 2020-07-19 2018 2020
## 12385 2018-06-30 2021-06-29 2018 2021
## 12386 2017-10-25 2019-07-18 2017 2019
## 12387 2018-09-08 2021-09-08 2018 2021
## 12388 2018-07-15 2021-07-14 2018 2021
## 12389 2018-06-22 2021-06-21 2018 2021
## 12390 2018-02-06 2021-02-06 2018 2021
## 12391 2018-07-10 2021-07-09 2018 2021
## 12392 2018-04-18 2021-04-18 2018 2021
## 12393 2018-07-15 2021-07-14 2018 2021
## 12394 2018-10-24 2021-10-23 2018 2021
## 12395 2018-09-17 2021-09-17 2018 2021
## 12396 2018-02-11 2021-02-10 2018 2021
## 12397 2018-09-09 2021-09-09 2018 2021
## 12398 2018-09-17 2021-09-16 2018 2021
## 12399 2018-09-27 2021-09-26 2018 2021
## 12400 2018-05-31 2021-05-30 2018 2021
## 12401 2018-08-19 2021-08-18 2018 2021
## 12402 2018-08-30 2021-08-30 2018 2021
## 12403 2018-09-10 2021-09-09 2018 2021
## 12404 2017-12-26 2019-08-30 2017 2019
## 12405 2018-09-17 2021-09-17 2018 2021
## 12406 2018-08-31 2021-08-31 2018 2021
## 12407 2018-04-01 2021-04-01 2018 2021
## 12408 2018-09-10 2021-09-09 2018 2021
## 12409 2018-07-07 2021-07-04 2018 2021
## 12410 2018-08-10 2021-08-09 2018 2021
## 12411 2018-07-30 2021-07-29 2018 2021
## 12412 2018-08-19 2021-08-19 2018 2021
## 12413 2018-08-06 2021-08-05 2018 2021
## 12414 2018-08-19 2021-08-18 2018 2021
## 12415 2018-07-27 2021-07-26 2018 2021
## 12416 2018-07-31 2021-07-30 2018 2021
## 12417 2018-07-25 2021-07-24 2018 2021
## 12418 2018-07-31 2021-07-31 2018 2021
## 12419 2018-08-06 2021-08-05 2018 2021
## 12420 2018-11-07 2021-11-06 2018 2021
## 12421 2018-09-07 2021-09-07 2018 2021
## 12422 2018-09-06 2021-09-06 2018 2021
## 12423 2018-09-12 2021-09-11 2018 2021
## 12424 2017-10-17 2020-10-16 2017 2020
## 12425 2018-11-27 2021-11-26 2018 2021
## 12426 2018-03-13 2021-03-12 2018 2021
## 12427 2018-09-10 2021-09-10 2018 2021
## 12428 2018-10-20 2021-10-20 2018 2021
## 12429 2018-01-13 2021-01-12 2018 2021
## 12430 2018-09-23 2021-09-23 2018 2021
## 12431 2018-09-16 2019-09-15 2018 2019
## 12432 2018-05-28 2021-05-28 2018 2021
## 12433 2018-07-16 2021-07-16 2018 2021
## 12434 2018-07-20 2021-07-20 2018 2021
## 12435 2018-09-12 2021-09-11 2018 2021
## 12436 2018-09-06 2021-09-06 2018 2021
## 12437 2018-09-30 2021-09-29 2018 2021
## 12438 2018-09-17 2021-09-16 2018 2021
## 12439 2018-02-04 2021-02-03 2018 2021
## 12440 2018-07-15 2021-07-14 2018 2021
## 12441 2017-12-26 2019-08-29 2017 2019
## 12442 2017-12-10 2020-12-09 2017 2020
## 12443 2018-08-31 2021-08-30 2018 2021
## 12444 2018-09-02 2021-09-01 2018 2021
## 12445 2018-02-15 2021-02-14 2018 2021
## 12446 2018-08-31 2021-08-30 2018 2021
## 12447 2018-09-18 2021-09-17 2018 2021
## 12448 2018-01-12 2021-01-12 2018 2021
## 12449 2018-03-11 2021-03-10 2018 2021
## 12450 2018-09-11 2021-09-11 2018 2021
## 12451 2018-08-31 2021-08-30 2018 2021
## 12452 2018-06-22 2019-05-05 2018 2019
## 12453 2018-09-05 2021-09-04 2018 2021
## 12454 2018-03-27 2021-03-27 2018 2021
## 12455 2018-04-19 2018-11-14 2018 2018
## 12456 2018-04-30 2021-04-29 2018 2021
## 12457 2018-06-02 2021-06-01 2018 2021
## 12458 2018-08-19 2021-08-18 2018 2021
## 12459 2017-11-12 2020-11-11 2017 2020
## 12460 2018-04-09 2021-04-08 2018 2021
## 12461 2018-07-13 2021-07-13 2018 2021
## 12462 2018-06-30 2021-06-29 2018 2021
## 12463 2018-12-28 2021-12-27 2018 2021
## 12464 2018-05-16 2021-05-16 2018 2021
## 12465 2018-09-15 2021-09-14 2018 2021
## 12466 2018-09-13 2021-09-12 2018 2021
## 12467 2018-08-12 2021-08-11 2018 2021
## 12468 2018-02-19 2021-02-19 2018 2021
## 12469 2018-07-30 2021-07-29 2018 2021
## 12470 2018-03-11 2021-03-10 2018 2021
## 12471 2018-02-25 2021-02-24 2018 2021
## 12472 2017-11-12 2020-11-12 2017 2020
## 12473 2018-06-11 2021-06-11 2018 2021
## 12474 2017-11-05 2020-11-02 2017 2020
## 12475 2018-07-30 2021-07-29 2018 2021
## 12476 2018-01-24 2021-01-23 2018 2021
## 12477 2018-03-22 2021-03-21 2018 2021
## 12478 2018-08-23 2021-08-22 2018 2021
## 12479 2017-10-24 2020-10-23 2017 2020
## 12480 2018-09-04 2021-09-03 2018 2021
## 12481 2018-08-05 2021-08-04 2018 2021
## 12482 2018-09-12 2021-09-11 2018 2021
## 12483 2018-09-07 2021-09-06 2018 2021
## 12484 2018-09-01 2021-09-01 2018 2021
## 12485 2018-04-28 2021-04-27 2018 2021
## 12486 2018-07-31 2021-07-30 2018 2021
## 12487 2018-09-09 2021-09-08 2018 2021
## 12488 2018-02-28 2021-02-27 2018 2021
## 12489 2018-01-25 2021-01-25 2018 2021
## 12490 2019-01-31 2022-01-30 2019 2022
## 12491 2018-09-13 2021-09-12 2018 2021
## 12492 2018-05-14 2021-05-13 2018 2021
## 12493 2018-01-01 2020-12-31 2018 2020
## 12494 2018-05-30 2021-05-29 2018 2021
## 12495 2018-09-11 2021-09-10 2018 2021
## 12496 2018-09-02 2021-09-01 2018 2021
## 12497 2018-06-06 2021-06-05 2018 2021
## 12498 2018-05-14 2021-05-13 2018 2021
## 12499 2018-07-17 2021-07-17 2018 2021
## 12500 2018-08-31 2021-08-31 2018 2021
## 12501 2018-09-24 2021-09-24 2018 2021
## 12502 2018-09-17 2021-09-16 2018 2021
## 12503 2018-08-20 2021-08-19 2018 2021
## 12504 2018-08-21 2021-08-20 2018 2021
## 12505 2018-08-28 2021-08-28 2018 2021
## 12506 2018-09-02 2021-09-01 2018 2021
## 12507 2018-07-02 2021-07-01 2018 2021
## 12508 2018-09-14 2021-09-14 2018 2021
## 12509 2018-08-19 2021-08-18 2018 2021
## 12510 2018-09-09 2021-09-09 2018 2021
## 12511 2018-03-25 2021-03-24 2018 2021
## 12512 2018-09-25 2021-09-25 2018 2021
## 12513 2018-06-21 2021-06-20 2018 2021
## 12514 2018-08-29 2021-08-28 2018 2021
## 12515 2018-09-12 2021-09-12 2018 2021
## 12516 2018-02-04 2021-02-03 2018 2021
## 12517 2018-06-14 2021-06-14 2018 2021
## 12518 2018-03-27 2021-03-26 2018 2021
## 12519 2018-01-02 2021-01-01 2018 2021
## 12520 2018-03-26 2021-03-26 2018 2021
## 12521 2018-01-23 2021-01-23 2018 2021
## 12522 2018-09-06 2021-09-05 2018 2021
## 12523 2018-03-12 2021-03-11 2018 2021
## 12524 2018-04-17 2019-05-18 2018 2019
## 12525 2018-03-18 2021-03-17 2018 2021
## 12526 2018-08-31 2021-08-31 2018 2021
## 12527 2018-09-30 2021-09-29 2018 2021
## 12528 2018-01-23 2021-01-22 2018 2021
## 12529 2018-09-06 2021-09-05 2018 2021
## 12530 2018-09-19 2021-09-18 2018 2021
## 12531 2018-08-11 2021-08-10 2018 2021
## 12532 2018-02-18 2021-02-17 2018 2021
## 12533 2018-08-24 2021-08-24 2018 2021
## 12534 2018-05-20 2021-05-19 2018 2021
## 12535 2018-09-12 2021-09-11 2018 2021
## 12536 2018-07-29 2021-07-28 2018 2021
## 12537 2018-08-17 2021-08-17 2018 2021
## 12538 2018-08-31 2021-08-30 2018 2021
## 12539 2018-08-31 2021-08-30 2018 2021
## 12540 2018-09-07 2021-09-06 2018 2021
## 12541 2018-08-16 2021-08-16 2018 2021
## 12542 2018-02-08 2021-02-07 2018 2021
## 12543 2018-07-31 2021-07-30 2018 2021
## 12544 2017-12-05 2020-12-04 2017 2020
## 12545 2018-07-24 2021-07-23 2018 2021
## 12546 2018-12-19 2021-12-19 2018 2021
## 12547 2018-09-11 2021-09-10 2018 2021
## 12548 2017-12-08 2018-12-30 2017 2018
## 12549 2017-11-22 2020-11-21 2017 2020
## 12550 2018-06-05 2021-06-04 2018 2021
## 12551 2018-04-30 2021-04-30 2018 2021
## 12552 2018-03-18 2021-03-17 2018 2021
## 12553 2018-08-12 2021-08-12 2018 2021
## 12554 2018-06-17 2021-06-16 2018 2021
## 12555 2018-09-16 2021-09-15 2018 2021
## 12556 2018-01-14 2020-07-01 2018 2020
## 12557 2018-03-11 2021-03-11 2018 2021
## 12558 2018-09-24 2021-09-24 2018 2021
## 12559 2018-09-18 2021-09-18 2018 2021
## 12560 2018-08-31 2021-08-30 2018 2021
## 12561 2018-08-31 2021-08-30 2018 2021
## 12562 2017-12-10 2020-12-09 2017 2020
## 12563 2018-09-17 2021-09-16 2018 2021
## 12564 2018-09-12 2021-09-12 2018 2021
## 12565 2018-09-13 2021-09-13 2018 2021
## 12566 2018-09-22 2021-09-21 2018 2021
## 12567 2018-05-13 2018-08-31 2018 2018
## 12568 2018-03-19 2021-03-19 2018 2021
## 12569 2018-07-18 2021-07-17 2018 2021
## 12570 2018-03-11 2021-03-10 2018 2021
## 12571 2017-11-04 2020-11-01 2017 2020
## 12572 2018-08-30 2021-08-30 2018 2021
## 12573 2017-10-26 2020-10-25 2017 2020
## 12574 2018-08-27 2021-08-26 2018 2021
## 12575 2018-02-01 2021-01-31 2018 2021
## 12576 2018-09-18 2021-09-17 2018 2021
## 12577 2018-05-31 2021-05-28 2018 2021
## 12578 2018-07-19 2021-07-18 2018 2021
## 12579 2018-09-11 2021-09-11 2018 2021
## 12580 2018-04-01 2021-03-31 2018 2021
## 12581 2018-02-28 2021-02-27 2018 2021
## 12582 2018-05-21 2021-05-20 2018 2021
## 12583 2018-09-17 2021-09-16 2018 2021
## 12584 2018-08-27 2021-08-26 2018 2021
## 12585 2018-08-11 2021-08-11 2018 2021
## 12586 2018-03-18 2021-03-15 2018 2021
## 12587 2018-06-14 2021-06-14 2018 2021
## 12588 2018-08-31 2021-08-31 2018 2021
## 12589 2018-08-21 2021-08-20 2018 2021
## 12590 2018-08-21 2021-08-20 2018 2021
## 12591 2019-01-29 2022-01-28 2019 2022
## 12592 2018-09-08 2021-09-07 2018 2021
## 12593 2018-08-28 2021-08-27 2018 2021
## 12594 2018-07-31 2021-07-31 2018 2021
## 12595 2018-09-05 2021-09-04 2018 2021
## 12596 2018-07-29 2021-07-28 2018 2021
## 12597 2017-11-14 2018-09-29 2017 2018
## 12598 2018-09-20 2021-09-19 2018 2021
## 12599 2018-03-20 2021-03-20 2018 2021
## 12600 2018-05-01 2021-05-01 2018 2021
## 12601 2018-08-31 2021-08-31 2018 2021
## 12602 2018-02-16 2021-02-16 2018 2021
## 12603 2018-08-28 2021-08-28 2018 2021
## 12604 2018-02-18 2021-02-17 2018 2021
## 12605 2018-07-26 2021-07-25 2018 2021
## 12606 2018-07-13 2021-07-12 2018 2021
## 12607 2018-09-06 2021-09-06 2018 2021
## 12608 2018-06-15 2021-06-14 2018 2021
## 12609 2017-11-19 2020-11-10 2017 2020
## 12610 2018-04-17 2021-04-16 2018 2021
## 12611 2018-09-11 2021-09-11 2018 2021
## 12612 2018-09-13 2021-09-12 2018 2021
## 12613 2017-10-08 2020-10-08 2017 2020
## 12614 2018-06-11 2021-06-10 2018 2021
## 12615 2018-08-13 2021-08-13 2018 2021
## 12616 2018-10-07 2021-10-07 2018 2021
## 12617 2018-08-14 2021-08-14 2018 2021
## 12618 2018-09-09 2021-09-09 2018 2021
## 12619 2018-08-27 2021-08-26 2018 2021
## 12620 2018-09-12 2021-09-11 2018 2021
## 12621 2018-09-11 2021-09-10 2018 2021
## 12622 2018-08-31 2021-08-30 2018 2021
## 12623 2018-04-09 2021-04-09 2018 2021
## 12624 2018-09-13 2021-09-12 2018 2021
## 12625 2018-09-11 2021-09-10 2018 2021
## 12626 2017-12-10 2020-12-05 2017 2020
## 12627 2018-09-05 2021-09-05 2018 2021
## 12628 2018-08-31 2021-08-29 2018 2021
## 12629 2018-06-24 2021-06-23 2018 2021
## 12630 2017-11-20 2020-11-19 2017 2020
## 12631 2017-12-10 2020-12-09 2017 2020
## 12632 2018-09-18 2021-09-17 2018 2021
## 12633 2018-09-03 2021-09-02 2018 2021
## 12634 2018-02-14 2021-02-13 2018 2021
## 12635 2018-09-08 2021-09-07 2018 2021
## 12636 2018-08-28 2021-08-27 2018 2021
## 12637 2019-03-05 2022-03-02 2019 2022
## 12638 2018-09-20 2021-09-19 2018 2021
## 12639 2018-08-31 2021-08-30 2018 2021
## 12640 2018-08-19 2021-08-19 2018 2021
## 12641 2018-08-26 2021-08-25 2018 2021
## 12642 2018-08-12 2021-08-11 2018 2021
## 12643 2018-06-30 2021-06-29 2018 2021
## 12644 2018-10-16 2021-10-15 2018 2021
## 12645 2018-06-17 2021-06-16 2018 2021
## 12646 2018-08-30 2021-08-29 2018 2021
## 12647 2018-05-20 2021-05-20 2018 2021
## 12648 2018-05-30 2021-05-28 2018 2021
## 12649 2018-08-15 2021-07-14 2018 2021
## 12650 2018-08-14 2021-08-13 2018 2021
## 12651 2018-08-31 2021-08-30 2018 2021
## 12652 2018-04-08 2021-04-08 2018 2021
## 12653 2018-08-31 2021-08-31 2018 2021
## 12654 2018-07-16 2021-07-15 2018 2021
## 12655 2018-01-22 2020-12-30 2018 2020
## 12656 2018-07-01 2021-06-30 2018 2021
## 12657 2018-08-22 2021-08-21 2018 2021
## 12658 2018-08-26 2021-08-25 2018 2021
## 12659 2018-07-10 2021-07-10 2018 2021
## 12660 2018-09-03 2021-09-02 2018 2021
## 12661 2017-11-09 2020-11-09 2017 2020
## 12662 2018-06-04 2019-06-29 2018 2019
## 12663 2018-01-30 2021-01-29 2018 2021
## 12664 2018-08-20 2021-08-19 2018 2021
## 12665 2018-09-05 2021-09-04 2018 2021
## 12666 2018-05-06 2021-05-05 2018 2021
## 12667 2018-12-31 2021-12-28 2018 2021
## 12668 2017-11-26 2020-08-04 2017 2020
## 12669 2018-01-22 2021-01-22 2018 2021
## 12670 2017-12-31 2020-12-30 2017 2020
## 12671 2018-09-01 2021-08-31 2018 2021
## 12672 2018-09-11 2021-09-10 2018 2021
## 12673 2018-08-22 2021-08-21 2018 2021
## 12674 2018-01-28 2021-01-27 2018 2021
## 12675 2018-04-17 2021-04-16 2018 2021
## 12676 2018-09-10 2021-09-09 2018 2021
## 12677 2019-01-02 2022-01-01 2019 2022
## 12678 2018-08-25 2021-08-24 2018 2021
## 12679 2018-08-19 2021-08-18 2018 2021
## 12680 2017-10-16 2020-10-15 2017 2020
## 12681 2018-09-24 2021-09-23 2018 2021
## 12682 2018-09-17 2021-09-17 2018 2021
## 12683 2018-08-31 2021-08-31 2018 2021
## 12684 2018-07-14 2021-07-13 2018 2021
## 12685 2018-07-25 2021-07-25 2018 2021
## 12686 2018-08-30 2021-08-30 2018 2021
## 12687 2018-03-21 2021-03-15 2018 2021
## 12688 2018-09-13 2021-09-12 2018 2021
## 12689 2017-12-26 2020-12-25 2017 2020
## 12690 2018-08-31 2021-08-30 2018 2021
## 12691 2018-08-10 2021-08-09 2018 2021
## 12692 2017-10-24 2020-10-23 2017 2020
## 12693 2018-09-07 2021-09-06 2018 2021
## 12694 2018-08-17 2021-08-17 2018 2021
## 12695 2017-12-10 2020-12-09 2017 2020
## 12696 2017-10-18 2020-10-17 2017 2020
## 12697 2018-02-12 2021-02-11 2018 2021
## 12698 2018-08-29 2021-08-29 2018 2021
## 12699 2018-06-26 2021-06-25 2018 2021
## 12700 2018-05-22 2021-05-21 2018 2021
## 12701 2018-09-15 2021-09-15 2018 2021
## 12702 2018-07-01 2021-07-01 2018 2021
## 12703 2018-09-19 2021-09-19 2018 2021
## 12704 2018-09-11 2021-09-10 2018 2021
## 12705 2018-08-22 2021-08-21 2018 2021
## 12706 2018-02-22 2021-02-22 2018 2021
## 12707 2018-09-19 2021-09-19 2018 2021
## 12708 2018-08-31 2021-08-30 2018 2021
## 12709 2018-05-22 2021-05-21 2018 2021
## 12710 2018-09-19 2021-09-18 2018 2021
## 12711 2018-02-28 2021-02-27 2018 2021
## 12712 2018-09-09 2021-09-08 2018 2021
## 12713 2018-09-29 2021-09-28 2018 2021
## 12714 2018-06-27 2021-06-26 2018 2021
## 12715 2018-11-02 2021-11-01 2018 2021
## 12716 2018-06-25 2021-06-25 2018 2021
## 12717 2018-09-20 2021-09-19 2018 2021
## 12718 2018-06-13 2021-06-12 2018 2021
## 12719 2018-01-30 2021-01-29 2018 2021
## 12720 2018-08-30 2021-08-29 2018 2021
## 12721 2018-08-18 2021-08-17 2018 2021
## 12722 2018-03-29 2021-03-28 2018 2021
## 12723 2018-08-12 2021-08-12 2018 2021
## 12724 2017-11-02 2020-11-01 2017 2020
## 12725 2018-07-28 2021-07-27 2018 2021
## 12726 2018-09-02 2021-09-01 2018 2021
## 12727 2018-09-01 2021-08-31 2018 2021
## 12728 2018-04-30 2021-04-29 2018 2021
## 12729 2018-09-24 2021-09-23 2018 2021
## 12730 2018-01-01 2020-12-31 2018 2020
## 12731 2018-04-30 2021-04-29 2018 2021
## 12732 2018-08-31 2021-08-30 2018 2021
## 12733 2018-09-11 2021-09-10 2018 2021
## 12734 2018-03-14 2021-03-13 2018 2021
## 12735 2018-08-30 2021-08-30 2018 2021
## 12736 2018-07-31 2021-07-30 2018 2021
## 12737 2018-09-17 2021-09-16 2018 2021
## 12738 2017-12-31 2020-12-30 2017 2020
## 12739 2018-09-08 2021-09-07 2018 2021
## 12740 2018-07-12 2019-09-29 2018 2019
## 12741 2017-12-10 2020-01-07 2017 2020
## 12742 2018-07-11 2021-07-10 2018 2021
## 12743 2018-08-14 2021-07-29 2018 2021
## 12744 2018-08-29 2021-08-28 2018 2021
## 12745 2018-09-06 2021-09-05 2018 2021
## 12746 2018-09-09 2021-09-09 2018 2021
## 12747 2018-09-17 2021-09-16 2018 2021
## 12748 2018-06-30 2021-06-29 2018 2021
## 12749 2017-10-25 2020-10-24 2017 2020
## 12750 2018-09-24 2021-09-23 2018 2021
## 12751 2018-09-01 2021-08-31 2018 2021
## 12752 2018-01-09 2021-01-08 2018 2021
## 12753 2018-09-20 2021-09-20 2018 2021
## 12754 2019-01-24 2021-02-01 2019 2021
## 12755 2017-12-09 2020-12-09 2017 2020
## 12756 2018-08-31 2021-08-30 2018 2021
## 12757 2018-08-31 2021-08-30 2018 2021
## 12758 2018-07-01 2021-07-01 2018 2021
## 12759 2018-09-01 2021-08-31 2018 2021
## 12760 2019-01-09 2022-01-08 2019 2022
## 12761 2018-04-30 2021-04-29 2018 2021
## 12762 2018-09-04 2021-09-04 2018 2021
## 12763 2018-01-31 2021-01-30 2018 2021
## 12764 2018-04-29 2021-04-29 2018 2021
## 12765 2018-08-28 2021-08-27 2018 2021
## 12766 2018-02-04 2021-02-03 2018 2021
## 12767 2018-08-14 2021-08-13 2018 2021
## 12768 2018-09-10 2021-09-09 2018 2021
## 12769 2018-07-19 2021-07-19 2018 2021
## 12770 2017-11-26 2020-11-25 2017 2020
## 12771 2018-03-25 2021-03-25 2018 2021
## 12772 2018-08-15 2021-08-14 2018 2021
## 12773 2019-01-01 2021-12-31 2019 2021
## 12774 2018-12-13 2021-12-12 2018 2021
## 12775 2018-09-19 2021-09-19 2018 2021
## 12776 2017-12-28 2020-12-25 2017 2020
## 12777 2018-08-19 2021-08-19 2018 2021
## 12778 2018-08-31 2021-08-31 2018 2021
## 12779 2018-05-13 2021-05-12 2018 2021
## 12780 2018-09-30 2021-08-26 2018 2021
## 12781 2017-10-08 2020-10-08 2017 2020
## 12782 2018-09-16 2021-09-15 2018 2021
## 12783 2018-08-08 2021-08-07 2018 2021
## 12784 2018-09-18 2021-09-17 2018 2021
## 12785 2018-07-10 2021-07-09 2018 2021
## 12786 2018-06-14 2021-06-14 2018 2021
## 12787 2018-08-02 2021-08-01 2018 2021
## 12788 2018-03-27 2021-03-26 2018 2021
## 12789 2018-01-04 2021-01-03 2018 2021
## 12790 2018-03-25 2021-03-24 2018 2021
## 12791 2017-12-26 2020-12-25 2017 2020
## 12792 2019-02-28 2022-02-27 2019 2022
## 12793 2018-09-19 2021-09-18 2018 2021
## 12794 2018-07-27 2021-07-26 2018 2021
## 12795 2018-07-24 2021-07-23 2018 2021
## 12796 2018-08-31 2021-08-30 2018 2021
## 12797 2018-01-09 2021-01-08 2018 2021
## 12798 2018-09-02 2021-08-30 2018 2021
## 12799 2018-05-29 2021-05-28 2018 2021
## 12800 2018-02-08 2021-02-07 2018 2021
## 12801 2018-10-31 2021-10-30 2018 2021
## 12802 2018-07-19 2021-07-18 2018 2021
## 12803 2018-08-24 2021-08-24 2018 2021
## 12804 2019-01-10 2022-01-10 2019 2022
## 12805 2018-08-01 2021-07-31 2018 2021
## 12806 2018-04-26 2021-04-25 2018 2021
## 12807 2018-03-04 2021-03-03 2018 2021
## 12808 2018-09-10 2021-09-09 2018 2021
## 12809 2018-09-04 2021-09-03 2018 2021
## 12810 2018-09-08 2021-09-07 2018 2021
## 12811 2018-04-11 2021-03-20 2018 2021
## 12812 2018-07-12 2021-07-11 2018 2021
## 12813 2018-08-29 2021-08-28 2018 2021
## 12814 2018-01-17 2021-01-16 2018 2021
## 12815 2018-08-28 2021-08-28 2018 2021
## 12816 2018-05-03 2021-05-02 2018 2021
## 12817 2017-10-23 2020-10-23 2017 2020
## 12818 2018-11-15 2021-11-14 2018 2021
## 12819 2018-09-14 2021-09-13 2018 2021
## 12820 2018-09-01 2021-08-31 2018 2021
## 12821 2018-01-12 2021-01-11 2018 2021
## 12822 2018-06-30 2020-07-24 2018 2020
## 12823 2018-09-04 2021-09-03 2018 2021
## 12824 2019-01-31 2022-01-28 2019 2022
## 12825 2018-09-30 2021-09-29 2018 2021
## 12826 2018-09-30 2021-09-27 2018 2021
## 12827 2018-04-08 2021-04-08 2018 2021
## 12828 2018-10-15 2021-10-14 2018 2021
## 12829 2018-05-14 2021-05-13 2018 2021
## 12830 2018-11-03 2021-11-02 2018 2021
## 12831 2018-08-09 2020-08-08 2018 2020
## 12832 2018-09-07 2021-09-04 2018 2021
## 12833 2018-08-19 2021-08-18 2018 2021
## 12834 2018-07-23 2021-07-22 2018 2021
## 12835 2018-08-29 2021-08-28 2018 2021
## 12836 2018-09-24 2021-09-23 2018 2021
## 12837 2018-09-10 2021-09-09 2018 2021
## 12838 2018-09-23 2021-09-23 2018 2021
## 12839 2018-08-31 2021-08-30 2018 2021
## 12840 2018-07-01 2021-07-01 2018 2021
## 12841 2018-02-28 2021-02-27 2018 2021
## 12842 2018-04-14 2021-04-13 2018 2021
## 12843 2018-06-07 2021-06-03 2018 2021
## 12844 2018-07-31 2021-07-30 2018 2021
## 12845 2018-05-26 2021-05-25 2018 2021
## 12846 2018-08-17 2021-08-16 2018 2021
## 12847 2018-05-31 2021-05-28 2018 2021
## 12848 2018-09-06 2021-09-05 2018 2021
## 12849 2018-06-24 2021-06-24 2018 2021
## 12850 2018-08-01 2021-07-31 2018 2021
## 12851 2018-07-28 2021-07-27 2018 2021
## 12852 2018-06-14 2021-06-14 2018 2021
## 12853 2018-03-04 2021-03-03 2018 2021
## 12854 2018-08-19 2021-08-18 2018 2021
## 12855 2018-03-01 2019-10-17 2018 2019
## 12856 2018-05-29 2019-09-16 2018 2019
## 12857 2017-10-01 2020-10-01 2017 2020
## 12858 2018-04-29 2021-04-28 2018 2021
## 12859 2018-06-30 2021-06-29 2018 2021
## 12860 2018-09-14 2021-09-13 2018 2021
## 12861 2018-10-28 2021-10-27 2018 2021
## 12862 2018-09-01 2021-08-31 2018 2021
## 12863 2018-07-01 2021-06-29 2018 2021
## 12864 2018-04-30 2021-04-29 2018 2021
## 12865 2018-09-06 2021-09-05 2018 2021
## 12866 2019-03-16 2022-03-15 2019 2022
## 12867 2018-12-10 2021-12-10 2018 2021
## 12868 2018-05-28 2021-05-27 2018 2021
## 12869 2018-02-04 2021-02-03 2018 2021
## 12870 2017-11-22 2019-09-06 2017 2019
## 12871 2018-05-26 2021-05-25 2018 2021
## 12872 2018-08-09 2021-08-08 2018 2021
## 12873 2018-09-17 2021-09-17 2018 2021
## 12874 2017-11-30 2020-11-29 2017 2020
## 12875 2018-07-31 2021-07-31 2018 2021
## 12876 2018-05-24 2021-05-23 2018 2021
## 12877 2018-08-31 2021-08-30 2018 2021
## 12878 2018-05-02 2020-09-29 2018 2020
## 12879 2018-07-22 2021-07-21 2018 2021
## 12880 2018-09-13 2021-09-12 2018 2021
## 12881 2018-08-18 2021-08-17 2018 2021
## 12882 2018-08-05 2021-08-04 2018 2021
## 12883 2018-09-11 2021-09-10 2018 2021
## 12884 2018-09-10 2021-09-09 2018 2021
## 12885 2017-11-02 2020-11-02 2017 2020
## 12886 2018-10-07 2021-10-04 2018 2021
## 12887 2018-07-25 2021-07-24 2018 2021
## 12888 2018-01-09 2021-01-08 2018 2021
## 12889 2017-11-12 2020-11-11 2017 2020
## 12890 2018-07-15 2021-07-14 2018 2021
## 12891 2018-07-22 2021-07-15 2018 2021
## 12892 2017-10-04 2020-10-03 2017 2020
## 12893 2018-08-11 2021-08-10 2018 2021
## 12894 2018-02-28 2021-02-27 2018 2021
## 12895 2018-11-30 2021-11-29 2018 2021
## 12896 2018-04-30 2021-04-29 2018 2021
## 12897 2018-04-30 2021-04-30 2018 2021
## 12898 2018-04-25 2021-04-24 2018 2021
## 12899 2018-06-26 2021-06-25 2018 2021
## 12900 2018-12-12 2021-12-11 2018 2021
## 12901 2018-08-11 2021-08-10 2018 2021
## 12902 2018-10-14 2021-10-13 2018 2021
## 12903 2018-09-14 2021-09-13 2018 2021
## 12904 2019-01-11 2022-01-11 2019 2022
## 12905 2018-07-31 2021-07-30 2018 2021
## 12906 2018-04-25 2021-04-25 2018 2021
## 12907 2018-03-01 2021-02-28 2018 2021
## 12908 2018-08-31 2021-08-30 2018 2021
## 12909 2018-09-04 2021-09-03 2018 2021
## 12910 2019-01-05 2020-07-04 2019 2020
## 12911 2018-08-31 2021-08-30 2018 2021
## 12912 2018-09-16 2021-09-16 2018 2021
## 12913 2018-01-28 2021-01-28 2018 2021
## 12914 2018-09-14 2021-09-13 2018 2021
## 12915 2018-09-09 2021-09-09 2018 2021
## 12916 2018-08-31 2021-08-30 2018 2021
## 12917 2018-08-15 2021-08-14 2018 2021
## 12918 2019-01-03 2022-01-02 2019 2022
## 12919 2018-09-10 2021-09-09 2018 2021
## 12920 2018-09-15 2021-09-15 2018 2021
## 12921 2018-08-12 2021-08-11 2018 2021
## 12922 2018-08-31 2021-08-30 2018 2021
## 12923 2017-11-16 2020-11-15 2017 2020
## 12924 2017-11-12 2020-11-11 2017 2020
## 12925 2018-04-09 2020-05-30 2018 2020
## 12926 2018-08-12 2021-08-11 2018 2021
## 12927 2018-03-28 2021-03-28 2018 2021
## 12928 2018-06-18 2021-06-18 2018 2021
## 12929 2018-08-13 2021-08-13 2018 2021
## 12930 2018-03-31 2021-03-30 2018 2021
## 12931 2018-08-31 2021-08-30 2018 2021
## 12932 2017-10-16 2020-10-15 2017 2020
## 12933 2017-10-18 2020-10-17 2017 2020
## 12934 2018-05-22 2021-05-21 2018 2021
## 12935 2018-08-01 2021-07-31 2018 2021
## 12936 2018-09-03 2021-09-02 2018 2021
## 12937 2018-09-20 2021-09-20 2018 2021
## 12938 2018-09-23 2021-09-23 2018 2021
## 12939 2018-02-01 2021-01-31 2018 2021
## 12940 2018-09-08 2021-09-07 2018 2021
## 12941 2018-09-19 2021-09-19 2018 2021
## 12942 2018-09-17 2021-09-17 2018 2021
## 12943 2018-08-16 2021-08-15 2018 2021
## 12944 2018-09-17 2021-09-16 2018 2021
## 12945 2018-08-05 2021-08-04 2018 2021
## 12946 2018-01-17 2021-01-16 2018 2021
## 12947 2018-09-06 2021-09-05 2018 2021
## 12948 2018-09-01 2021-08-31 2018 2021
## 12949 2018-09-06 2021-09-06 2018 2021
## 12950 2018-04-18 2021-04-18 2018 2021
## 12951 2018-09-18 2021-09-18 2018 2021
## 12952 2018-07-30 2020-03-21 2018 2020
## 12953 2017-10-17 2020-10-16 2017 2020
## 12954 2017-12-13 2020-12-13 2017 2020
## 12955 2018-07-14 2021-07-13 2018 2021
## 12956 2018-07-31 2021-07-30 2018 2021
## 12957 2018-08-31 2021-08-31 2018 2021
## 12958 2018-09-22 2021-09-22 2018 2021
## 12959 2018-08-19 2021-08-18 2018 2021
## 12960 2018-03-31 2021-03-30 2018 2021
## 12961 2018-09-06 2021-09-05 2018 2021
## 12962 2018-01-23 2021-01-22 2018 2021
## 12963 2018-08-12 2021-08-11 2018 2021
## 12964 2018-02-11 2021-02-10 2018 2021
## 12965 2018-08-23 2021-08-22 2018 2021
## 12966 2018-08-31 2021-08-30 2018 2021
## 12967 2018-05-08 2021-05-08 2018 2021
## 12968 2017-10-29 2020-10-29 2017 2020
## 12969 2018-09-02 2021-09-02 2018 2021
## 12970 2018-07-31 2021-07-31 2018 2021
## 12971 2018-04-26 2021-04-25 2018 2021
## 12972 2018-08-17 2021-08-16 2018 2021
## 12973 2018-08-10 2021-08-09 2018 2021
## 12974 2018-07-16 2021-07-15 2018 2021
## 12975 2018-05-25 2021-05-24 2018 2021
## 12976 2018-08-31 2021-08-31 2018 2021
## 12977 2018-03-02 2018-04-25 2018 2018
## 12978 2018-04-15 2021-04-14 2018 2021
## 12979 2017-12-10 2020-12-09 2017 2020
## 12980 2018-03-25 2021-03-24 2018 2021
## 12981 2018-08-12 2021-08-11 2018 2021
## 12982 2018-09-18 2021-09-17 2018 2021
## 12983 2018-05-13 2021-05-12 2018 2021
## 12984 2018-09-02 2018-11-01 2018 2018
## 12985 2018-08-31 2021-08-31 2018 2021
## 12986 2018-07-05 2021-07-04 2018 2021
## 12987 2018-04-26 2021-04-25 2018 2021
## 12988 2018-06-14 2021-06-14 2018 2021
## 12989 2017-11-30 2020-11-29 2017 2020
## 12990 2018-09-30 2021-09-30 2018 2021
## 12991 2018-09-06 2021-09-05 2018 2021
## 12992 2018-05-17 2019-06-20 2018 2019
## 12993 2018-09-07 2021-09-07 2018 2021
## 12994 2018-08-31 2021-08-30 2018 2021
## 12995 2018-09-13 2021-09-12 2018 2021
## 12996 2018-09-10 2021-09-10 2018 2021
## 12997 2018-04-13 2021-04-12 2018 2021
## 12998 2018-09-16 2021-09-15 2018 2021
## 12999 2018-09-10 2021-09-09 2018 2021
## 13000 2018-07-31 2021-07-30 2018 2021
## 13001 2018-09-07 2021-09-06 2018 2021
## 13002 2018-01-01 2018-08-30 2018 2018
## 13003 2018-08-31 2021-08-30 2018 2021
## 13004 2018-02-11 2021-02-11 2018 2021
## 13005 2018-08-15 2021-08-14 2018 2021
## 13006 2018-08-28 2021-08-27 2018 2021
## 13007 2018-09-04 2021-09-04 2018 2021
## 13008 2018-09-05 2021-09-04 2018 2021
## 13009 2018-09-09 2021-09-08 2018 2021
## 13010 2018-03-05 2021-03-04 2018 2021
## 13011 2018-08-28 2021-08-27 2018 2021
## 13012 2018-01-31 2021-01-30 2018 2021
## 13013 2018-01-09 2021-01-08 2018 2021
## 13014 2018-09-18 2021-09-17 2018 2021
## 13015 2018-07-31 2021-07-30 2018 2021
## 13016 2018-07-01 2021-06-30 2018 2021
## 13017 2018-01-27 2021-01-26 2018 2021
## 13018 2018-09-25 2021-09-24 2018 2021
## 13019 2018-08-18 2021-08-17 2018 2021
## 13020 2017-10-12 2020-10-11 2017 2020
## 13021 2018-09-08 2021-09-08 2018 2021
## 13022 2018-07-29 2021-07-28 2018 2021
## 13023 2018-06-17 2021-06-16 2018 2021
## 13024 2017-10-05 2020-10-04 2017 2020
## 13025 2017-11-13 2020-11-12 2017 2020
## 13026 2018-08-02 2021-08-01 2018 2021
## 13027 2018-09-06 2021-09-05 2018 2021
## 13028 2018-01-16 2021-01-15 2018 2021
## 13029 2019-01-22 2022-01-21 2019 2022
## 13030 2018-09-17 2021-09-16 2018 2021
## 13031 2018-09-30 2019-02-24 2018 2019
## 13032 2018-04-30 2021-04-29 2018 2021
## 13033 2017-10-22 2020-10-21 2017 2020
## 13034 2018-07-04 2021-07-03 2018 2021
## 13035 2017-12-25 2020-12-24 2017 2020
## 13036 2018-09-02 2020-12-30 2018 2020
## 13037 2018-02-17 2021-02-16 2018 2021
## 13038 2018-07-31 2021-07-30 2018 2021
## 13039 2018-05-12 2021-04-29 2018 2021
## 13040 2018-09-09 2021-09-08 2018 2021
## 13041 2017-11-28 2020-11-27 2017 2020
## 13042 2018-10-19 2021-10-19 2018 2021
## 13043 2018-09-04 2021-09-03 2018 2021
## 13044 2018-08-31 2021-08-30 2018 2021
## 13045 2018-09-19 2021-09-18 2018 2021
## 13046 2018-08-31 2021-08-31 2018 2021
## 13047 2017-11-20 2020-11-19 2017 2020
## 13048 2018-04-22 2021-04-21 2018 2021
## 13049 2018-05-30 2021-05-29 2018 2021
## 13050 2018-02-22 2020-09-12 2018 2020
## 13051 2018-09-03 2021-09-02 2018 2021
## 13052 2018-09-05 2021-09-04 2018 2021
## 13053 2018-09-04 2021-09-04 2018 2021
## 13054 2018-04-24 2021-04-24 2018 2021
## 13055 2018-09-17 2021-09-16 2018 2021
## 13056 2018-05-13 2021-05-12 2018 2021
## 13057 2018-08-27 2021-08-26 2018 2021
## 13058 2018-01-15 2021-01-14 2018 2021
## 13059 2018-08-31 2021-08-31 2018 2021
## 13060 2018-06-26 2021-06-25 2018 2021
## 13061 2018-03-15 2021-03-14 2018 2021
## 13062 2018-08-31 2021-08-31 2018 2021
## 13063 2018-04-01 2021-03-29 2018 2021
## 13064 2018-07-31 2021-07-30 2018 2021
## 13065 2018-10-31 2021-10-30 2018 2021
## 13066 2018-07-31 2021-07-30 2018 2021
## 13067 2018-07-25 2021-07-24 2018 2021
## 13068 2017-10-08 2020-10-07 2017 2020
## 13069 2018-09-09 2021-09-09 2018 2021
## 13070 2018-07-30 2021-07-29 2018 2021
## 13071 2018-07-15 2021-07-14 2018 2021
## 13072 2018-04-30 2021-04-29 2018 2021
## 13073 2018-08-03 2021-08-03 2018 2021
## 13074 2018-07-15 2021-07-15 2018 2021
## 13075 2018-08-31 2021-08-31 2018 2021
## 13076 2018-08-31 2021-08-30 2018 2021
## 13077 2018-08-05 2018-10-22 2018 2018
## 13078 2018-09-01 2021-09-01 2018 2021
## 13079 2018-02-06 2021-02-05 2018 2021
## 13080 2018-06-12 2021-06-11 2018 2021
## 13081 2018-07-25 2021-07-24 2018 2021
## 13082 2018-07-22 2021-07-21 2018 2021
## 13083 2018-06-14 2021-06-14 2018 2021
## 13084 2017-11-30 2020-11-30 2017 2020
## 13085 2018-06-14 2021-06-14 2018 2021
## 13086 2017-10-15 2020-10-15 2017 2020
## 13087 2017-11-12 2020-11-11 2017 2020
## 13088 2018-06-03 2021-06-03 2018 2021
## 13089 2018-04-01 2021-04-01 2018 2021
## 13090 2018-12-06 2021-12-06 2018 2021
## 13091 2018-08-08 2021-08-08 2018 2021
## 13092 2018-09-30 2021-09-29 2018 2021
## 13093 2018-05-30 2021-05-29 2018 2021
## 13094 2018-01-01 2021-01-01 2018 2021
## 13095 2018-06-14 2021-06-13 2018 2021
## 13096 2018-09-11 2021-09-10 2018 2021
## 13097 2018-06-12 2021-06-11 2018 2021
## 13098 2018-08-27 2021-08-26 2018 2021
## 13099 2018-04-05 2021-04-04 2018 2021
## 13100 2018-03-18 2021-03-17 2018 2021
## 13101 2017-10-08 2020-02-25 2017 2020
## 13102 2017-10-03 2020-10-02 2017 2020
## 13103 2018-06-03 2021-06-02 2018 2021
## 13104 2018-08-22 2021-08-21 2018 2021
## 13105 2017-10-29 2019-12-03 2017 2019
## 13106 2018-03-15 2021-03-14 2018 2021
## 13107 2018-06-14 2021-06-14 2018 2021
## 13108 2018-04-30 2021-04-29 2018 2021
## 13109 2018-08-14 2021-08-13 2018 2021
## 13110 2018-01-30 2020-01-29 2018 2020
## 13111 2018-06-30 2021-06-29 2018 2021
## 13112 2018-09-07 2021-08-30 2018 2021
## 13113 2018-06-13 2021-06-12 2018 2021
## 13114 2018-01-31 2021-01-30 2018 2021
## 13115 2018-04-12 2021-04-11 2018 2021
## 13116 2018-08-27 2021-08-27 2018 2021
## 13117 2018-07-10 2018-09-29 2018 2018
## 13118 2018-02-28 2021-02-27 2018 2021
## 13119 2018-05-06 2021-05-05 2018 2021
## 13120 2018-06-07 2021-06-06 2018 2021
## 13121 2018-03-14 2021-03-13 2018 2021
## 13122 2018-08-09 2021-08-08 2018 2021
## 13123 2018-09-15 2021-09-14 2018 2021
## 13124 2018-04-12 2021-04-11 2018 2021
## 13125 2017-12-31 2020-12-28 2017 2020
## 13126 2018-09-30 2021-09-29 2018 2021
## 13127 2018-08-12 2021-08-11 2018 2021
## 13128 2017-11-12 2020-11-11 2017 2020
## 13129 2018-09-07 2021-09-07 2018 2021
## 13130 2018-03-22 2021-03-21 2018 2021
## 13131 2018-09-14 2021-09-13 2018 2021
## 13132 2018-04-24 2019-12-21 2018 2019
## 13133 2018-07-14 2021-07-14 2018 2021
## 13134 2017-10-09 2020-10-08 2017 2020
## 13135 2018-09-05 2021-09-04 2018 2021
## 13136 2018-09-04 2021-09-03 2018 2021
## 13137 2018-05-06 2021-05-05 2018 2021
## 13138 2018-06-13 2021-06-13 2018 2021
## 13139 2018-09-14 2021-09-14 2018 2021
## 13140 2018-08-12 2021-08-11 2018 2021
## 13141 2018-07-31 2021-07-31 2018 2021
## 13142 2017-12-17 2020-12-16 2017 2020
## 13143 2018-09-05 2021-09-04 2018 2021
## 13144 2018-04-07 2021-04-07 2018 2021
## 13145 2018-11-06 2021-11-06 2018 2021
## 13146 2017-11-12 2020-11-12 2017 2020
## 13147 2018-06-27 2021-06-26 2018 2021
## 13148 2018-09-04 2021-09-03 2018 2021
## 13149 2018-01-07 2020-12-06 2018 2020
## 13150 2018-08-02 2021-08-01 2018 2021
## 13151 2018-09-15 2021-09-14 2018 2021
## 13152 2017-12-07 2020-12-06 2017 2020
## 13153 2019-01-23 2020-06-29 2019 2020
## 13154 2018-02-19 2019-12-06 2018 2019
## 13155 2018-11-02 2021-11-02 2018 2021
## 13156 2018-08-10 2021-08-09 2018 2021
## 13157 2018-09-16 2021-09-15 2018 2021
## 13158 2018-08-15 2021-08-13 2018 2021
## 13159 2018-08-31 2021-08-29 2018 2021
## 13160 2018-06-10 2021-06-09 2018 2021
## 13161 2017-10-29 2020-10-28 2017 2020
## 13162 2018-08-24 2021-08-24 2018 2021
## 13163 2018-05-11 2021-05-10 2018 2021
## 13164 2018-09-10 2021-09-09 2018 2021
## 13165 2018-07-18 2021-07-17 2018 2021
## 13166 2018-08-24 2021-08-23 2018 2021
## 13167 2018-08-14 2021-08-13 2018 2021
## 13168 2018-06-17 2021-06-16 2018 2021
## 13169 2018-03-05 2021-03-04 2018 2021
## 13170 2018-08-29 2021-08-28 2018 2021
## 13171 2018-09-19 2021-09-19 2018 2021
## 13172 2018-03-05 2021-03-04 2018 2021
## 13173 2018-02-19 2021-02-18 2018 2021
## 13174 2018-06-30 2021-06-30 2018 2021
## 13175 2018-09-16 2021-09-16 2018 2021
## 13176 2018-08-28 2021-08-28 2018 2021
## 13177 2018-06-22 2021-06-21 2018 2021
## 13178 2018-08-26 2021-08-25 2018 2021
## 13179 2017-10-14 2020-10-14 2017 2020
## 13180 2018-09-09 2021-09-08 2018 2021
## 13181 2018-08-26 2021-08-26 2018 2021
## 13182 2018-08-26 2021-08-25 2018 2021
## 13183 2018-09-07 2019-09-29 2018 2019
## 13184 2017-12-10 2020-12-09 2017 2020
## 13185 2018-07-12 2021-07-12 2018 2021
## 13186 2018-09-06 2021-09-05 2018 2021
## 13187 2018-09-05 2021-09-04 2018 2021
## 13188 2018-08-21 2021-08-20 2018 2021
## 13189 2018-06-30 2021-06-29 2018 2021
## 13190 2018-07-17 2021-07-16 2018 2021
## 13191 2018-09-14 2021-09-14 2018 2021
## 13192 2018-09-05 2021-08-29 2018 2021
## 13193 2018-09-10 2021-09-09 2018 2021
## 13194 2018-08-29 2021-08-29 2018 2021
## 13195 2018-07-15 2021-07-14 2018 2021
## 13196 2018-09-08 2021-09-07 2018 2021
## 13197 2018-06-30 2021-06-30 2018 2021
## 13198 2017-10-19 2020-10-19 2017 2020
## 13199 2018-07-25 2021-07-24 2018 2021
## 13200 2018-02-25 2020-05-06 2018 2020
## 13201 2018-01-09 2021-01-08 2018 2021
## 13202 2018-09-05 2021-09-05 2018 2021
## 13203 2018-11-15 2021-11-15 2018 2021
## 13204 2018-06-28 2021-06-27 2018 2021
## 13205 2018-01-21 2021-01-20 2018 2021
## 13206 2018-07-31 2021-07-30 2018 2021
## 13207 2018-09-06 2021-09-05 2018 2021
## 13208 2017-11-04 2020-11-03 2017 2020
## 13209 2018-05-13 2020-05-17 2018 2020
## 13210 2018-07-18 2021-07-17 2018 2021
## 13211 2018-08-12 2021-08-11 2018 2021
## 13212 2018-04-10 2021-04-10 2018 2021
## 13213 2018-06-06 2021-06-05 2018 2021
## 13214 2017-12-04 2020-12-03 2017 2020
## 13215 2018-09-19 2021-09-18 2018 2021
## 13216 2018-01-22 2021-01-21 2018 2021
## 13217 2018-09-17 2021-09-17 2018 2021
## 13218 2018-09-03 2021-09-02 2018 2021
## 13219 2018-02-28 2021-02-27 2018 2021
## 13220 2017-12-10 2020-12-09 2017 2020
## 13221 2018-09-17 2021-09-17 2018 2021
## 13222 2018-09-05 2021-09-04 2018 2021
## 13223 2018-08-31 2021-08-30 2018 2021
## 13224 2018-04-01 2021-04-01 2018 2021
## 13225 2018-08-31 2021-08-30 2018 2021
## 13226 2018-04-01 2021-04-01 2018 2021
## 13227 2018-09-17 2021-09-16 2018 2021
## 13228 2018-01-21 2021-01-20 2018 2021
## 13229 2018-09-15 2021-09-14 2018 2021
## 13230 2018-09-14 2021-09-13 2018 2021
## 13231 2018-03-15 2021-03-14 2018 2021
## 13232 2018-07-11 2021-07-11 2018 2021
## 13233 2018-09-09 2021-09-08 2018 2021
## 13234 2018-05-20 2021-05-19 2018 2021
## 13235 2018-08-19 2021-08-18 2018 2021
## 13236 2018-01-08 2020-04-21 2018 2020
## 13237 2018-09-02 2020-12-30 2018 2020
## 13238 2017-12-03 2020-12-03 2017 2020
## 13239 2018-04-22 2021-04-21 2018 2021
## 13240 2018-09-14 2021-09-13 2018 2021
## 13241 2018-09-17 2021-09-17 2018 2021
## 13242 2018-01-01 2021-01-01 2018 2021
## 13243 2018-08-22 2021-08-22 2018 2021
## 13244 2018-01-09 2021-01-08 2018 2021
## 13245 2018-05-17 2021-05-16 2018 2021
## 13246 2018-08-04 2021-08-01 2018 2021
## 13247 2018-08-27 2021-08-27 2018 2021
## 13248 2019-01-03 2022-01-02 2019 2022
## 13249 2017-12-31 2020-12-30 2017 2020
## 13250 2018-09-24 2021-09-24 2018 2021
## 13251 2018-09-30 2021-09-29 2018 2021
## 13252 2018-09-12 2021-09-11 2018 2021
## 13253 2018-12-31 2021-12-30 2018 2021
## 13254 2018-08-27 2021-08-26 2018 2021
## 13255 2018-09-06 2021-09-05 2018 2021
## 13256 2018-07-01 2021-06-30 2018 2021
## 13257 2018-08-17 2021-08-16 2018 2021
## 13258 2018-05-31 2021-05-30 2018 2021
## 13259 2018-04-05 2021-04-05 2018 2021
## 13260 2018-04-26 2021-04-26 2018 2021
## 13261 2018-09-04 2021-09-03 2018 2021
## 13262 2018-08-31 2021-08-30 2018 2021
## 13263 2018-04-29 2021-04-28 2018 2021
## 13264 2018-10-31 2021-10-30 2018 2021
## 13265 2018-04-14 2021-04-14 2018 2021
## 13266 2018-03-31 2021-03-31 2018 2021
## 13267 2018-06-30 2021-06-29 2018 2021
## 13268 2018-08-17 2021-08-16 2018 2021
## 13269 2018-09-04 2021-09-03 2018 2021
## 13270 2018-08-31 2021-08-30 2018 2021
## 13271 2018-09-19 2021-09-18 2018 2021
## 13272 2017-11-20 2020-11-19 2017 2020
## 13273 2018-07-04 2021-07-04 2018 2021
## 13274 2018-07-31 2021-07-30 2018 2021
## 13275 2018-01-18 2021-01-17 2018 2021
## 13276 2018-06-14 2021-06-14 2018 2021
## 13277 2018-08-01 2021-07-31 2018 2021
## 13278 2018-09-12 2021-09-12 2018 2021
## 13279 2018-07-03 2020-12-28 2018 2020
## 13280 2018-09-14 2021-09-13 2018 2021
## 13281 2018-09-10 2021-09-09 2018 2021
## 13282 2018-07-31 2021-07-30 2018 2021
## 13283 2018-09-23 2021-09-22 2018 2021
## 13284 2018-08-09 2021-08-09 2018 2021
## 13285 2018-09-14 2021-09-13 2018 2021
## 13286 2018-09-19 2021-09-19 2018 2021
## 13287 2018-01-14 2021-01-14 2018 2021
## 13288 2018-09-01 2021-08-31 2018 2021
## 13289 2018-04-08 2019-09-16 2018 2019
## 13290 2018-07-19 2021-07-18 2018 2021
## 13291 2018-08-12 2021-08-09 2018 2021
## 13292 2018-06-13 2021-06-12 2018 2021
## 13293 2018-09-26 2021-09-25 2018 2021
## 13294 2018-06-19 2021-06-18 2018 2021
## 13295 2018-09-07 2021-09-06 2018 2021
## 13296 2018-08-31 2021-08-30 2018 2021
## 13297 2018-02-25 2021-02-24 2018 2021
## 13298 2018-06-12 2021-06-12 2018 2021
## 13299 2019-01-17 2022-01-16 2019 2022
## 13300 2018-08-31 2021-08-31 2018 2021
## 13301 2018-03-08 2021-03-07 2018 2021
## 13302 2018-08-16 2021-08-15 2018 2021
## 13303 2018-09-11 2021-09-11 2018 2021
## 13304 2018-08-31 2021-08-30 2018 2021
## 13305 2018-08-07 2021-08-06 2018 2021
## 13306 2018-09-06 2021-09-05 2018 2021
## 13307 2018-08-20 2021-08-19 2018 2021
## 13308 2019-01-28 2022-01-27 2019 2022
## 13309 2018-07-18 2021-07-18 2018 2021
## 13310 2018-09-14 2021-09-13 2018 2021
## 13311 2018-04-10 2021-04-09 2018 2021
## 13312 2018-09-13 2021-09-12 2018 2021
## 13313 2018-03-09 2021-03-08 2018 2021
## 13314 2018-09-18 2021-09-17 2018 2021
## 13315 2018-08-31 2021-08-30 2018 2021
## 13316 2018-09-01 2021-08-31 2018 2021
## 13317 2018-09-02 2021-09-01 2018 2021
## 13318 2018-06-30 2021-06-29 2018 2021
## 13319 2017-10-11 2020-10-10 2017 2020
## 13320 2018-06-30 2021-06-29 2018 2021
## 13321 2018-09-15 2021-09-14 2018 2021
## 13322 2018-07-05 2021-07-04 2018 2021
## 13323 2018-04-09 2021-04-09 2018 2021
## 13324 2018-09-01 2021-08-31 2018 2021
## 13325 2018-01-13 2021-01-12 2018 2021
## 13326 2018-01-31 2021-01-31 2018 2021
## 13327 2018-05-21 2021-05-18 2018 2021
## 13328 2018-04-30 2021-04-29 2018 2021
## 13329 2018-07-24 2021-07-23 2018 2021
## 13330 2018-08-12 2021-08-11 2018 2021
## 13331 2018-05-23 2021-05-23 2018 2021
## 13332 2018-06-14 2021-06-14 2018 2021
## 13333 2018-09-05 2021-09-04 2018 2021
## 13334 2018-09-11 2021-09-11 2018 2021
## 13335 2018-09-10 2021-09-10 2018 2021
## 13336 2018-07-08 2021-07-08 2018 2021
## 13337 2017-11-05 2020-11-04 2017 2020
## 13338 2018-08-01 2021-07-31 2018 2021
## 13339 2018-01-09 2021-01-09 2018 2021
## 13340 2018-08-04 2021-08-03 2018 2021
## 13341 2018-07-29 2021-07-29 2018 2021
## 13342 2018-08-31 2020-08-29 2018 2020
## 13343 2018-04-01 2020-12-05 2018 2020
## 13344 2018-07-22 2021-07-21 2018 2021
## 13345 2018-06-19 2021-06-18 2018 2021
## 13346 2018-08-13 2021-08-12 2018 2021
## 13347 2018-09-22 2021-09-21 2018 2021
## 13348 2018-09-05 2021-09-04 2018 2021
## 13349 2018-08-14 2021-08-14 2018 2021
## 13350 2018-09-08 2021-09-07 2018 2021
## 13351 2018-03-31 2021-03-30 2018 2021
## 13352 2018-09-17 2021-09-17 2018 2021
## 13353 2018-08-31 2020-08-30 2018 2020
## 13354 2018-09-12 2021-09-11 2018 2021
## 13355 2018-11-16 2021-11-15 2018 2021
## 13356 2018-03-31 2021-03-30 2018 2021
## 13357 2018-08-16 2021-08-15 2018 2021
## 13358 2017-10-23 2020-10-23 2017 2020
## 13359 2018-08-16 2021-08-15 2018 2021
## 13360 2018-08-28 2021-08-27 2018 2021
## 13361 2018-11-05 2021-11-04 2018 2021
## 13362 2018-02-15 2021-02-14 2018 2021
## 13363 2018-08-31 2021-08-31 2018 2021
## 13364 2018-08-05 2021-08-02 2018 2021
## 13365 2018-06-11 2021-06-10 2018 2021
## 13366 2018-09-16 2021-09-15 2018 2021
## 13367 2018-09-23 2021-09-22 2018 2021
## 13368 2018-08-31 2021-08-30 2018 2021
## 13369 2018-09-10 2021-09-09 2018 2021
## 13370 2018-09-09 2021-09-08 2018 2021
## 13371 2018-09-30 2021-09-29 2018 2021
## 13372 2017-11-26 2020-11-25 2017 2020
## 13373 2018-06-28 2021-06-28 2018 2021
## 13374 2018-09-14 2021-09-13 2018 2021
## 13375 2018-08-31 2021-08-30 2018 2021
## 13376 2018-08-17 2021-08-16 2018 2021
## 13377 2018-06-14 2021-06-14 2018 2021
## 13378 2018-07-31 2021-07-30 2018 2021
## 13379 2017-12-10 2020-12-10 2017 2020
## 13380 2018-08-31 2021-08-30 2018 2021
## 13381 2018-04-08 2021-04-07 2018 2021
## 13382 2018-06-14 2021-06-13 2018 2021
## 13383 2018-02-24 2021-02-24 2018 2021
## 13384 2018-06-03 2021-06-03 2018 2021
## 13385 2018-04-30 2021-04-29 2018 2021
## 13386 2018-09-05 2019-09-04 2018 2019
## 13387 2017-12-17 2020-12-16 2017 2020
## 13388 2018-09-06 2021-09-05 2018 2021
## 13389 2017-11-12 2020-11-11 2017 2020
## 13390 2018-05-29 2021-05-28 2018 2021
## 13391 2019-01-24 2022-01-23 2019 2022
## 13392 2018-09-15 2021-09-14 2018 2021
## 13393 2017-11-05 2020-11-05 2017 2020
## 13394 2018-09-04 2021-09-03 2018 2021
## 13395 2018-09-11 2021-09-10 2018 2021
## 13396 2018-06-11 2021-06-10 2018 2021
## 13397 2018-07-15 2021-07-14 2018 2021
## 13398 2018-05-10 2021-05-09 2018 2021
## 13399 2018-08-22 2021-08-21 2018 2021
## 13400 2018-12-31 2021-12-30 2018 2021
## 13401 2018-01-18 2021-01-17 2018 2021
## 13402 2017-12-05 2020-12-04 2017 2020
## 13403 2018-03-25 2021-03-25 2018 2021
## 13404 2018-12-10 2021-12-10 2018 2021
## 13405 2018-09-04 2021-09-03 2018 2021
## 13406 2018-09-03 2020-12-30 2018 2020
## 13407 2018-08-31 2021-08-30 2018 2021
## 13408 2018-09-14 2021-09-13 2018 2021
## 13409 2017-12-25 2020-12-24 2017 2020
## 13410 2017-12-17 2020-12-17 2017 2020
## 13411 2018-09-04 2021-09-04 2018 2021
## 13412 2018-08-28 2021-08-27 2018 2021
## 13413 2018-09-23 2021-09-23 2018 2021
## 13414 2018-09-17 2019-09-16 2018 2019
## 13415 2018-09-17 2021-09-17 2018 2021
## 13416 2018-05-31 2021-05-30 2018 2021
## 13417 2018-04-22 2021-04-21 2018 2021
## 13418 2017-10-29 2020-10-28 2017 2020
## 13419 2018-09-04 2021-09-03 2018 2021
## 13420 2018-04-02 2021-03-30 2018 2021
## 13421 2018-01-07 2021-01-07 2018 2021
## 13422 2018-06-17 2021-06-16 2018 2021
## 13423 2017-10-24 2020-10-23 2017 2020
## 13424 2018-07-05 2021-07-04 2018 2021
## 13425 2018-04-18 2021-04-18 2018 2021
## 13426 2018-05-31 2021-05-30 2018 2021
## 13427 2018-08-16 2021-08-15 2018 2021
## 13428 2017-11-26 2020-11-26 2017 2020
## 13429 2018-08-25 2021-08-24 2018 2021
## 13430 2018-06-17 2021-06-16 2018 2021
## 13431 2018-08-10 2021-08-09 2018 2021
## 13432 2018-09-05 2021-09-04 2018 2021
## 13433 2018-05-15 2021-05-14 2018 2021
## 13434 2018-03-31 2021-03-30 2018 2021
## 13435 2018-09-04 2021-09-03 2018 2021
## 13436 2018-04-22 2019-02-04 2018 2019
## 13437 2018-09-06 2021-09-05 2018 2021
## 13438 2018-10-30 2021-10-29 2018 2021
## 13439 2018-08-06 2021-08-05 2018 2021
## 13440 2018-07-23 2021-07-20 2018 2021
## 13441 2017-12-17 2020-12-17 2017 2020
## 13442 2018-05-31 2021-05-31 2018 2021
## 13443 2018-07-22 2021-07-21 2018 2021
## 13444 2018-09-03 2021-09-03 2018 2021
## 13445 2018-02-04 2021-01-30 2018 2021
## 13446 2018-04-15 2021-04-14 2018 2021
## 13447 2018-06-10 2021-06-10 2018 2021
## 13448 2018-08-02 2021-08-01 2018 2021
## 13449 2018-08-25 2021-08-25 2018 2021
## 13450 2017-12-17 2020-12-16 2017 2020
## 13451 2018-09-10 2021-09-09 2018 2021
## 13452 2018-04-12 2021-04-11 2018 2021
## 13453 2018-12-03 2021-12-02 2018 2021
## 13454 2018-06-11 2021-06-10 2018 2021
## 13455 2018-09-07 2021-09-07 2018 2021
## 13456 2018-01-01 2020-12-31 2018 2020
## 13457 2018-08-19 2021-08-19 2018 2021
## 13458 2018-08-08 2021-08-08 2018 2021
## 13459 2018-09-21 2021-09-21 2018 2021
## 13460 2018-04-08 2021-04-07 2018 2021
## 13461 2018-08-27 2021-08-26 2018 2021
## 13462 2017-11-09 2020-11-06 2017 2020
## 13463 2018-08-22 2021-08-22 2018 2021
## 13464 2018-01-07 2021-01-07 2018 2021
## 13465 2018-08-16 2021-08-15 2018 2021
## 13466 2018-09-10 2021-09-09 2018 2021
## 13467 2018-07-08 2021-07-08 2018 2021
## 13468 2018-06-03 2021-06-03 2018 2021
## 13469 2018-09-25 2021-09-24 2018 2021
## 13470 2018-08-31 2021-08-31 2018 2021
## 13471 2018-08-31 2021-08-30 2018 2021
## 13472 2018-06-29 2021-06-28 2018 2021
## 13473 2018-05-31 2021-05-30 2018 2021
## 13474 2018-09-30 2019-09-29 2018 2019
## 13475 2018-09-06 2021-09-05 2018 2021
## 13476 2018-04-03 2021-04-02 2018 2021
## 13477 2018-09-04 2021-09-03 2018 2021
## 13478 2018-07-30 2021-07-29 2018 2021
## 13479 2018-09-06 2021-09-05 2018 2021
## 13480 2018-08-01 2021-07-31 2018 2021
## 13481 2018-11-22 2021-11-21 2018 2021
## 13482 2018-09-14 2021-09-14 2018 2021
## 13483 2018-04-30 2021-04-29 2018 2021
## 13484 2018-11-15 2021-11-14 2018 2021
## 13485 2018-10-13 2021-10-13 2018 2021
## 13486 2017-11-26 2020-11-25 2017 2020
## 13487 2017-11-19 2020-11-18 2017 2020
## 13488 2017-12-31 2020-12-30 2017 2020
## 13489 2018-02-23 2021-02-22 2018 2021
## 13490 2017-10-08 2020-10-07 2017 2020
## 13491 2018-09-14 2021-09-13 2018 2021
## 13492 2018-09-02 2019-12-05 2018 2019
## 13493 2018-09-05 2021-09-04 2018 2021
## 13494 2018-03-25 2021-03-25 2018 2021
## 13495 2017-12-31 2020-12-30 2017 2020
## 13496 2018-05-08 2019-03-22 2018 2019
## 13497 2018-06-30 2021-06-29 2018 2021
## 13498 2018-03-31 2020-03-30 2018 2020
## 13499 2018-03-25 2021-03-24 2018 2021
## 13500 2018-12-02 2021-12-01 2018 2021
## 13501 2018-03-21 2021-03-20 2018 2021
## 13502 2018-09-28 2021-09-27 2018 2021
## 13503 2017-10-29 2020-10-28 2017 2020
## 13504 2017-11-04 2020-11-01 2017 2020
## 13505 2017-12-25 2020-12-24 2017 2020
## 13506 2018-06-20 2020-06-19 2018 2020
## 13507 2018-04-05 2021-04-04 2018 2021
## 13508 2018-03-25 2021-03-24 2018 2021
## 13509 2018-07-24 2021-07-23 2018 2021
## 13510 2018-05-11 2021-05-10 2018 2021
## 13511 2017-10-04 2020-10-03 2017 2020
## 13512 2018-02-05 2021-02-04 2018 2021
## 13513 2018-08-21 2021-08-21 2018 2021
## 13514 2018-08-02 2021-08-02 2018 2021
## 13515 2018-09-12 2021-09-11 2018 2021
## 13516 2018-09-12 2021-09-11 2018 2021
## 13517 2018-02-11 2021-02-10 2018 2021
## 13518 2018-09-09 2021-09-09 2018 2021
## 13519 2018-08-31 2021-08-30 2018 2021
## 13520 2018-09-10 2021-09-10 2018 2021
## 13521 2018-03-19 2021-03-19 2018 2021
## 13522 2018-08-08 2021-08-07 2018 2021
## 13523 2018-01-30 2020-09-10 2018 2020
## 13524 2018-09-12 2021-09-11 2018 2021
## 13525 2018-01-31 2019-01-30 2018 2019
## 13526 2018-08-12 2021-08-11 2018 2021
## 13527 2018-08-31 2021-08-30 2018 2021
## 13528 2018-03-18 2021-03-17 2018 2021
## 13529 2018-06-14 2021-06-14 2018 2021
## 13530 2018-09-20 2021-09-19 2018 2021
## 13531 2018-11-17 2021-11-16 2018 2021
## 13532 2018-08-19 2021-08-19 2018 2021
## 13533 2018-03-18 2021-03-17 2018 2021
## 13534 2018-08-23 2021-08-22 2018 2021
## 13535 2018-06-30 2018-08-13 2018 2018
## 13536 2018-04-29 2021-04-28 2018 2021
## 13537 2018-08-31 2019-08-30 2018 2019
## 13538 2018-09-10 2021-09-09 2018 2021
## 13539 2018-01-21 2021-01-21 2018 2021
## 13540 2018-05-27 2021-05-26 2018 2021
## 13541 2018-07-10 2021-07-10 2018 2021
## 13542 2018-09-14 2021-09-13 2018 2021
## 13543 2018-09-16 2021-06-13 2018 2021
## 13544 2018-08-30 2021-08-29 2018 2021
## 13545 2018-08-26 2021-08-25 2018 2021
## 13546 2018-02-13 2021-02-12 2018 2021
## 13547 2018-09-19 2021-09-18 2018 2021
## 13548 2018-03-31 2021-03-30 2018 2021
## 13549 2017-10-01 2020-09-29 2017 2020
## 13550 2018-07-29 2021-07-28 2018 2021
## 13551 2018-08-27 2021-08-26 2018 2021
## 13552 2018-08-18 2021-08-18 2018 2021
## 13553 2018-05-22 2021-05-21 2018 2021
## 13554 2018-09-11 2021-09-10 2018 2021
## 13555 2018-04-01 2021-03-31 2018 2021
## 13556 2018-01-14 2021-01-13 2018 2021
## 13557 2018-09-09 2021-09-08 2018 2021
## 13558 2018-04-24 2021-04-24 2018 2021
## 13559 2018-09-19 2021-09-19 2018 2021
## 13560 2018-09-09 2019-11-23 2018 2019
## 13561 2018-04-06 2021-04-05 2018 2021
## 13562 2018-02-12 2021-02-12 2018 2021
## 13563 2018-04-15 2021-04-15 2018 2021
## 13564 2018-09-03 2021-09-02 2018 2021
## 13565 2018-06-07 2021-06-06 2018 2021
## 13566 2018-05-09 2021-05-09 2018 2021
## 13567 2018-09-07 2020-08-30 2018 2020
## 13568 2018-01-29 2021-01-28 2018 2021
## 13569 2018-02-06 2021-02-05 2018 2021
## 13570 2018-08-16 2021-08-15 2018 2021
## 13571 2018-09-20 2021-09-19 2018 2021
## 13572 2017-11-12 2020-11-11 2017 2020
## 13573 2018-07-26 2021-07-25 2018 2021
## 13574 2018-03-02 2021-03-02 2018 2021
## 13575 2017-12-10 2020-09-17 2017 2020
## 13576 2018-09-02 2021-09-02 2018 2021
## 13577 2018-09-25 2021-09-25 2018 2021
## 13578 2018-08-22 2021-08-21 2018 2021
## 13579 2019-02-19 2022-02-18 2019 2022
## 13580 2018-04-22 2021-04-22 2018 2021
## 13581 2018-09-10 2021-09-09 2018 2021
## 13582 2018-09-14 2020-09-13 2018 2020
## 13583 2018-08-12 2021-08-12 2018 2021
## 13584 2018-02-01 2021-01-31 2018 2021
## 13585 2018-08-06 2021-08-05 2018 2021
## 13586 2018-06-14 2021-06-14 2018 2021
## 13587 2018-06-14 2021-06-14 2018 2021
## 13588 2018-05-04 2021-05-04 2018 2021
## 13589 2018-02-07 2021-02-07 2018 2021
## 13590 2018-09-03 2021-09-03 2018 2021
## 13591 2018-06-17 2021-06-16 2018 2021
## 13592 2018-01-17 2020-01-16 2018 2020
## 13593 2018-04-03 2021-04-03 2018 2021
## 13594 2018-04-12 2021-04-11 2018 2021
## 13595 2018-02-02 2021-02-01 2018 2021
## 13596 2018-08-31 2021-08-30 2018 2021
## 13597 2018-09-09 2021-09-08 2018 2021
## 13598 2018-09-23 2021-09-22 2018 2021
## 13599 2018-09-12 2021-09-11 2018 2021
## 13600 2018-08-24 2021-08-24 2018 2021
## 13601 2018-07-31 2021-07-31 2018 2021
## 13602 2018-08-02 2021-08-01 2018 2021
## 13603 2018-01-01 2020-12-31 2018 2020
## 13604 2018-11-19 2021-11-18 2018 2021
## 13605 2018-09-03 2021-09-03 2018 2021
## 13606 2018-09-07 2021-09-06 2018 2021
## 13607 2018-05-13 2021-05-12 2018 2021
## 13608 2018-09-08 2021-09-07 2018 2021
## 13609 2018-08-11 2021-08-11 2018 2021
## 13610 2018-05-17 2021-05-16 2018 2021
## 13611 2018-07-29 2021-07-29 2018 2021
## 13612 2018-02-23 2021-02-22 2018 2021
## 13613 2019-01-31 2021-01-30 2019 2021
## 13614 2018-07-03 2021-07-02 2018 2021
## 13615 2018-09-30 2021-09-29 2018 2021
## 13616 2018-08-02 2021-07-02 2018 2021
## 13617 2018-01-14 2021-01-13 2018 2021
## 13618 2018-09-11 2019-12-30 2018 2019
## 13619 2018-04-10 2021-04-09 2018 2021
## 13620 2018-01-09 2021-01-08 2018 2021
## 13621 2018-09-09 2021-09-08 2018 2021
## 13622 2018-09-19 2021-09-18 2018 2021
## 13623 2018-09-03 2021-09-03 2018 2021
## 13624 2018-07-29 2021-07-28 2018 2021
## 13625 2018-06-25 2021-06-24 2018 2021
## 13626 2018-04-05 2021-04-04 2018 2021
## 13627 2018-01-10 2021-01-09 2018 2021
## 13628 2018-07-28 2021-07-27 2018 2021
## 13629 2018-03-22 2021-03-22 2018 2021
## 13630 2018-02-13 2021-02-13 2018 2021
## 13631 2018-02-22 2020-08-15 2018 2020
## 13632 2018-09-14 2021-09-13 2018 2021
## 13633 2018-05-06 2021-05-05 2018 2021
## 13634 2018-02-01 2021-01-31 2018 2021
## 13635 2018-08-15 2021-08-14 2018 2021
## 13636 2018-09-07 2021-09-07 2018 2021
## 13637 2018-09-01 2021-08-31 2018 2021
## 13638 2018-09-09 2021-09-09 2018 2021
## 13639 2018-08-31 2021-08-30 2018 2021
## 13640 2018-08-14 2021-08-14 2018 2021
## 13641 2018-09-05 2021-09-04 2018 2021
## 13642 2018-09-22 2021-09-21 2018 2021
## 13643 2018-07-12 2021-07-12 2018 2021
## 13644 2018-03-11 2019-07-23 2018 2019
## 13645 2018-09-09 2021-09-08 2018 2021
## 13646 2018-03-19 2021-03-19 2018 2021
## 13647 2018-07-19 2019-12-30 2018 2019
## 13648 2018-09-18 2021-09-17 2018 2021
## 13649 2018-07-15 2021-07-14 2018 2021
## 13650 2018-05-23 2021-05-23 2018 2021
## 13651 2018-09-30 2021-09-29 2018 2021
## 13652 2018-08-31 2021-08-28 2018 2021
## 13653 2018-03-13 2019-01-31 2018 2019
## 13654 2017-10-29 2020-10-28 2017 2020
## 13655 2018-04-19 2021-04-18 2018 2021
## 13656 2018-09-04 2021-09-03 2018 2021
## 13657 2018-06-30 2021-06-29 2018 2021
## 13658 2018-02-20 2021-02-19 2018 2021
## 13659 2018-05-06 2021-05-05 2018 2021
## 13660 2018-08-18 2021-08-18 2018 2021
## 13661 2018-11-18 2021-11-17 2018 2021
## 13662 2018-06-29 2021-06-28 2018 2021
## 13663 2018-09-17 2021-09-17 2018 2021
## 13664 2018-08-31 2021-08-30 2018 2021
## 13665 2018-04-05 2021-04-04 2018 2021
## 13666 2018-12-31 2021-12-30 2018 2021
## 13667 2018-12-31 2020-06-29 2018 2020
## 13668 2018-09-01 2021-08-31 2018 2021
## 13669 2018-09-16 2021-09-16 2018 2021
## 13670 2018-08-08 2021-08-05 2018 2021
## 13671 2018-08-31 2021-08-30 2018 2021
## 13672 2018-08-31 2021-08-30 2018 2021
## 13673 2018-06-30 2021-06-29 2018 2021
## 13674 2018-08-03 2020-12-30 2018 2020
## 13675 2018-08-02 2021-08-01 2018 2021
## 13676 2018-07-01 2021-06-30 2018 2021
## 13677 2018-09-11 2021-09-10 2018 2021
## 13678 2018-05-10 2021-05-09 2018 2021
## 13679 2018-01-25 2019-04-03 2018 2019
## 13680 2018-08-19 2019-10-30 2018 2019
## 13681 2018-06-30 2020-03-30 2018 2020
## 13682 2018-06-30 2021-06-29 2018 2021
## 13683 2018-09-05 2021-09-05 2018 2021
## 13684 2018-09-14 2021-09-13 2018 2021
## 13685 2018-04-30 2018-07-06 2018 2018
## 13686 2018-11-20 2020-01-01 2018 2020
## 13687 2018-08-09 2021-08-06 2018 2021
## 13688 2018-09-10 2021-09-09 2018 2021
## 13689 2018-09-02 2021-09-02 2018 2021
## 13690 2018-01-23 2021-01-22 2018 2021
## 13691 2018-04-15 2021-04-14 2018 2021
## 13692 2018-06-14 2021-06-14 2018 2021
## 13693 2018-08-30 2021-08-29 2018 2021
## 13694 2018-09-21 2021-09-20 2018 2021
## 13695 2017-10-18 2020-10-17 2017 2020
## 13696 2018-07-10 2021-07-08 2018 2021
## 13697 2018-02-05 2021-02-05 2018 2021
## 13698 2018-08-31 2021-08-30 2018 2021
## 13699 2018-10-07 2021-10-06 2018 2021
## 13700 2018-09-19 2021-09-19 2018 2021
## 13701 2018-05-20 2021-05-20 2018 2021
## 13702 2018-04-15 2021-04-15 2018 2021
## 13703 2018-01-14 2021-01-13 2018 2021
## 13704 2018-09-26 2021-09-26 2018 2021
## 13705 2018-08-31 2020-12-29 2018 2020
## 13706 2018-09-30 2021-09-29 2018 2021
## 13707 2018-09-05 2021-06-04 2018 2021
## 13708 2018-06-30 2021-06-29 2018 2021
## 13709 2018-07-15 2021-07-14 2018 2021
## 13710 2018-09-19 2021-09-18 2018 2021
## 13711 2018-08-09 2021-08-08 2018 2021
## 13712 2018-09-26 2019-09-17 2018 2019
## 13713 2018-04-15 2021-04-15 2018 2021
## 13714 2018-08-31 2021-08-31 2018 2021
## 13715 2018-09-07 2021-09-07 2018 2021
## 13716 2018-01-01 2020-12-31 2018 2020
## 13717 2017-11-30 2020-11-29 2017 2020
## 13718 2018-09-05 2021-09-05 2018 2021
## 13719 2018-03-08 2021-03-07 2018 2021
## 13720 2018-06-14 2021-06-14 2018 2021
## 13721 2017-12-27 2020-12-26 2017 2020
## 13722 2018-09-10 2021-09-09 2018 2021
## 13723 2018-08-31 2021-08-30 2018 2021
## 13724 2018-08-31 2021-08-30 2018 2021
## 13725 2018-09-11 2021-09-10 2018 2021
## 13726 2018-07-31 2021-07-31 2018 2021
## 13727 2018-04-09 2021-04-08 2018 2021
## 13728 2017-10-23 2020-10-22 2017 2020
## 13729 2017-11-26 2020-11-25 2017 2020
## 13730 2017-11-20 2020-11-19 2017 2020
## 13731 2018-09-18 2021-09-17 2018 2021
## 13732 2018-08-31 2021-08-29 2018 2021
## 13733 2018-08-21 2021-08-19 2018 2021
## 13734 2018-09-20 2021-09-20 2018 2021
## 13735 2018-03-22 2021-03-21 2018 2021
## 13736 2018-08-26 2021-08-26 2018 2021
## 13737 2018-06-24 2021-06-23 2018 2021
## 13738 2018-09-12 2021-09-11 2018 2021
## 13739 2018-04-15 2021-04-15 2018 2021
## 13740 2018-01-01 2021-01-01 2018 2021
## 13741 2018-08-26 2021-08-25 2018 2021
## 13742 2018-05-02 2021-05-01 2018 2021
## 13743 2017-11-30 2020-11-29 2017 2020
## 13744 2018-08-01 2021-07-31 2018 2021
## 13745 2018-08-27 2021-08-26 2018 2021
## 13746 2017-11-27 2020-11-26 2017 2020
## 13747 2018-09-07 2021-09-07 2018 2021
## 13748 2018-09-12 2021-09-11 2018 2021
## 13749 2018-09-28 2021-09-28 2018 2021
## 13750 2017-10-04 2018-09-29 2017 2018
## 13751 2018-05-20 2021-05-19 2018 2021
## 13752 2018-11-01 2021-10-31 2018 2021
## 13753 2018-08-30 2021-08-29 2018 2021
## 13754 2018-07-29 2021-07-28 2018 2021
## 13755 2018-06-14 2021-06-14 2018 2021
## 13756 2018-08-14 2021-08-13 2018 2021
## 13757 2018-07-29 2021-07-28 2018 2021
## 13758 2017-11-15 2020-11-14 2017 2020
## 13759 2017-12-31 2020-12-30 2017 2020
## 13760 2018-09-14 2021-09-14 2018 2021
## 13761 2017-10-01 2020-10-01 2017 2020
## 13762 2018-07-09 2020-09-14 2018 2020
## 13763 2018-09-15 2021-09-14 2018 2021
## 13764 2018-05-17 2021-05-16 2018 2021
## 13765 2017-09-28 2020-09-27 2017 2020
## 13766 2017-11-22 2020-11-21 2017 2020
## 13767 2018-06-07 2020-05-28 2018 2020
## 13768 2018-09-06 2021-09-05 2018 2021
## 13769 2018-07-08 2021-07-08 2018 2021
## 13770 2018-06-06 2021-06-06 2018 2021
## 13771 2018-12-02 2021-12-02 2018 2021
## 13772 2018-08-24 2021-08-24 2018 2021
## 13773 2018-09-08 2021-09-07 2018 2021
## 13774 2017-12-10 2020-12-09 2017 2020
## 13775 2018-04-10 2021-04-09 2018 2021
## 13776 2018-05-31 2021-05-30 2018 2021
## 13777 2018-09-10 2021-09-09 2018 2021
## 13778 2018-09-19 2021-09-18 2018 2021
## 13779 2018-05-23 2021-05-22 2018 2021
## 13780 2017-10-16 2020-10-15 2017 2020
## 13781 2018-06-20 2021-06-19 2018 2021
## 13782 2018-07-22 2021-07-19 2018 2021
## 13783 2018-07-24 2021-07-23 2018 2021
## 13784 2017-11-12 2020-11-11 2017 2020
## 13785 2018-08-01 2021-07-31 2018 2021
## 13786 2018-05-02 2021-05-01 2018 2021
## 13787 2018-02-28 2021-02-27 2018 2021
## 13788 2018-01-31 2021-01-31 2018 2021
## 13789 2018-04-30 2021-04-29 2018 2021
## 13790 2018-08-09 2021-08-09 2018 2021
## 13791 2018-06-24 2021-06-24 2018 2021
## 13792 2018-09-20 2021-09-19 2018 2021
## 13793 2018-04-29 2021-04-28 2018 2021
## 13794 2018-09-06 2021-09-06 2018 2021
## 13795 2018-06-24 2021-06-23 2018 2021
## 13796 2018-08-28 2021-08-27 2018 2021
## 13797 2018-02-14 2021-02-13 2018 2021
## 13798 2018-05-30 2021-05-29 2018 2021
## 13799 2018-07-31 2021-07-30 2018 2021
## 13800 2018-08-27 2021-08-26 2018 2021
## 13801 2018-09-19 2021-09-18 2018 2021
## 13802 2018-06-14 2021-06-14 2018 2021
## 13803 2018-05-08 2021-04-28 2018 2021
## 13804 2018-08-25 2021-08-24 2018 2021
## 13805 2018-01-26 2021-01-25 2018 2021
## 13806 2018-07-01 2021-06-30 2018 2021
## 13807 2018-02-28 2021-02-28 2018 2021
## 13808 2018-09-08 2021-09-07 2018 2021
## 13809 2018-07-11 2021-07-10 2018 2021
## 13810 2018-08-30 2021-08-29 2018 2021
## 13811 2018-08-08 2021-08-07 2018 2021
## 13812 2018-08-01 2021-07-29 2018 2021
## 13813 2018-04-25 2021-04-25 2018 2021
## 13814 2018-09-09 2021-09-08 2018 2021
## 13815 2018-09-19 2021-09-19 2018 2021
## 13816 2018-09-15 2021-09-14 2018 2021
## 13817 2018-09-17 2021-09-16 2018 2021
## 13818 2017-11-05 2020-11-04 2017 2020
## 13819 2018-08-09 2021-08-06 2018 2021
## 13820 2018-01-17 2021-01-17 2018 2021
## 13821 2018-05-27 2021-05-26 2018 2021
## 13822 2018-05-11 2020-06-07 2018 2020
## 13823 2018-07-22 2020-04-29 2018 2020
## 13824 2018-04-07 2021-04-05 2018 2021
## 13825 2018-02-02 2021-02-01 2018 2021
## 13826 2018-07-25 2021-07-23 2018 2021
## 13827 2018-09-20 2021-09-20 2018 2021
## 13828 2017-12-18 2020-12-17 2017 2020
## 13829 2018-06-24 2021-06-24 2018 2021
## 13830 2018-03-18 2021-03-17 2018 2021
## 13831 2017-11-21 2020-11-21 2017 2020
## 13832 2018-02-04 2019-07-28 2018 2019
## 13833 2018-08-31 2021-08-30 2018 2021
## 13834 2018-06-14 2021-06-14 2018 2021
## 13835 2018-07-31 2021-07-30 2018 2021
## 13836 2018-06-30 2021-06-29 2018 2021
## 13837 2017-11-30 2020-11-30 2017 2020
## 13838 2018-09-30 2021-09-29 2018 2021
## 13839 2017-11-19 2020-11-18 2017 2020
## 13840 2018-09-02 2019-09-14 2018 2019
## 13841 2017-12-15 2020-12-14 2017 2020
## 13842 2018-04-13 2021-04-13 2018 2021
## 13843 2018-09-09 2021-09-08 2018 2021
## 13844 2018-08-31 2021-08-31 2018 2021
## 13845 2018-05-17 2021-05-16 2018 2021
## 13846 2018-08-27 2021-08-27 2018 2021
## 13847 2018-12-18 2021-12-17 2018 2021
## 13848 2018-08-15 2021-08-14 2018 2021
## 13849 2018-09-13 2020-09-30 2018 2020
## 13850 2018-08-12 2019-08-16 2018 2019
## 13851 2018-09-13 2021-09-12 2018 2021
## 13852 2018-06-03 2021-06-02 2018 2021
## 13853 2018-08-22 2021-08-21 2018 2021
## 13854 2018-09-05 2021-09-04 2018 2021
## 13855 2018-08-14 2021-08-13 2018 2021
## 13856 2017-12-31 2020-12-28 2017 2020
## 13857 2018-01-11 2021-01-09 2018 2021
## 13858 2018-06-14 2021-06-14 2018 2021
## 13859 2018-07-08 2021-07-07 2018 2021
## 13860 2018-02-10 2021-02-09 2018 2021
## 13861 2018-08-17 2021-08-16 2018 2021
## 13862 2018-01-25 2021-01-24 2018 2021
## 13863 2017-10-15 2020-10-15 2017 2020
## 13864 2018-08-23 2021-08-22 2018 2021
## 13865 2018-08-14 2021-08-14 2018 2021
## 13866 2018-06-29 2021-06-28 2018 2021
## 13867 2018-09-17 2021-09-16 2018 2021
## 13868 2018-09-10 2021-09-09 2018 2021
## 13869 2018-09-14 2021-09-13 2018 2021
## 13870 2018-05-07 2021-05-06 2018 2021
## 13871 2017-11-15 2020-11-14 2017 2020
## 13872 2018-10-01 2021-10-01 2018 2021
## 13873 2018-08-31 2021-08-30 2018 2021
## 13874 2018-06-30 2021-06-27 2018 2021
## 13875 2018-07-18 2021-07-18 2018 2021
## 13876 2018-09-04 2021-09-04 2018 2021
## 13877 2018-03-24 2021-03-23 2018 2021
## 13878 2018-09-12 2021-09-12 2018 2021
## 13879 2018-05-27 2021-05-27 2018 2021
## 13880 2018-08-14 2021-08-14 2018 2021
## 13881 2018-08-13 2021-08-12 2018 2021
## 13882 2018-07-19 2021-07-18 2018 2021
## 13883 2018-06-15 2021-06-15 2018 2021
## 13884 2018-09-04 2021-09-04 2018 2021
## 13885 2018-03-18 2021-03-17 2018 2021
## 13886 2018-03-17 2021-03-16 2018 2021
## 13887 2018-08-08 2021-08-07 2018 2021
## 13888 2018-07-25 2021-07-24 2018 2021
## 13889 2018-07-17 2021-07-17 2018 2021
## 13890 2018-05-02 2021-05-01 2018 2021
## 13891 2018-06-30 2021-06-29 2018 2021
## 13892 2018-08-31 2021-08-31 2018 2021
## 13893 2018-09-09 2021-08-31 2018 2021
## 13894 2018-10-28 2021-10-27 2018 2021
## 13895 2018-07-31 2021-07-31 2018 2021
## 13896 2018-08-24 2021-08-23 2018 2021
## 13897 2017-11-30 2020-11-29 2017 2020
## 13898 2018-09-30 2021-09-29 2018 2021
## 13899 2018-08-23 2021-08-22 2018 2021
## 13900 2018-12-31 2021-12-30 2018 2021
## 13901 2019-01-10 2022-01-09 2019 2022
## 13902 2018-08-11 2021-08-10 2018 2021
## 13903 2018-03-08 2021-03-07 2018 2021
## 13904 2018-01-07 2020-09-29 2018 2020
## 13905 2018-08-09 2021-08-08 2018 2021
## 13906 2018-06-21 2021-06-20 2018 2021
## 13907 2018-05-10 2021-05-09 2018 2021
## 13908 2018-09-05 2021-09-04 2018 2021
## 13909 2018-07-22 2021-07-22 2018 2021
## 13910 2018-12-11 2021-12-10 2018 2021
## 13911 2018-09-10 2021-09-09 2018 2021
## 13912 2018-09-25 2021-09-25 2018 2021
## 13913 2018-08-26 2021-08-25 2018 2021
## 13914 2018-08-31 2021-08-30 2018 2021
## 13915 2018-08-31 2021-08-30 2018 2021
## 13916 2018-09-22 2021-09-21 2018 2021
## 13917 2018-12-29 2021-12-28 2018 2021
## 13918 2017-11-19 2020-11-18 2017 2020
## 13919 2018-06-01 2021-05-30 2018 2021
## 13920 2018-07-31 2021-07-30 2018 2021
## 13921 2018-09-13 2021-09-12 2018 2021
## 13922 2018-09-03 2021-09-02 2018 2021
## 13923 2018-07-04 2021-07-03 2018 2021
## 13924 2018-10-15 2021-10-14 2018 2021
## 13925 2018-05-30 2021-05-29 2018 2021
## 13926 2017-10-30 2020-10-30 2017 2020
## 13927 2018-06-14 2021-06-14 2018 2021
## 13928 2018-06-17 2021-06-16 2018 2021
## 13929 2018-09-21 2021-09-21 2018 2021
## 13930 2018-09-26 2021-09-25 2018 2021
## 13931 2018-09-25 2021-09-24 2018 2021
## 13932 2018-09-30 2021-09-29 2018 2021
## 13933 2018-05-16 2021-05-15 2018 2021
## 13934 2018-08-19 2021-08-19 2018 2021
## 13935 2018-09-07 2021-09-06 2018 2021
## 13936 2017-12-25 2020-12-24 2017 2020
## 13937 2018-07-08 2021-07-08 2018 2021
## 13938 2017-10-29 2020-10-28 2017 2020
## 13939 2018-12-31 2021-12-30 2018 2021
## 13940 2018-09-03 2021-09-03 2018 2021
## 13941 2018-08-05 2021-08-05 2018 2021
## 13942 2018-09-05 2021-09-05 2018 2021
## 13943 2018-08-23 2021-08-22 2018 2021
## 13944 2018-09-06 2021-09-05 2018 2021
## 13945 2018-08-21 2021-08-20 2018 2021
## 13946 2018-07-31 2020-07-30 2018 2020
## 13947 2018-11-28 2021-11-27 2018 2021
## 13948 2018-08-30 2021-08-29 2018 2021
## 13949 2018-08-31 2021-08-31 2018 2021
## 13950 2018-09-06 2021-09-05 2018 2021
## 13951 2018-07-28 2021-07-27 2018 2021
## 13952 2018-07-29 2021-07-28 2018 2021
## 13953 2018-07-23 2021-07-22 2018 2021
## 13954 2018-11-29 2021-11-28 2018 2021
## 13955 2018-09-08 2021-09-07 2018 2021
## 13956 2018-07-29 2021-07-28 2018 2021
## 13957 2018-05-14 2021-05-13 2018 2021
## 13958 2018-02-13 2021-02-12 2018 2021
## 13959 2018-09-02 2021-09-01 2018 2021
## 13960 2018-07-29 2021-07-28 2018 2021
## 13961 2018-06-13 2021-06-12 2018 2021
## 13962 2018-05-23 2021-05-21 2018 2021
## 13963 2017-12-18 2020-12-17 2017 2020
## 13964 2018-08-20 2021-08-20 2018 2021
## 13965 2017-12-28 2020-12-27 2017 2020
## 13966 2018-08-30 2021-08-29 2018 2021
## 13967 2018-09-15 2021-09-14 2018 2021
## 13968 2018-09-02 2021-09-01 2018 2021
## 13969 2017-11-12 2020-11-11 2017 2020
## 13970 2018-08-09 2021-08-08 2018 2021
## 13971 2018-05-04 2021-05-03 2018 2021
## 13972 2018-03-06 2021-03-05 2018 2021
## 13973 2018-01-11 2021-01-10 2018 2021
## 13974 2018-06-14 2021-06-14 2018 2021
## 13975 2018-02-28 2020-03-13 2018 2020
## 13976 2018-04-14 2021-04-13 2018 2021
## 13977 2018-04-30 2021-04-29 2018 2021
## 13978 2018-07-22 2021-07-21 2018 2021
## 13979 2018-03-25 2021-03-24 2018 2021
## 13980 2018-05-21 2021-05-21 2018 2021
## 13981 2018-07-05 2019-07-04 2018 2019
## 13982 2018-07-22 2021-07-22 2018 2021
## 13983 2018-06-30 2021-06-29 2018 2021
## 13984 2018-09-06 2021-09-05 2018 2021
## 13985 2018-09-19 2021-09-19 2018 2021
## 13986 2018-07-25 2021-07-24 2018 2021
## 13987 2018-05-16 2021-05-15 2018 2021
## 13988 2018-04-15 2021-04-12 2018 2021
## 13989 2018-08-22 2021-08-21 2018 2021
## 13990 2018-08-14 2021-08-14 2018 2021
## 13991 2018-08-31 2021-08-31 2018 2021
## 13992 2019-02-11 2022-02-10 2019 2022
## 13993 2018-04-01 2021-04-01 2018 2021
## 13994 2018-04-09 2021-04-08 2018 2021
## 13995 2018-08-10 2021-08-07 2018 2021
## 13996 2018-09-14 2021-09-13 2018 2021
## 13997 2018-05-27 2021-05-26 2018 2021
## 13998 2018-01-15 2021-01-14 2018 2021
## 13999 2018-08-16 2021-08-15 2018 2021
## 14000 2018-06-30 2021-06-29 2018 2021
## 14001 2018-03-31 2021-03-30 2018 2021
## 14002 2018-08-13 2021-08-12 2018 2021
## 14003 2018-07-26 2021-07-25 2018 2021
## 14004 2018-03-26 2021-03-25 2018 2021
## 14005 2018-05-31 2021-05-31 2018 2021
## 14006 2018-09-14 2021-09-13 2018 2021
## 14007 2018-06-03 2021-06-02 2018 2021
## 14008 2018-01-29 2021-01-28 2018 2021
## 14009 2018-09-10 2021-09-09 2018 2021
## 14010 2017-12-17 2020-12-16 2017 2020
## 14011 2018-09-22 2021-09-22 2018 2021
## 14012 2018-09-06 2021-09-05 2018 2021
## 14013 2018-05-22 2021-05-21 2018 2021
## 14014 2018-08-23 2021-08-22 2018 2021
## 14015 2018-08-21 2021-08-20 2018 2021
## 14016 2018-02-18 2021-02-17 2018 2021
## 14017 2018-08-10 2021-08-09 2018 2021
## 14018 2017-10-23 2020-10-22 2017 2020
## 14019 2018-09-30 2021-09-29 2018 2021
## 14020 2018-08-31 2021-08-30 2018 2021
## 14021 2018-09-17 2019-12-30 2018 2019
## 14022 2018-02-18 2021-02-17 2018 2021
## 14023 2018-09-14 2020-12-30 2018 2020
## 14024 2018-01-14 2021-01-13 2018 2021
## 14025 2018-08-13 2021-08-12 2018 2021
## 14026 2017-12-15 2020-12-12 2017 2020
## 14027 2017-12-17 2019-09-17 2017 2019
## 14028 2018-04-22 2021-04-21 2018 2021
## 14029 2018-08-16 2021-08-15 2018 2021
## 14030 2018-09-21 2021-09-20 2018 2021
## 14031 2018-09-02 2021-08-30 2018 2021
## 14032 2018-05-08 2021-05-07 2018 2021
## 14033 2018-09-10 2021-09-09 2018 2021
## 14034 2018-12-31 2021-12-31 2018 2021
## 14035 2018-05-22 2021-05-21 2018 2021
## 14036 2018-09-10 2021-09-09 2018 2021
## 14037 2018-03-31 2021-03-30 2018 2021
## 14038 2018-07-27 2021-07-26 2018 2021
## 14039 2018-09-07 2021-09-06 2018 2021
## 14040 2018-09-06 2021-09-05 2018 2021
## 14041 2018-01-15 2021-01-14 2018 2021
## 14042 2018-02-04 2021-02-04 2018 2021
## 14043 2018-07-21 2021-07-20 2018 2021
## 14044 2018-06-10 2021-06-09 2018 2021
## 14045 2018-08-14 2021-08-13 2018 2021
## 14046 2018-08-31 2021-08-30 2018 2021
## 14047 2018-04-09 2021-04-06 2018 2021
## 14048 2018-07-20 2018-08-23 2018 2018
## 14049 2018-04-22 2021-04-21 2018 2021
## 14050 2018-06-18 2021-06-18 2018 2021
## 14051 2018-08-31 2021-08-30 2018 2021
## 14052 2018-08-05 2021-08-04 2018 2021
## 14053 2017-12-31 2020-12-30 2017 2020
## 14054 2018-03-31 2021-03-30 2018 2021
## 14055 2018-09-05 2021-09-05 2018 2021
## 14056 2018-09-25 2021-09-25 2018 2021
## 14057 2017-11-26 2020-11-26 2017 2020
## 14058 2018-08-14 2021-08-13 2018 2021
## 14059 2018-09-30 2021-09-29 2018 2021
## 14060 2018-09-19 2021-09-18 2018 2021
## 14061 2018-07-31 2021-07-30 2018 2021
## 14062 2018-09-12 2021-09-11 2018 2021
## 14063 2017-12-04 2020-12-03 2017 2020
## 14064 2017-10-23 2020-10-22 2017 2020
## 14065 2018-09-24 2021-09-24 2018 2021
## 14066 2018-02-24 2021-02-23 2018 2021
## 14067 2018-09-18 2021-09-18 2018 2021
## 14068 2018-09-30 2021-09-29 2018 2021
## 14069 2018-07-22 2021-07-21 2018 2021
## 14070 2018-08-16 2019-08-15 2018 2019
## 14071 2018-09-05 2021-09-04 2018 2021
## 14072 2018-09-04 2021-09-04 2018 2021
## 14073 2018-08-31 2021-03-30 2018 2021
## 14074 2018-09-11 2021-09-10 2018 2021
## 14075 2018-09-18 2021-09-17 2018 2021
## 14076 2017-10-09 2020-10-08 2017 2020
## 14077 2018-01-29 2020-01-28 2018 2020
## 14078 2018-01-30 2021-01-30 2018 2021
## 14079 2018-09-09 2019-08-30 2018 2019
## 14080 2018-09-01 2021-08-29 2018 2021
## 14081 2018-08-28 2021-08-27 2018 2021
## 14082 2017-12-17 2020-12-16 2017 2020
## 14083 2018-01-07 2021-01-06 2018 2021
## 14084 2018-08-26 2021-08-25 2018 2021
## 14085 2018-06-24 2021-06-23 2018 2021
## 14086 2018-07-26 2021-07-25 2018 2021
## 14087 2018-08-29 2021-08-28 2018 2021
## 14088 2017-11-15 2020-11-14 2017 2020
## 14089 2017-12-13 2020-12-12 2017 2020
## 14090 2018-08-12 2021-08-11 2018 2021
## 14091 2018-09-09 2021-09-08 2018 2021
## 14092 2018-08-29 2021-08-28 2018 2021
## 14093 2019-03-20 2022-03-19 2019 2022
## 14094 2018-04-11 2021-04-10 2018 2021
## 14095 2018-07-30 2021-07-29 2018 2021
## 14096 2018-09-19 2021-09-19 2018 2021
## 14097 2018-07-02 2021-07-01 2018 2021
## 14098 2018-08-30 2021-08-29 2018 2021
## 14099 2018-09-06 2021-09-06 2018 2021
## 14100 2018-06-15 2021-06-15 2018 2021
## 14101 2018-07-20 2021-07-19 2018 2021
## 14102 2018-09-30 2021-09-29 2018 2021
## 14103 2017-12-10 2019-09-25 2017 2019
## 14104 2018-07-14 2021-07-14 2018 2021
## 14105 2018-09-23 2021-09-22 2018 2021
## 14106 2017-12-06 2020-12-05 2017 2020
## 14107 2018-08-12 2021-08-11 2018 2021
## 14108 2018-09-04 2021-09-04 2018 2021
## 14109 2018-11-04 2021-11-04 2018 2021
## 14110 2018-09-26 2021-09-25 2018 2021
## 14111 2018-09-30 2021-09-29 2018 2021
## 14112 2018-09-04 2021-09-04 2018 2021
## 14113 2017-12-06 2020-12-05 2017 2020
## 14114 2018-02-08 2021-02-07 2018 2021
## 14115 2018-09-12 2021-09-11 2018 2021
## 14116 2017-10-18 2020-10-17 2017 2020
## 14117 2017-11-14 2020-11-14 2017 2020
## 14118 2018-02-13 2021-02-12 2018 2021
## 14119 2018-09-14 2021-09-14 2018 2021
## 14120 2018-08-05 2021-08-05 2018 2021
## 14121 2018-07-04 2021-07-03 2018 2021
## 14122 2018-06-30 2021-06-29 2018 2021
## 14123 2018-08-20 2021-08-19 2018 2021
## 14124 2018-08-24 2021-08-23 2018 2021
## 14125 2018-08-29 2021-08-28 2018 2021
## 14126 2018-05-05 2021-05-04 2018 2021
## 14127 2018-05-28 2021-05-27 2018 2021
## 14128 2018-07-23 2021-07-22 2018 2021
## 14129 2018-06-14 2021-06-13 2018 2021
## 14130 2018-09-09 2021-09-08 2018 2021
## 14131 2018-03-18 2021-03-17 2018 2021
## 14132 2018-09-30 2021-09-29 2018 2021
## 14133 2018-09-09 2021-09-09 2018 2021
## 14134 2017-12-18 2020-12-17 2017 2020
## 14135 2018-09-19 2021-09-18 2018 2021
## 14136 2018-09-09 2021-09-08 2018 2021
## 14137 2018-05-24 2021-05-19 2018 2021
## 14138 2018-08-23 2021-08-22 2018 2021
## 14139 2017-12-10 2020-12-10 2017 2020
## 14140 2018-08-12 2021-08-11 2018 2021
## 14141 2018-03-31 2021-03-30 2018 2021
## 14142 2018-09-30 2021-09-29 2018 2021
## 14143 2018-09-19 2021-09-14 2018 2021
## 14144 2018-09-07 2021-09-07 2018 2021
## 14145 2018-03-21 2021-03-20 2018 2021
## 14146 2018-08-21 2021-08-21 2018 2021
## 14147 2018-01-31 2019-12-30 2018 2019
## 14148 2018-09-28 2021-09-27 2018 2021
## 14149 2018-09-18 2021-09-17 2018 2021
## 14150 2018-01-15 2021-01-14 2018 2021
## 14151 2018-10-14 2021-10-14 2018 2021
## 14152 2018-09-05 2021-09-04 2018 2021
## 14153 2018-03-01 2021-03-01 2018 2021
## 14154 2018-10-28 2021-10-27 2018 2021
## 14155 2018-09-16 2021-09-15 2018 2021
## 14156 2019-02-21 2022-02-20 2019 2022
## 14157 2018-01-01 2021-01-01 2018 2021
## 14158 2018-09-30 2021-09-29 2018 2021
## 14159 2018-04-18 2021-04-18 2018 2021
## 14160 2018-09-11 2021-09-10 2018 2021
## 14161 2017-10-04 2020-10-03 2017 2020
## 14162 2018-08-16 2021-08-16 2018 2021
## 14163 2018-04-26 2021-04-25 2018 2021
## 14164 2018-08-14 2021-08-13 2018 2021
## 14165 2018-09-07 2021-09-06 2018 2021
## 14166 2018-09-30 2021-09-30 2018 2021
## 14167 2018-08-31 2021-08-30 2018 2021
## 14168 2018-06-14 2021-06-14 2018 2021
## 14169 2018-02-07 2021-02-06 2018 2021
## 14170 2018-09-03 2021-09-03 2018 2021
## 14171 2018-08-04 2021-08-04 2018 2021
## 14172 2018-10-09 2021-10-09 2018 2021
## 14173 2018-05-13 2021-05-12 2018 2021
## 14174 2018-12-13 2021-12-12 2018 2021
## 14175 2018-04-22 2021-04-21 2018 2021
## 14176 2017-12-25 2020-12-24 2017 2020
## 14177 2018-09-18 2020-09-29 2018 2020
## 14178 2018-08-14 2021-08-13 2018 2021
## 14179 2018-08-09 2021-08-09 2018 2021
## 14180 2018-09-30 2021-09-29 2018 2021
## 14181 2018-08-14 2021-08-13 2018 2021
## 14182 2018-04-15 2021-04-14 2018 2021
## 14183 2018-09-14 2021-09-14 2018 2021
## 14184 2018-09-25 2021-09-25 2018 2021
## 14185 2018-08-12 2021-08-11 2018 2021
## 14186 2018-07-15 2021-07-14 2018 2021
## 14187 2018-08-31 2021-08-30 2018 2021
## 14188 2017-11-02 2020-11-01 2017 2020
## 14189 2018-08-31 2021-08-31 2018 2021
## 14190 2018-09-03 2021-09-02 2018 2021
## 14191 2018-03-18 2021-03-18 2018 2021
## 14192 2017-12-17 2020-12-16 2017 2020
## 14193 2017-11-12 2020-11-11 2017 2020
## 14194 2017-10-01 2018-12-30 2017 2018
## 14195 2018-12-14 2021-12-13 2018 2021
## 14196 2018-09-02 2021-09-02 2018 2021
## 14197 2017-11-30 2020-11-29 2017 2020
## 14198 2018-09-09 2021-09-08 2018 2021
## 14199 2018-08-02 2021-08-01 2018 2021
## 14200 2018-02-28 2021-02-27 2018 2021
## 14201 2018-09-23 2021-09-22 2018 2021
## 14202 2018-05-17 2021-05-16 2018 2021
## 14203 2018-08-31 2021-08-31 2018 2021
## 14204 2018-08-27 2021-08-26 2018 2021
## 14205 2018-04-10 2021-04-09 2018 2021
## 14206 2018-08-31 2021-08-30 2018 2021
## 14207 2018-08-30 2021-08-29 2018 2021
## 14208 2018-08-19 2021-08-18 2018 2021
## 14209 2018-01-14 2021-01-13 2018 2021
## 14210 2018-06-14 2021-06-14 2018 2021
## 14211 2018-07-01 2021-06-30 2018 2021
## 14212 2018-09-09 2021-09-09 2018 2021
## 14213 2018-07-22 2021-07-21 2018 2021
## 14214 2017-12-11 2020-12-10 2017 2020
## 14215 2018-05-31 2021-05-31 2018 2021
## 14216 2018-08-21 2021-08-20 2018 2021
## 14217 2017-12-31 2019-03-30 2017 2019
## 14218 2019-03-05 2022-03-04 2019 2022
## 14219 2018-10-06 2021-03-10 2018 2021
## 14220 2017-10-15 2020-10-14 2017 2020
## 14221 2018-03-20 2021-03-19 2018 2021
## 14222 2018-09-30 2021-09-30 2018 2021
## 14223 2018-08-09 2020-12-30 2018 2020
## 14224 2018-09-07 2021-09-06 2018 2021
## 14225 2018-06-05 2021-06-05 2018 2021
## 14226 2018-07-03 2020-11-29 2018 2020
## 14227 2018-09-08 2021-09-07 2018 2021
## 14228 2018-06-30 2021-06-29 2018 2021
## 14229 2018-08-31 2021-08-30 2018 2021
## 14230 2018-12-31 2021-12-30 2018 2021
## 14231 2018-08-13 2021-08-12 2018 2021
## 14232 2018-08-13 2021-08-13 2018 2021
## 14233 2017-11-21 2020-11-20 2017 2020
## 14234 2018-11-05 2021-11-04 2018 2021
## 14235 2018-08-13 2021-08-13 2018 2021
## 14236 2018-09-01 2021-09-01 2018 2021
## 14237 2017-11-19 2020-11-18 2017 2020
## 14238 2017-12-27 2020-12-26 2017 2020
## 14239 2017-12-31 2019-06-29 2017 2019
## 14240 2018-05-15 2021-05-15 2018 2021
## 14241 2018-09-19 2021-09-18 2018 2021
## 14242 2018-04-08 2021-04-08 2018 2021
## 14243 2018-09-14 2021-09-13 2018 2021
## 14244 2018-03-13 2021-03-12 2018 2021
## 14245 2017-11-07 2020-11-06 2017 2020
## 14246 2018-08-28 2021-08-27 2018 2021
## 14247 2018-07-06 2021-07-05 2018 2021
## 14248 2018-08-14 2021-08-14 2018 2021
## 14249 2018-08-03 2021-07-31 2018 2021
## 14250 2018-08-31 2021-08-30 2018 2021
## 14251 2018-09-11 2021-09-10 2018 2021
## 14252 2018-03-31 2021-03-30 2018 2021
## 14253 2017-12-07 2020-12-06 2017 2020
## 14254 2018-09-11 2021-09-11 2018 2021
## 14255 2018-08-31 2021-08-30 2018 2021
## 14256 2018-09-17 2021-09-17 2018 2021
## 14257 2017-12-26 2020-12-26 2017 2020
## 14258 2017-11-23 2020-11-23 2017 2020
## 14259 2017-11-23 2020-11-23 2017 2020
## 14260 2018-09-24 2021-09-24 2018 2021
## 14261 2018-04-19 2021-03-30 2018 2021
## 14262 2018-09-02 2021-09-01 2018 2021
## 14263 2018-07-15 2020-10-09 2018 2020
## 14264 2018-04-30 2021-04-29 2018 2021
## 14265 2018-06-29 2021-06-28 2018 2021
## 14266 2018-08-27 2021-08-26 2018 2021
## 14267 2018-03-01 2021-02-28 2018 2021
## 14268 2018-08-21 2021-08-21 2018 2021
## 14269 2017-10-25 2020-10-24 2017 2020
## 14270 2018-08-19 2021-08-18 2018 2021
## 14271 2018-04-15 2021-04-14 2018 2021
## 14272 2018-05-17 2021-05-16 2018 2021
## 14273 2017-11-05 2020-11-04 2017 2020
## 14274 2018-01-29 2021-01-29 2018 2021
## 14275 2018-09-15 2021-09-14 2018 2021
## 14276 2018-04-22 2021-04-22 2018 2021
## 14277 2018-07-14 2020-05-12 2018 2020
## 14278 2018-09-11 2021-09-10 2018 2021
## 14279 2018-01-22 2019-12-02 2018 2019
## 14280 2018-09-30 2021-09-29 2018 2021
## 14281 2018-09-02 2021-09-01 2018 2021
## 14282 2018-09-05 2021-09-05 2018 2021
## 14283 2018-04-30 2021-04-29 2018 2021
## 14284 2018-05-08 2021-05-07 2018 2021
## 14285 2018-07-30 2021-07-30 2018 2021
## 14286 2018-08-30 2021-08-29 2018 2021
## 14287 2018-02-28 2021-02-28 2018 2021
## 14288 2018-09-10 2021-09-09 2018 2021
## 14289 2018-09-14 2021-09-14 2018 2021
## 14290 2018-08-30 2021-08-29 2018 2021
## 14291 2018-07-01 2021-06-30 2018 2021
## 14292 2018-07-07 2021-07-06 2018 2021
## 14293 2018-09-02 2021-09-01 2018 2021
## 14294 2018-08-24 2021-08-22 2018 2021
## 14295 2018-04-15 2021-04-14 2018 2021
## 14296 2018-08-14 2021-08-14 2018 2021
## 14297 2017-10-12 2020-10-11 2017 2020
## 14298 2018-09-30 2021-09-29 2018 2021
## 14299 2018-09-05 2021-08-29 2018 2021
## 14300 2018-07-25 2021-07-24 2018 2021
## 14301 2018-08-23 2021-08-23 2018 2021
## 14302 2018-05-23 2021-05-22 2018 2021
## 14303 2018-09-09 2021-09-08 2018 2021
## 14304 2018-07-08 2021-07-07 2018 2021
## 14305 2018-07-03 2021-07-02 2018 2021
## 14306 2018-09-09 2021-09-08 2018 2021
## 14307 2018-08-28 2021-08-27 2018 2021
## 14308 2018-06-11 2021-06-10 2018 2021
## 14309 2017-11-21 2020-11-20 2017 2020
## 14310 2018-08-17 2021-08-17 2018 2021
## 14311 2018-08-24 2021-08-24 2018 2021
## 14312 2017-12-27 2020-12-27 2017 2020
## 14313 2018-08-23 2019-08-22 2018 2019
## 14314 2018-09-04 2021-09-03 2018 2021
## 14315 2018-04-24 2021-04-21 2018 2021
## 14316 2018-09-19 2021-09-19 2018 2021
## 14317 2018-09-14 2021-09-14 2018 2021
## 14318 2018-09-22 2021-09-21 2018 2021
## 14319 2018-07-03 2021-07-02 2018 2021
## 14320 2017-12-11 2020-12-10 2017 2020
## 14321 2017-09-25 2020-09-24 2017 2020
## 14322 2018-09-06 2021-09-05 2018 2021
## 14323 2018-03-11 2021-03-10 2018 2021
## 14324 2018-09-14 2021-09-14 2018 2021
## 14325 2018-07-06 2021-07-05 2018 2021
## 14326 2018-06-30 2021-06-29 2018 2021
## 14327 2018-09-19 2021-09-18 2018 2021
## 14328 2018-08-30 2021-08-29 2018 2021
## 14329 2018-05-20 2021-05-19 2018 2021
## 14330 2018-08-31 2021-08-30 2018 2021
## 14331 2018-04-22 2018-10-05 2018 2018
## 14332 2018-09-10 2021-09-09 2018 2021
## 14333 2018-04-29 2021-04-29 2018 2021
## 14334 2019-01-23 2022-01-22 2019 2022
## 14335 2018-09-06 2021-09-05 2018 2021
## 14336 2018-04-09 2021-04-08 2018 2021
## 14337 2018-01-30 2021-01-30 2018 2021
## 14338 2018-02-04 2021-02-04 2018 2021
## 14339 2018-08-10 2021-08-10 2018 2021
## 14340 2018-09-27 2021-09-27 2018 2021
## 14341 2018-03-11 2021-03-11 2018 2021
## 14342 2018-06-10 2021-06-10 2018 2021
## 14343 2018-09-11 2021-09-10 2018 2021
## 14344 2018-06-24 2021-06-23 2018 2021
## 14345 2018-07-31 2021-07-30 2018 2021
## 14346 2018-05-14 2021-05-13 2018 2021
## 14347 2018-08-31 2021-08-31 2018 2021
## 14348 2018-09-03 2021-09-02 2018 2021
## 14349 2018-08-12 2019-12-30 2018 2019
## 14350 2017-10-16 2020-10-15 2017 2020
## 14351 2017-11-12 2020-11-11 2017 2020
## 14352 2018-07-01 2021-06-30 2018 2021
## 14353 2018-08-31 2021-08-30 2018 2021
## 14354 2019-01-17 2022-01-16 2019 2022
## 14355 2018-08-14 2021-08-13 2018 2021
## 14356 2018-01-07 2021-01-07 2018 2021
## 14357 2018-09-30 2021-09-29 2018 2021
## 14358 2018-06-12 2021-06-11 2018 2021
## 14359 2018-08-20 2021-08-20 2018 2021
## 14360 2018-09-03 2021-09-02 2018 2021
## 14361 2017-12-31 2020-12-30 2017 2020
## 14362 2019-01-17 2022-01-16 2019 2022
## 14363 2018-03-12 2021-03-11 2018 2021
## 14364 2018-09-03 2021-09-02 2018 2021
## 14365 2018-07-01 2021-07-01 2018 2021
## 14366 2018-02-08 2021-02-07 2018 2021
## 14367 2018-12-22 2021-12-21 2018 2021
## 14368 2018-09-05 2021-09-04 2018 2021
## 14369 2018-07-26 2021-07-26 2018 2021
## 14370 2018-06-04 2021-06-03 2018 2021
## 14371 2018-06-10 2021-06-09 2018 2021
## 14372 2018-02-12 2021-02-11 2018 2021
## 14373 2018-08-27 2021-08-26 2018 2021
## 14374 2018-08-06 2021-08-05 2018 2021
## 14375 2018-09-14 2021-09-13 2018 2021
## 14376 2018-09-11 2021-09-11 2018 2021
## 14377 2018-09-04 2021-09-03 2018 2021
## 14378 2017-09-25 2018-01-28 2017 2018
## 14379 2018-01-14 2021-01-14 2018 2021
## 14380 2018-06-30 2021-06-28 2018 2021
## 14381 2018-09-15 2021-09-14 2018 2021
## 14382 2018-08-17 2021-08-16 2018 2021
## 14383 2018-08-28 2021-08-27 2018 2021
## 14384 2018-07-28 2021-07-27 2018 2021
## 14385 2018-08-07 2021-08-06 2018 2021
## 14386 2018-09-10 2020-08-09 2018 2020
## 14387 2018-06-03 2021-06-02 2018 2021
## 14388 2018-08-14 2021-08-13 2018 2021
## 14389 2018-08-30 2021-08-29 2018 2021
## 14390 2018-08-02 2021-08-01 2018 2021
## 14391 2018-06-14 2021-06-13 2018 2021
## 14392 2018-09-09 2021-09-08 2018 2021
## 14393 2018-09-29 2021-03-21 2018 2021
## 14394 2018-08-21 2021-08-20 2018 2021
## 14395 2018-06-03 2021-06-03 2018 2021
## 14396 2018-10-31 2021-10-30 2018 2021
## 14397 2018-09-17 2021-09-16 2018 2021
## 14398 2018-05-10 2021-05-09 2018 2021
## 14399 2018-05-08 2021-04-29 2018 2021
## 14400 2018-07-27 2021-07-26 2018 2021
## 14401 2018-09-14 2021-09-14 2018 2021
## 14402 2017-10-03 2020-10-02 2017 2020
## 14403 2018-09-14 2021-09-13 2018 2021
## 14404 2017-11-19 2020-11-19 2017 2020
## 14405 2018-07-08 2021-07-07 2018 2021
## 14406 2018-07-08 2019-08-30 2018 2019
## 14407 2018-08-19 2021-08-18 2018 2021
## 14408 2017-11-05 2020-11-04 2017 2020
## 14409 2018-01-02 2021-01-01 2018 2021
## 14410 2018-04-27 2020-09-30 2018 2020
## 14411 2018-07-31 2021-07-30 2018 2021
## 14412 2018-08-15 2021-08-14 2018 2021
## 14413 2018-09-06 2021-09-05 2018 2021
## 14414 2018-06-30 2021-06-29 2018 2021
## 14415 2018-05-02 2021-05-01 2018 2021
## 14416 2018-03-25 2021-03-22 2018 2021
## 14417 2018-09-14 2021-09-13 2018 2021
## 14418 2017-12-31 2020-12-30 2017 2020
## 14419 2018-03-31 2021-03-30 2018 2021
## 14420 2018-02-14 2021-02-13 2018 2021
## 14421 2018-09-18 2021-09-18 2018 2021
## 14422 2018-06-24 2021-06-23 2018 2021
## 14423 2018-09-10 2021-09-09 2018 2021
## 14424 2018-09-12 2021-09-12 2018 2021
## 14425 2017-12-07 2020-12-05 2017 2020
## 14426 2018-08-31 2021-08-31 2018 2021
## 14427 2018-08-25 2021-08-24 2018 2021
## 14428 2018-08-09 2021-08-08 2018 2021
## 14429 2018-08-14 2021-08-13 2018 2021
## 14430 2018-09-11 2021-09-10 2018 2021
## 14431 2018-02-12 2021-02-11 2018 2021
## 14432 2018-09-10 2021-09-09 2018 2021
## 14433 2018-01-25 2021-01-24 2018 2021
## 14434 2018-07-31 2021-07-30 2018 2021
## 14435 2017-11-07 2020-11-06 2017 2020
## 14436 2018-08-14 2021-08-13 2018 2021
## 14437 2018-04-08 2021-04-07 2018 2021
## 14438 2018-07-22 2021-07-22 2018 2021
## 14439 2018-10-31 2021-10-30 2018 2021
## 14440 2018-07-10 2020-12-30 2018 2020
## 14441 2018-07-26 2021-07-25 2018 2021
## 14442 2018-05-28 2021-05-27 2018 2021
## 14443 2018-08-31 2021-08-30 2018 2021
## 14444 2018-09-09 2021-09-08 2018 2021
## 14445 2018-07-31 2021-07-30 2018 2021
## 14446 2018-08-31 2021-08-31 2018 2021
## 14447 2018-09-02 2020-12-30 2018 2020
## 14448 2018-08-11 2021-08-10 2018 2021
## 14449 2018-09-04 2021-09-04 2018 2021
## 14450 2018-09-09 2021-09-08 2018 2021
## 14451 2018-06-21 2021-04-29 2018 2021
## 14452 2018-09-26 2021-09-25 2018 2021
## 14453 2018-03-05 2021-03-04 2018 2021
## 14454 2018-02-26 2021-02-25 2018 2021
## 14455 2018-03-20 2021-03-19 2018 2021
## 14456 2018-08-30 2021-08-29 2018 2021
## 14457 2018-09-14 2020-09-13 2018 2020
## 14458 2018-07-08 2021-07-07 2018 2021
## 14459 2018-08-21 2021-08-20 2018 2021
## 14460 2018-06-17 2021-06-16 2018 2021
## 14461 2018-04-30 2021-04-29 2018 2021
## 14462 2018-03-22 2020-08-28 2018 2020
## 14463 2018-02-16 2021-02-15 2018 2021
## 14464 2018-07-30 2021-07-29 2018 2021
## 14465 2018-08-29 2021-08-29 2018 2021
## 14466 2018-02-14 2021-02-13 2018 2021
## 14467 2018-03-19 2021-03-18 2018 2021
## 14468 2018-09-10 2021-09-10 2018 2021
## 14469 2018-06-19 2021-06-19 2018 2021
## 14470 2018-04-30 2021-04-29 2018 2021
## 14471 2018-09-03 2021-09-02 2018 2021
## 14472 2018-08-22 2021-08-21 2018 2021
## 14473 2018-09-30 2021-09-29 2018 2021
## 14474 2018-03-18 2021-03-17 2018 2021
## 14475 2018-09-04 2021-09-03 2018 2021
## 14476 2017-11-12 2020-11-11 2017 2020
## 14477 2017-10-02 2020-10-02 2017 2020
## 14478 2018-08-31 2021-08-31 2018 2021
## 14479 2018-06-11 2021-06-10 2018 2021
## 14480 2018-04-30 2021-04-29 2018 2021
## 14481 2018-09-07 2021-09-07 2018 2021
## 14482 2018-06-25 2021-06-24 2018 2021
## 14483 2018-08-31 2021-08-30 2018 2021
## 14484 2018-10-31 2021-10-30 2018 2021
## 14485 2018-04-18 2021-04-17 2018 2021
## 14486 2019-02-28 2022-02-27 2019 2022
## 14487 2018-09-09 2021-09-08 2018 2021
## 14488 2018-11-15 2021-11-14 2018 2021
## 14489 2018-09-20 2021-09-19 2018 2021
## 14490 2018-06-12 2021-06-11 2018 2021
## 14491 2018-04-03 2021-04-02 2018 2021
## 14492 2018-09-01 2021-08-31 2018 2021
## 14493 2018-05-20 2020-11-25 2018 2020
## 14494 2018-07-30 2021-07-29 2018 2021
## 14495 2018-07-12 2021-07-11 2018 2021
## 14496 2018-08-31 2020-08-30 2018 2020
## 14497 2018-05-31 2021-05-30 2018 2021
## 14498 2018-08-27 2021-08-27 2018 2021
## 14499 2017-12-03 2020-12-02 2017 2020
## 14500 2018-07-04 2021-07-01 2018 2021
## 14501 2018-10-13 2021-10-13 2018 2021
## 14502 2018-09-05 2021-08-29 2018 2021
## 14503 2018-09-14 2021-09-13 2018 2021
## 14504 2017-11-12 2020-11-11 2017 2020
## 14505 2018-06-27 2020-12-30 2018 2020
## 14506 2017-12-27 2020-12-27 2017 2020
## 14507 2018-04-05 2021-04-05 2018 2021
## 14508 2018-09-09 2021-09-09 2018 2021
## 14509 2018-09-07 2021-09-06 2018 2021
## 14510 2019-01-10 2022-01-09 2019 2022
## 14511 2017-11-21 2020-11-21 2017 2020
## 14512 2018-02-18 2021-02-17 2018 2021
## 14513 2018-09-17 2021-09-17 2018 2021
## 14514 2018-08-08 2021-08-08 2018 2021
## 14515 2018-08-14 2021-08-13 2018 2021
## 14516 2018-12-31 2021-12-30 2018 2021
## 14517 2018-06-26 2021-06-25 2018 2021
## 14518 2018-09-16 2021-09-15 2018 2021
## 14519 2018-03-21 2021-03-20 2018 2021
## 14520 2018-09-30 2021-09-27 2018 2021
## 14521 2018-01-07 2019-08-28 2018 2019
## 14522 2018-05-14 2021-05-12 2018 2021
## 14523 2018-05-13 2018-12-30 2018 2018
## 14524 2018-04-18 2021-04-17 2018 2021
## 14525 2018-03-31 2021-03-30 2018 2021
## 14526 2018-10-01 2021-09-30 2018 2021
## 14527 2018-05-17 2021-05-17 2018 2021
## 14528 2018-03-22 2021-03-22 2018 2021
## 14529 2018-06-17 2021-06-16 2018 2021
## 14530 2018-06-25 2021-06-24 2018 2021
## 14531 2018-04-29 2021-04-29 2018 2021
## 14532 2018-08-31 2021-08-30 2018 2021
## 14533 2018-02-28 2021-02-28 2018 2021
## 14534 2018-01-28 2021-01-27 2018 2021
## 14535 2018-09-15 2020-06-14 2018 2020
## 14536 2018-07-31 2021-07-30 2018 2021
## 14537 2018-06-16 2021-06-15 2018 2021
## 14538 2018-09-17 2021-09-16 2018 2021
## 14539 2017-11-30 2020-11-29 2017 2020
## 14540 2018-04-01 2021-03-31 2018 2021
## 14541 2018-09-14 2021-09-14 2018 2021
## 14542 2018-01-11 2021-01-10 2018 2021
## 14543 2018-09-23 2021-09-22 2018 2021
## 14544 2018-01-02 2020-12-30 2018 2020
## 14545 2018-06-03 2021-06-02 2018 2021
## 14546 2018-07-28 2021-07-28 2018 2021
## 14547 2019-01-31 2022-01-30 2019 2022
## 14548 2018-01-30 2021-01-27 2018 2021
## 14549 2018-09-06 2021-09-05 2018 2021
## 14550 2018-07-25 2021-07-24 2018 2021
## 14551 2018-09-06 2021-09-05 2018 2021
## 14552 2018-08-12 2021-08-11 2018 2021
## 14553 2018-09-18 2021-09-17 2018 2021
## 14554 2018-09-15 2021-09-14 2018 2021
## 14555 2018-03-18 2021-03-17 2018 2021
## 14556 2018-07-31 2021-07-30 2018 2021
## 14557 2018-06-03 2021-06-02 2018 2021
## 14558 2018-04-10 2021-04-09 2018 2021
## 14559 2017-12-31 2020-12-31 2017 2020
## 14560 2018-04-18 2021-04-15 2018 2021
## 14561 2018-09-04 2021-09-03 2018 2021
## 14562 2018-09-14 2021-09-14 2018 2021
## 14563 2018-05-20 2021-05-19 2018 2021
## 14564 2018-03-10 2021-03-10 2018 2021
## 14565 2018-07-25 2021-07-24 2018 2021
## 14566 2018-08-05 2021-08-04 2018 2021
## 14567 2018-09-04 2021-09-03 2018 2021
## 14568 2018-08-02 2021-08-02 2018 2021
## 14569 2018-07-29 2021-07-26 2018 2021
## 14570 2017-12-28 2020-12-25 2017 2020
## 14571 2018-06-11 2021-06-10 2018 2021
## 14572 2018-05-09 2021-05-09 2018 2021
## 14573 2018-10-31 2019-10-30 2018 2019
## 14574 2017-11-23 2020-11-22 2017 2020
## 14575 2018-05-14 2020-06-29 2018 2020
## 14576 2017-10-11 2020-10-11 2017 2020
## 14577 2018-04-30 2021-04-29 2018 2021
## 14578 2018-08-26 2021-08-25 2018 2021
## 14579 2018-08-16 2021-08-15 2018 2021
## 14580 2017-11-26 2020-11-25 2017 2020
## 14581 2018-09-06 2021-09-06 2018 2021
## 14582 2018-05-06 2021-05-05 2018 2021
## 14583 2018-09-18 2021-03-17 2018 2021
## 14584 2018-01-19 2021-01-18 2018 2021
## 14585 2017-10-01 2020-01-18 2017 2020
## 14586 2018-09-11 2021-09-11 2018 2021
## 14587 2018-09-20 2021-09-20 2018 2021
## 14588 2018-09-06 2021-09-05 2018 2021
## 14589 2018-08-31 2021-03-30 2018 2021
## 14590 2018-09-02 2021-09-01 2018 2021
## 14591 2018-07-24 2021-07-23 2018 2021
## 14592 2018-08-31 2021-08-30 2018 2021
## 14593 2018-03-04 2021-03-03 2018 2021
## 14594 2018-09-12 2021-09-12 2018 2021
## 14595 2017-11-26 2019-01-23 2017 2019
## 14596 2018-09-20 2021-09-19 2018 2021
## 14597 2018-03-28 2021-03-27 2018 2021
## 14598 2018-05-06 2021-05-05 2018 2021
## 14599 2018-09-18 2021-09-17 2018 2021
## 14600 2018-04-30 2021-04-30 2018 2021
## 14601 2018-09-17 2021-09-16 2018 2021
## 14602 2017-10-22 2020-10-22 2017 2020
## 14603 2017-12-31 2020-12-28 2017 2020
## 14604 2018-09-10 2021-09-09 2018 2021
## 14605 2018-09-04 2021-09-03 2018 2021
## 14606 2018-01-18 2021-01-17 2018 2021
## 14607 2018-02-04 2021-01-30 2018 2021
## 14608 2018-08-20 2021-08-19 2018 2021
## 14609 2018-08-27 2021-08-26 2018 2021
## 14610 2018-08-31 2021-08-30 2018 2021
## 14611 2018-08-29 2021-08-28 2018 2021
## 14612 2018-01-11 2021-01-08 2018 2021
## 14613 2018-09-19 2021-09-18 2018 2021
## 14614 2018-07-29 2021-07-28 2018 2021
## 14615 2019-02-09 2022-02-08 2019 2022
## 14616 2018-03-21 2021-03-20 2018 2021
## 14617 2018-07-31 2021-07-31 2018 2021
## 14618 2018-07-01 2021-06-28 2018 2021
## 14619 2018-09-03 2021-09-02 2018 2021
## 14620 2018-05-13 2021-05-12 2018 2021
## 14621 2018-07-08 2021-06-30 2018 2021
## 14622 2018-09-30 2021-09-29 2018 2021
## 14623 2018-08-31 2021-08-31 2018 2021
## 14624 2018-09-11 2021-09-10 2018 2021
## 14625 2018-08-08 2021-08-07 2018 2021
## 14626 2018-08-17 2021-08-16 2018 2021
## 14627 2018-07-06 2021-07-05 2018 2021
## 14628 2018-07-30 2021-07-29 2018 2021
## 14629 2018-09-03 2021-09-02 2018 2021
## 14630 2018-04-11 2021-04-10 2018 2021
## 14631 2018-08-03 2021-07-31 2018 2021
## 14632 2018-09-11 2021-09-10 2018 2021
## 14633 2018-09-10 2021-09-09 2018 2021
## 14634 2018-09-26 2021-09-25 2018 2021
## 14635 2018-09-01 2021-08-31 2018 2021
## 14636 2018-08-31 2021-08-31 2018 2021
## 14637 2018-09-05 2021-09-04 2018 2021
## 14638 2018-03-14 2021-03-11 2018 2021
## 14639 2018-01-31 2021-01-30 2018 2021
## 14640 2018-08-20 2021-08-19 2018 2021
## 14641 2018-04-29 2021-04-28 2018 2021
## 14642 2018-06-17 2019-06-16 2018 2019
## 14643 2018-01-10 2018-12-30 2018 2018
## 14644 2018-08-02 2021-07-30 2018 2021
## 14645 2018-01-17 2021-01-16 2018 2021
## 14646 2018-05-31 2021-05-30 2018 2021
## 14647 2018-02-28 2021-02-28 2018 2021
## 14648 2018-04-17 2021-04-16 2018 2021
## 14649 2018-09-16 2021-09-16 2018 2021
## 14650 2018-09-02 2021-09-01 2018 2021
## 14651 2018-08-14 2021-08-13 2018 2021
## 14652 2018-02-27 2021-02-26 2018 2021
## 14653 2018-08-22 2021-08-22 2018 2021
## 14654 2018-08-31 2021-08-30 2018 2021
## 14655 2018-02-17 2021-02-16 2018 2021
## 14656 2018-08-10 2021-08-09 2018 2021
## 14657 2018-07-25 2020-12-30 2018 2020
## 14658 2018-09-19 2021-09-19 2018 2021
## 14659 2018-02-04 2021-02-04 2018 2021
## 14660 2018-09-18 2021-09-16 2018 2021
## 14661 2018-07-26 2021-07-25 2018 2021
## 14662 2018-09-19 2021-09-18 2018 2021
## 14663 2018-05-14 2021-05-13 2018 2021
## 14664 2017-10-01 2020-09-30 2017 2020
## 14665 2017-12-18 2020-12-17 2017 2020
## 14666 2018-08-31 2021-08-31 2018 2021
## 14667 2018-09-10 2021-09-09 2018 2021
## 14668 2018-07-30 2021-07-27 2018 2021
## 14669 2018-08-16 2021-08-15 2018 2021
## 14670 2018-08-26 2021-08-26 2018 2021
## 14671 2018-09-04 2021-09-04 2018 2021
## 14672 2018-09-03 2019-09-13 2018 2019
## 14673 2018-07-05 2021-07-04 2018 2021
## 14674 2018-08-21 2021-08-20 2018 2021
## 14675 2018-08-31 2021-08-30 2018 2021
## 14676 2017-12-03 2018-12-02 2017 2018
## 14677 2018-02-28 2021-02-27 2018 2021
## 14678 2018-05-29 2021-05-28 2018 2021
## 14679 2018-08-19 2021-08-18 2018 2021
## 14680 2018-09-09 2021-09-09 2018 2021
## 14681 2018-02-18 2021-02-17 2018 2021
## 14682 2018-03-18 2021-03-17 2018 2021
## 14683 2018-09-26 2021-09-25 2018 2021
## 14684 2018-08-12 2021-08-12 2018 2021
## 14685 2018-01-02 2021-01-01 2018 2021
## 14686 2018-08-05 2021-08-04 2018 2021
## 14687 2018-08-14 2019-08-14 2018 2019
## 14688 2018-07-17 2021-07-16 2018 2021
## 14689 2018-05-13 2021-05-12 2018 2021
## 14690 2017-12-12 2020-12-11 2017 2020
## 14691 2018-09-05 2021-09-05 2018 2021
## 14692 2017-12-27 2020-12-27 2017 2020
## 14693 2019-01-04 2022-01-04 2019 2022
## 14694 2018-08-23 2021-08-22 2018 2021
## 14695 2018-05-26 2021-05-25 2018 2021
## 14696 2018-07-23 2021-07-22 2018 2021
## 14697 2018-08-26 2021-08-25 2018 2021
## 14698 2018-04-17 2021-04-01 2018 2021
## 14699 2018-12-17 2021-12-16 2018 2021
## 14700 2018-08-30 2021-08-30 2018 2021
## 14701 2018-05-29 2021-05-29 2018 2021
## 14702 2018-07-04 2020-12-29 2018 2020
## 14703 2018-09-09 2021-09-08 2018 2021
## 14704 2018-02-23 2021-02-22 2018 2021
## 14705 2018-07-26 2021-07-25 2018 2021
## 14706 2018-12-09 2021-12-08 2018 2021
## 14707 2018-08-01 2021-07-31 2018 2021
## 14708 2018-09-06 2021-09-05 2018 2021
## 14709 2018-09-30 2021-09-29 2018 2021
## 14710 2018-07-21 2021-07-20 2018 2021
## 14711 2018-07-15 2021-07-14 2018 2021
## 14712 2018-09-10 2021-09-09 2018 2021
## 14713 2017-11-05 2020-11-04 2017 2020
## 14714 2018-02-21 2021-02-20 2018 2021
## 14715 2018-10-14 2021-10-14 2018 2021
## 14716 2018-04-01 2021-03-31 2018 2021
## 14717 2018-09-21 2021-09-20 2018 2021
## 14718 2018-08-31 2021-08-30 2018 2021
## 14719 2018-01-01 2020-12-31 2018 2020
## 14720 2018-09-06 2021-09-05 2018 2021
## 14721 2017-10-22 2020-10-19 2017 2020
## 14722 2018-02-11 2021-02-10 2018 2021
## 14723 2018-09-06 2021-09-06 2018 2021
## 14724 2018-08-23 2021-08-23 2018 2021
## 14725 2018-06-14 2021-06-14 2018 2021
## 14726 2019-02-24 2022-01-23 2019 2022
## 14727 2018-09-25 2021-09-24 2018 2021
## 14728 2018-07-31 2021-07-30 2018 2021
## 14729 2018-09-06 2021-09-05 2018 2021
## 14730 2018-09-18 2021-09-17 2018 2021
## 14731 2018-07-17 2021-07-16 2018 2021
## 14732 2018-09-12 2021-09-11 2018 2021
## 14733 2018-05-14 2021-05-13 2018 2021
## 14734 2018-08-01 2021-07-31 2018 2021
## 14735 2018-09-19 2021-09-18 2018 2021
## 14736 2018-03-20 2021-03-20 2018 2021
## 14737 2018-08-30 2021-08-29 2018 2021
## 14738 2018-04-08 2021-04-07 2018 2021
## 14739 2018-07-15 2021-07-14 2018 2021
## 14740 2018-09-17 2021-09-16 2018 2021
## 14741 2018-09-18 2021-09-17 2018 2021
## 14742 2017-10-12 2020-10-11 2017 2020
## 14743 2018-07-01 2021-06-30 2018 2021
## 14744 2018-07-02 2021-07-01 2018 2021
## 14745 2018-09-23 2021-09-22 2018 2021
## 14746 2018-01-01 2020-12-31 2018 2020
## 14747 2018-09-20 2021-09-19 2018 2021
## 14748 2018-09-14 2021-09-13 2018 2021
## 14749 2018-05-13 2021-05-13 2018 2021
## 14750 2018-03-31 2018-12-30 2018 2018
## 14751 2018-08-29 2021-07-31 2018 2021
## 14752 2018-01-18 2021-01-17 2018 2021
## 14753 2018-01-31 2021-01-30 2018 2021
## 14754 2018-09-09 2021-09-08 2018 2021
## 14755 2018-07-31 2021-07-30 2018 2021
## 14756 2018-09-18 2021-09-17 2018 2021
## 14757 2018-06-17 2021-06-16 2018 2021
## 14758 2018-05-06 2021-05-05 2018 2021
## 14759 2018-09-20 2021-09-20 2018 2021
## 14760 2018-09-03 2021-09-02 2018 2021
## 14761 2018-09-14 2021-09-13 2018 2021
## 14762 2018-09-01 2021-08-31 2018 2021
## 14763 2018-08-31 2021-08-30 2018 2021
## 14764 2017-10-31 2020-08-22 2017 2020
## 14765 2018-06-14 2021-06-14 2018 2021
## 14766 2018-03-27 2021-03-27 2018 2021
## 14767 2017-12-10 2020-12-09 2017 2020
## 14768 2018-05-23 2021-05-22 2018 2021
## 14769 2018-08-03 2021-07-31 2018 2021
## 14770 2018-01-01 2021-01-01 2018 2021
## 14771 2018-07-11 2021-07-10 2018 2021
## 14772 2018-04-11 2021-04-10 2018 2021
## 14773 2018-07-29 2021-07-28 2018 2021
## 14774 2018-08-28 2021-08-27 2018 2021
## 14775 2018-01-18 2021-01-17 2018 2021
## 14776 2018-07-18 2021-07-17 2018 2021
## 14777 2018-07-31 2021-07-30 2018 2021
## 14778 2018-10-01 2021-10-01 2018 2021
## 14779 2018-06-17 2021-06-16 2018 2021
## 14780 2018-08-05 2021-08-04 2018 2021
## 14781 2018-06-10 2021-06-10 2018 2021
## 14782 2018-09-22 2021-09-21 2018 2021
## 14783 2018-09-24 2021-09-23 2018 2021
## 14784 2018-03-14 2021-03-13 2018 2021
## 14785 2017-11-09 2020-11-08 2017 2020
## 14786 2018-07-28 2021-07-27 2018 2021
## 14787 2018-09-11 2021-09-11 2018 2021
## 14788 2018-03-31 2021-03-30 2018 2021
## 14789 2018-12-31 2021-12-31 2018 2021
## 14790 2018-03-05 2021-03-05 2018 2021
## 14791 2018-08-26 2021-08-25 2018 2021
## 14792 2018-08-21 2021-08-20 2018 2021
## 14793 2018-09-30 2021-09-29 2018 2021
## 14794 2018-08-29 2021-08-28 2018 2021
## 14795 2017-11-17 2019-01-09 2017 2019
## 14796 2018-08-26 2021-08-25 2018 2021
## 14797 2018-05-20 2021-05-19 2018 2021
## 14798 2017-10-29 2020-10-28 2017 2020
## 14799 2019-01-18 2022-01-17 2019 2022
## 14800 2018-07-26 2021-07-23 2018 2021
## 14801 2018-01-28 2021-01-27 2018 2021
## 14802 2017-11-10 2020-11-09 2017 2020
## 14803 2018-09-14 2021-09-14 2018 2021
## 14804 2018-05-24 2021-05-23 2018 2021
## 14805 2017-10-15 2020-10-14 2017 2020
## 14806 2018-06-10 2021-06-09 2018 2021
## 14807 2018-08-31 2020-08-30 2018 2020
## 14808 2018-03-31 2021-03-30 2018 2021
## 14809 2018-04-15 2019-09-03 2018 2019
## 14810 2017-11-16 2020-11-15 2017 2020
## 14811 2018-09-19 2021-09-18 2018 2021
## 14812 2018-07-11 2021-07-10 2018 2021
## 14813 2018-05-20 2021-05-19 2018 2021
## 14814 2018-07-31 2021-07-30 2018 2021
## 14815 2017-11-05 2020-11-04 2017 2020
## 14816 2018-09-06 2021-09-05 2018 2021
## 14817 2017-11-06 2019-07-24 2017 2019
## 14818 2017-10-04 2020-10-03 2017 2020
## 14819 2019-01-17 2021-01-16 2019 2021
## 14820 2018-05-07 2021-05-07 2018 2021
## 14821 2018-09-30 2021-09-29 2018 2021
## 14822 2018-09-25 2021-09-24 2018 2021
## 14823 2018-04-01 2021-03-31 2018 2021
## 14824 2018-08-26 2021-08-26 2018 2021
## 14825 2018-07-18 2021-07-16 2018 2021
## 14826 2018-08-21 2021-08-20 2018 2021
## 14827 2018-09-06 2021-09-06 2018 2021
## 14828 2018-07-08 2021-07-08 2018 2021
## 14829 2018-05-03 2020-07-26 2018 2020
## 14830 2018-07-31 2021-07-31 2018 2021
## 14831 2018-09-09 2021-09-08 2018 2021
## 14832 2018-12-11 2021-12-08 2018 2021
## 14833 2018-08-14 2021-08-13 2018 2021
## 14834 2018-08-23 2021-08-23 2018 2021
## 14835 2018-04-24 2021-04-23 2018 2021
## 14836 2018-07-01 2020-09-14 2018 2020
## 14837 2018-02-01 2021-01-31 2018 2021
## 14838 2018-08-07 2021-08-06 2018 2021
## 14839 2018-09-06 2021-09-05 2018 2021
## 14840 2018-09-30 2021-09-26 2018 2021
## 14841 2018-08-27 2021-08-27 2018 2021
## 14842 2018-08-30 2021-08-30 2018 2021
## 14843 2018-06-27 2020-03-04 2018 2020
## 14844 2018-09-08 2021-09-08 2018 2021
## 14845 2018-09-03 2021-09-02 2018 2021
## 14846 2018-08-12 2021-08-11 2018 2021
## 14847 2018-05-31 2021-05-30 2018 2021
## 14848 2018-08-14 2021-08-14 2018 2021
## 14849 2018-09-05 2021-09-04 2018 2021
## 14850 2018-08-31 2021-08-30 2018 2021
## 14851 2018-04-16 2021-04-15 2018 2021
## 14852 2018-10-01 2021-09-30 2018 2021
## 14853 2018-05-11 2021-05-11 2018 2021
## 14854 2018-01-14 2021-01-13 2018 2021
## 14855 2018-03-04 2020-05-08 2018 2020
## 14856 2018-07-31 2021-07-30 2018 2021
## 14857 2018-09-19 2021-09-19 2018 2021
## 14858 2018-10-07 2021-10-07 2018 2021
## 14859 2018-09-12 2021-09-11 2018 2021
## 14860 2018-06-24 2021-06-23 2018 2021
## 14861 2018-08-27 2021-08-26 2018 2021
## 14862 2018-08-11 2021-08-10 2018 2021
## 14863 2018-09-30 2021-09-29 2018 2021
## 14864 2018-07-31 2021-07-30 2018 2021
## 14865 2018-09-17 2021-09-16 2018 2021
## 14866 2018-09-09 2021-09-08 2018 2021
## 14867 2018-05-17 2021-05-16 2018 2021
## 14868 2018-08-19 2021-08-18 2018 2021
## 14869 2018-09-05 2021-09-05 2018 2021
## 14870 2018-03-04 2019-03-04 2018 2019
## 14871 2018-08-19 2021-08-19 2018 2021
## 14872 2018-03-25 2021-03-24 2018 2021
## 14873 2018-08-24 2021-08-23 2018 2021
## 14874 2018-09-05 2021-09-04 2018 2021
## 14875 2018-08-31 2021-08-30 2018 2021
## 14876 2018-10-31 2021-06-29 2018 2021
## 14877 2017-11-19 2020-11-18 2017 2020
## 14878 2019-02-19 2022-02-18 2019 2022
## 14879 2017-12-17 2020-12-16 2017 2020
## 14880 2018-09-19 2021-09-18 2018 2021
## 14881 2018-09-12 2021-09-11 2018 2021
## 14882 2018-09-04 2021-09-03 2018 2021
## 14883 2017-10-22 2020-10-22 2017 2020
## 14884 2018-08-26 2021-08-25 2018 2021
## 14885 2018-09-19 2021-09-19 2018 2021
## 14886 2018-09-08 2021-09-07 2018 2021
## 14887 2019-02-24 2022-02-24 2019 2022
## 14888 2018-07-31 2021-07-30 2018 2021
## 14889 2018-06-05 2021-06-05 2018 2021
## 14890 2018-08-18 2021-08-17 2018 2021
## 14891 2018-07-24 2021-07-23 2018 2021
## 14892 2018-05-27 2021-05-26 2018 2021
## 14893 2018-09-17 2021-09-17 2018 2021
## 14894 2018-08-21 2021-08-21 2018 2021
## 14895 2018-09-13 2021-09-12 2018 2021
## 14896 2018-09-23 2021-09-23 2018 2021
## 14897 2018-05-17 2021-05-14 2018 2021
## 14898 2018-08-26 2021-08-25 2018 2021
## 14899 2018-08-31 2021-08-31 2018 2021
## 14900 2017-12-03 2020-12-02 2017 2020
## 14901 2018-03-04 2021-03-03 2018 2021
## 14902 2018-09-12 2021-09-11 2018 2021
## 14903 2018-03-26 2021-03-25 2018 2021
## 14904 2018-09-28 2021-09-27 2018 2021
## 14905 2018-09-09 2021-09-08 2018 2021
## 14906 2018-09-05 2021-09-04 2018 2021
## 14907 2018-08-19 2021-08-19 2018 2021
## 14908 2018-09-17 2021-09-16 2018 2021
## 14909 2018-01-25 2021-01-22 2018 2021
## 14910 2017-10-15 2020-10-15 2017 2020
## 14911 2018-01-01 2020-09-02 2018 2020
## 14912 2018-07-29 2021-07-28 2018 2021
## 14913 2018-05-31 2021-05-30 2018 2021
## 14914 2018-08-31 2021-08-30 2018 2021
## 14915 2018-09-17 2021-09-17 2018 2021
## 14916 2018-12-24 2021-12-24 2018 2021
## 14917 2017-11-05 2020-11-05 2017 2020
## 14918 2018-07-26 2021-07-25 2018 2021
## 14919 2018-03-29 2021-03-28 2018 2021
## 14920 2018-04-09 2021-04-08 2018 2021
## 14921 2018-08-23 2021-08-22 2018 2021
## 14922 2018-07-31 2021-07-30 2018 2021
## 14923 2018-08-21 2021-08-20 2018 2021
## 14924 2017-11-06 2020-11-05 2017 2020
## 14925 2018-06-05 2021-06-04 2018 2021
## 14926 2018-03-31 2021-03-30 2018 2021
## 14927 2018-04-21 2021-04-20 2018 2021
## 14928 2018-07-29 2020-07-28 2018 2020
## 14929 2018-08-29 2021-06-24 2018 2021
## 14930 2018-08-31 2021-08-29 2018 2021
## 14931 2018-08-31 2021-08-30 2018 2021
## 14932 2018-09-13 2021-09-13 2018 2021
## 14933 2017-11-22 2020-11-21 2017 2020
## 14934 2017-11-12 2020-11-11 2017 2020
## 14935 2018-02-18 2021-02-17 2018 2021
## 14936 2018-05-02 2021-05-01 2018 2021
## 14937 2018-03-05 2021-03-04 2018 2021
## 14938 2018-06-30 2021-06-29 2018 2021
## 14939 2018-02-08 2021-02-07 2018 2021
## 14940 2018-08-31 2021-08-31 2018 2021
## 14941 2018-08-19 2020-07-20 2018 2020
## 14942 2017-12-10 2020-12-09 2017 2020
## 14943 2018-04-30 2021-04-29 2018 2021
## 14944 2018-08-01 2021-07-31 2018 2021
## 14945 2018-07-17 2021-07-16 2018 2021
## 14946 2018-07-22 2021-07-21 2018 2021
## 14947 2018-07-24 2021-07-23 2018 2021
## 14948 2018-04-15 2021-04-14 2018 2021
## 14949 2018-08-15 2021-08-14 2018 2021
## 14950 2018-08-30 2021-08-29 2018 2021
## 14951 2018-11-01 2021-10-31 2018 2021
## 14952 2018-09-24 2021-09-24 2018 2021
## 14953 2017-10-22 2020-10-22 2017 2020
## 14954 2018-05-18 2021-05-17 2018 2021
## 14955 2018-08-30 2021-08-29 2018 2021
## 14956 2018-08-31 2021-08-31 2018 2021
## 14957 2018-06-05 2021-06-04 2018 2021
## 14958 2018-08-06 2021-08-05 2018 2021
## 14959 2018-05-03 2021-05-02 2018 2021
## 14960 2018-07-31 2021-07-30 2018 2021
## 14961 2018-09-13 2021-09-12 2018 2021
## 14962 2018-08-31 2021-08-31 2018 2021
## 14963 2019-01-02 2022-01-01 2019 2022
## 14964 2018-06-14 2021-06-13 2018 2021
## 14965 2017-12-18 2020-09-01 2017 2020
## 14966 2017-12-31 2020-12-31 2017 2020
## 14967 2018-07-08 2021-07-07 2018 2021
## 14968 2017-10-09 2020-10-08 2017 2020
## 14969 2018-08-14 2021-08-14 2018 2021
## 14970 2018-08-31 2021-08-31 2018 2021
## 14971 2018-09-09 2021-09-08 2018 2021
## 14972 2018-09-05 2021-09-04 2018 2021
## 14973 2018-07-30 2021-07-29 2018 2021
## 14974 2018-09-11 2021-09-10 2018 2021
## 14975 2018-09-19 2021-09-18 2018 2021
## 14976 2018-05-03 2021-05-02 2018 2021
## 14977 2018-06-13 2019-10-30 2018 2019
## 14978 2018-09-12 2021-09-11 2018 2021
## 14979 2017-12-04 2020-12-03 2017 2020
## 14980 2018-06-20 2021-01-13 2018 2021
## 14981 2018-07-09 2021-07-05 2018 2021
## 14982 2018-04-11 2021-04-10 2018 2021
## 14983 2018-09-18 2021-09-17 2018 2021
## 14984 2018-09-25 2021-09-24 2018 2021
## 14985 2018-10-01 2021-10-01 2018 2021
## 14986 2018-08-24 2021-08-24 2018 2021
## 14987 2018-08-26 2021-08-25 2018 2021
## 14988 2018-01-23 2021-01-23 2018 2021
## 14989 2018-09-15 2021-09-14 2018 2021
## 14990 2018-07-13 2021-07-13 2018 2021
## 14991 2018-09-15 2021-09-14 2018 2021
## 14992 2018-09-09 2021-09-09 2018 2021
## 14993 2018-09-09 2021-09-08 2018 2021
## 14994 2018-08-13 2021-08-12 2018 2021
## 14995 2018-08-27 2021-08-26 2018 2021
## 14996 2018-08-16 2021-08-15 2018 2021
## 14997 2018-03-14 2021-03-14 2018 2021
## 14998 2018-09-14 2021-09-13 2018 2021
## 14999 2018-09-10 2021-09-09 2018 2021
## 15000 2018-09-23 2021-09-22 2018 2021
## 15001 2018-01-30 2021-01-29 2018 2021
## 15002 2018-04-22 2021-04-22 2018 2021
## 15003 2018-08-31 2021-08-30 2018 2021
## 15004 2018-12-21 2021-12-21 2018 2021
## 15005 2018-09-13 2021-09-12 2018 2021
## 15006 2019-02-24 2022-02-23 2019 2022
## 15007 2018-01-28 2021-01-27 2018 2021
## 15008 2017-12-05 2020-12-04 2017 2020
## 15009 2018-09-14 2021-09-13 2018 2021
## 15010 2018-12-30 2021-12-30 2018 2021
## 15011 2018-01-24 2021-01-23 2018 2021
## 15012 2018-08-04 2021-08-03 2018 2021
## 15013 2018-09-14 2021-09-13 2018 2021
## 15014 2018-09-16 2021-09-16 2018 2021
## 15015 2018-09-11 2021-09-10 2018 2021
## 15016 2018-09-30 2021-09-29 2018 2021
## 15017 2018-08-24 2021-08-24 2018 2021
## 15018 2018-09-03 2021-09-02 2018 2021
## 15019 2018-06-30 2021-06-29 2018 2021
## 15020 2018-07-17 2021-07-16 2018 2021
## 15021 2018-09-06 2021-09-05 2018 2021
## 15022 2018-07-26 2021-07-25 2018 2021
## 15023 2017-10-05 2019-12-29 2017 2019
## 15024 2018-09-08 2021-09-08 2018 2021
## 15025 2018-08-16 2021-08-15 2018 2021
## 15026 2018-03-20 2021-03-20 2018 2021
## 15027 2018-01-14 2021-01-14 2018 2021
## 15028 2018-11-10 2021-11-09 2018 2021
## 15029 2017-11-07 2020-11-05 2017 2020
## 15030 2018-09-30 2021-09-30 2018 2021
## 15031 2018-08-24 2021-08-23 2018 2021
## 15032 2018-09-19 2021-09-19 2018 2021
## 15033 2018-05-09 2021-05-09 2018 2021
## 15034 2017-12-12 2020-12-12 2017 2020
## 15035 2018-09-06 2021-09-05 2018 2021
## 15036 2017-10-22 2020-10-21 2017 2020
## 15037 2018-09-13 2020-09-11 2018 2020
## 15038 2018-07-21 2021-07-18 2018 2021
## 15039 2018-09-13 2021-09-13 2018 2021
## 15040 2018-01-17 2021-01-16 2018 2021
## 15041 2018-01-14 2019-01-13 2018 2019
## 15042 2018-03-31 2021-03-30 2018 2021
## 15043 2018-08-19 2021-08-18 2018 2021
## 15044 2018-09-07 2021-09-06 2018 2021
## 15045 2018-09-06 2021-09-05 2018 2021
## 15046 2018-07-24 2021-07-24 2018 2021
## 15047 2018-07-19 2021-07-09 2018 2021
## 15048 2018-08-15 2021-08-14 2018 2021
## 15049 2017-12-26 2020-12-26 2017 2020
## 15050 2018-06-14 2021-06-14 2018 2021
## 15051 2018-04-15 2021-04-15 2018 2021
## 15052 2018-08-15 2021-08-15 2018 2021
## 15053 2018-08-23 2021-08-23 2018 2021
## 15054 2018-08-31 2021-08-30 2018 2021
## 15055 2018-04-17 2021-04-16 2018 2021
## 15056 2018-08-26 2021-08-25 2018 2021
## 15057 2018-09-05 2021-09-04 2018 2021
## 15058 2018-01-18 2021-01-18 2018 2021
## 15059 2018-08-01 2021-08-01 2018 2021
## 15060 2018-04-03 2021-04-02 2018 2021
## 15061 2018-09-14 2021-09-14 2018 2021
## 15062 2018-05-31 2021-05-29 2018 2021
## 15063 2018-08-19 2020-08-03 2018 2020
## 15064 2018-02-05 2021-02-05 2018 2021
## 15065 2018-09-30 2021-09-29 2018 2021
## 15066 2018-07-31 2021-07-30 2018 2021
## 15067 2018-05-14 2021-05-13 2018 2021
## 15068 2018-08-27 2021-08-27 2018 2021
## 15069 2018-07-19 2019-04-24 2018 2019
## 15070 2019-01-10 2022-01-09 2019 2022
## 15071 2018-08-08 2021-08-08 2018 2021
## 15072 2018-07-31 2021-07-30 2018 2021
## 15073 2019-01-14 2022-01-13 2019 2022
## 15074 2018-09-13 2021-09-13 2018 2021
## 15075 2018-06-30 2021-06-29 2018 2021
## 15076 2018-08-26 2021-08-25 2018 2021
## 15077 2018-06-26 2021-06-26 2018 2021
## 15078 2018-09-11 2019-12-30 2018 2019
## 15079 2018-05-24 2021-05-21 2018 2021
## 15080 2018-08-02 2020-10-04 2018 2020
## 15081 2017-12-17 2020-12-16 2017 2020
## 15082 2018-08-31 2021-08-30 2018 2021
## 15083 2018-04-23 2021-04-22 2018 2021
## 15084 2018-09-06 2021-09-06 2018 2021
## 15085 2018-09-06 2021-09-05 2018 2021
## 15086 2018-07-31 2021-07-30 2018 2021
## 15087 2018-08-20 2021-08-19 2018 2021
## 15088 2018-08-01 2021-08-01 2018 2021
## 15089 2018-09-02 2021-09-02 2018 2021
## 15090 2018-09-16 2021-09-16 2018 2021
## 15091 2018-10-31 2021-10-30 2018 2021
## 15092 2018-07-31 2021-07-30 2018 2021
## 15093 2017-10-31 2020-10-30 2017 2020
## 15094 2018-05-20 2021-05-19 2018 2021
## 15095 2018-08-14 2021-08-13 2018 2021
## 15096 2018-02-04 2019-08-24 2018 2019
## 15097 2018-09-07 2021-09-06 2018 2021
## 15098 2018-06-14 2021-06-13 2018 2021
## 15099 2018-09-12 2021-09-11 2018 2021
## 15100 2018-09-06 2021-09-05 2018 2021
## 15101 2018-12-30 2021-12-29 2018 2021
## 15102 2018-03-22 2021-03-21 2018 2021
## 15103 2017-12-31 2018-12-30 2017 2018
## 15104 2018-08-19 2021-08-18 2018 2021
## 15105 2018-05-13 2021-05-13 2018 2021
## 15106 2018-08-09 2021-08-08 2018 2021
## 15107 2018-08-12 2021-08-11 2018 2021
## 15108 2018-09-20 2021-09-19 2018 2021
## 15109 2018-08-31 2021-08-30 2018 2021
## 15110 2018-08-02 2021-08-01 2018 2021
## 15111 2018-05-14 2021-05-13 2018 2021
## 15112 2018-06-12 2020-03-30 2018 2020
## 15113 2017-12-31 2020-12-30 2017 2020
## 15114 2018-04-15 2020-04-14 2018 2020
## 15115 2018-09-07 2021-09-07 2018 2021
## 15116 2018-04-12 2021-04-11 2018 2021
## 15117 2018-03-19 2021-03-14 2018 2021
## 15118 2018-07-29 2021-07-28 2018 2021
## 15119 2018-07-31 2021-07-30 2018 2021
## 15120 2018-07-02 2021-07-01 2018 2021
## 15121 2018-09-06 2021-09-05 2018 2021
## 15122 2018-08-23 2021-08-22 2018 2021
## 15123 2018-09-16 2021-09-15 2018 2021
## 15124 2018-09-28 2020-12-30 2018 2020
## 15125 2018-03-22 2021-03-21 2018 2021
## 15126 2018-05-16 2021-05-14 2018 2021
## 15127 2018-05-29 2021-05-28 2018 2021
## 15128 2018-01-02 2021-01-02 2018 2021
## 15129 2018-03-29 2021-03-29 2018 2021
## 15130 2018-08-01 2021-08-01 2018 2021
## 15131 2018-12-17 2021-12-17 2018 2021
## 15132 2018-08-29 2021-08-29 2018 2021
## 15133 2018-08-27 2021-08-27 2018 2021
## 15134 2018-08-26 2021-08-25 2018 2021
## 15135 2018-09-17 2021-09-16 2018 2021
## 15136 2018-06-19 2021-06-18 2018 2021
## 15137 2018-09-02 2021-09-01 2018 2021
## 15138 2018-09-08 2021-09-07 2018 2021
## 15139 2018-07-02 2020-09-05 2018 2020
## 15140 2017-12-24 2020-12-23 2017 2020
## 15141 2018-08-31 2021-08-30 2018 2021
## 15142 2018-09-11 2021-09-10 2018 2021
## 15143 2018-08-20 2021-08-20 2018 2021
## 15144 2017-11-30 2020-11-29 2017 2020
## 15145 2017-12-27 2020-12-27 2017 2020
## 15146 2018-08-01 2021-08-01 2018 2021
## 15147 2019-02-23 2022-02-23 2019 2022
## 15148 2018-08-31 2021-08-30 2018 2021
## 15149 2018-07-19 2021-07-18 2018 2021
## 15150 2018-09-30 2021-09-30 2018 2021
## 15151 2018-11-01 2021-10-31 2018 2021
## 15152 2018-05-01 2021-04-30 2018 2021
## 15153 2018-07-11 2021-07-10 2018 2021
## 15154 2018-03-10 2021-03-09 2018 2021
## 15155 2017-11-13 2020-11-13 2017 2020
## 15156 2019-01-31 2022-01-30 2019 2022
## 15157 2017-10-12 2020-10-11 2017 2020
## 15158 2018-08-19 2021-08-19 2018 2021
## 15159 2018-07-08 2021-07-07 2018 2021
## 15160 2018-08-31 2021-08-30 2018 2021
## 15161 2018-09-30 2021-09-29 2018 2021
## 15162 2018-05-10 2021-05-09 2018 2021
## 15163 2018-10-05 2021-10-04 2018 2021
## 15164 2018-07-15 2021-07-15 2018 2021
## 15165 2018-06-19 2021-06-18 2018 2021
## 15166 2018-08-31 2020-12-30 2018 2020
## 15167 2018-04-12 2019-11-14 2018 2019
## 15168 2018-09-26 2021-09-26 2018 2021
## 15169 2018-07-18 2021-07-17 2018 2021
## 15170 2018-02-19 2021-02-18 2018 2021
## 15171 2018-06-24 2021-06-23 2018 2021
## 15172 2018-09-17 2021-09-17 2018 2021
## 15173 2018-09-13 2021-09-13 2018 2021
## 15174 2018-06-22 2021-06-22 2018 2021
## 15175 2018-07-29 2021-07-29 2018 2021
## 15176 2018-08-13 2021-08-13 2018 2021
## 15177 2018-09-25 2021-09-25 2018 2021
## 15178 2017-11-26 2020-11-25 2017 2020
## 15179 2018-01-29 2020-01-28 2018 2020
## 15180 2018-02-04 2021-02-04 2018 2021
## 15181 2018-03-11 2021-03-10 2018 2021
## 15182 2018-08-31 2021-08-29 2018 2021
## 15183 2018-09-09 2021-09-08 2018 2021
## 15184 2018-08-31 2021-08-30 2018 2021
## 15185 2018-07-22 2019-11-12 2018 2019
## 15186 2018-09-05 2021-09-05 2018 2021
## 15187 2018-04-22 2021-04-22 2018 2021
## 15188 2018-07-31 2021-07-30 2018 2021
## 15189 2018-09-03 2021-09-02 2018 2021
## 15190 2018-09-18 2021-09-17 2018 2021
## 15191 2018-04-10 2021-04-09 2018 2021
## 15192 2017-10-15 2020-10-14 2017 2020
## 15193 2018-03-21 2021-03-20 2018 2021
## 15194 2018-09-22 2021-09-22 2018 2021
## 15195 2018-01-02 2021-01-01 2018 2021
## 15196 2017-11-22 2020-11-21 2017 2020
## 15197 2017-11-12 2020-11-12 2017 2020
## 15198 2018-04-08 2021-04-08 2018 2021
## 15199 2018-07-23 2021-07-22 2018 2021
## 15200 2019-01-26 2022-01-25 2019 2022
## 15201 2018-05-08 2021-05-05 2018 2021
## 15202 2018-08-01 2021-07-31 2018 2021
## 15203 2018-06-30 2021-06-30 2018 2021
## 15204 2018-08-13 2021-08-12 2018 2021
## 15205 2018-06-17 2021-06-17 2018 2021
## 15206 2018-01-07 2021-01-06 2018 2021
## 15207 2018-01-30 2021-01-29 2018 2021
## 15208 2017-12-17 2020-12-16 2017 2020
## 15209 2018-08-16 2021-08-16 2018 2021
## 15210 2018-02-11 2021-02-11 2018 2021
## 15211 2018-08-31 2021-08-31 2018 2021
## 15212 2018-04-29 2021-04-28 2018 2021
## 15213 2018-01-11 2020-01-10 2018 2020
## 15214 2018-09-04 2021-09-03 2018 2021
## 15215 2018-02-19 2021-02-18 2018 2021
## 15216 2018-06-28 2021-06-27 2018 2021
## 15217 2018-09-14 2021-09-13 2018 2021
## 15218 2018-09-03 2019-09-02 2018 2019
## 15219 2017-12-05 2020-11-30 2017 2020
## 15220 2018-09-03 2021-09-02 2018 2021
## 15221 2018-06-30 2019-06-29 2018 2019
## 15222 2018-03-31 2021-03-30 2018 2021
## 15223 2018-09-01 2021-09-01 2018 2021
## 15224 2018-04-19 2021-04-18 2018 2021
## 15225 2018-01-14 2021-01-14 2018 2021
## 15226 2018-04-19 2021-04-18 2018 2021
## 15227 2018-05-31 2021-05-30 2018 2021
## 15228 2018-09-30 2021-09-29 2018 2021
## 15229 2017-12-03 2020-12-02 2017 2020
## 15230 2018-06-10 2021-06-09 2018 2021
## 15231 2018-09-07 2021-09-06 2018 2021
## 15232 2018-02-08 2021-02-07 2018 2021
## 15233 2018-04-02 2021-04-02 2018 2021
## 15234 2018-03-31 2021-03-30 2018 2021
## 15235 2018-07-26 2021-07-25 2018 2021
## 15236 2018-07-30 2021-07-30 2018 2021
## 15237 2018-09-05 2021-09-04 2018 2021
## 15238 2018-08-30 2021-08-30 2018 2021
## 15239 2018-04-05 2021-04-04 2018 2021
## 15240 2017-12-03 2020-12-02 2017 2020
## 15241 2018-08-28 2021-08-27 2018 2021
## 15242 2018-08-12 2021-08-11 2018 2021
## 15243 2018-09-14 2021-09-13 2018 2021
## 15244 2018-05-10 2021-05-09 2018 2021
## 15245 2018-10-28 2021-10-27 2018 2021
## 15246 2018-02-11 2021-02-10 2018 2021
## 15247 2018-09-04 2021-09-03 2018 2021
## 15248 2018-09-30 2021-09-29 2018 2021
## 15249 2017-12-06 2020-12-05 2017 2020
## 15250 2018-08-23 2021-08-22 2018 2021
## 15251 2018-06-04 2021-06-04 2018 2021
## 15252 2018-09-03 2021-09-02 2018 2021
## 15253 2018-04-24 2021-04-23 2018 2021
## 15254 2018-09-04 2021-09-03 2018 2021
## 15255 2018-03-11 2021-03-10 2018 2021
## 15256 2018-03-06 2021-03-05 2018 2021
## 15257 2018-09-06 2021-09-05 2018 2021
## 15258 2018-09-12 2021-09-11 2018 2021
## 15259 2018-09-09 2019-12-19 2018 2019
## 15260 2018-01-21 2021-01-20 2018 2021
## 15261 2018-07-30 2021-07-29 2018 2021
## 15262 2018-09-10 2021-09-09 2018 2021
## 15263 2018-07-09 2021-07-08 2018 2021
## 15264 2018-08-31 2021-08-30 2018 2021
## 15265 2018-03-25 2021-03-25 2018 2021
## 15266 2018-08-21 2021-08-20 2018 2021
## 15267 2018-09-05 2021-09-04 2018 2021
## 15268 2018-06-05 2021-06-03 2018 2021
## 15269 2018-09-09 2021-09-09 2018 2021
## 15270 2017-12-24 2020-12-23 2017 2020
## 15271 2018-08-27 2021-08-26 2018 2021
## 15272 2018-08-31 2021-08-31 2018 2021
## 15273 2018-06-21 2021-06-20 2018 2021
## 15274 2018-05-24 2021-05-24 2018 2021
## 15275 2018-05-14 2020-05-13 2018 2020
## 15276 2018-08-15 2021-08-14 2018 2021
## 15277 2017-11-04 2020-11-04 2017 2020
## 15278 2018-09-05 2021-09-04 2018 2021
## 15279 2018-09-08 2021-09-07 2018 2021
## 15280 2018-09-10 2021-09-10 2018 2021
## 15281 2018-04-01 2019-12-30 2018 2019
## 15282 2018-01-14 2021-01-13 2018 2021
## 15283 2018-09-30 2021-09-29 2018 2021
## 15284 2018-03-12 2021-03-11 2018 2021
## 15285 2018-09-30 2021-09-29 2018 2021
## 15286 2017-11-21 2020-11-20 2017 2020
## 15287 2018-04-26 2021-04-25 2018 2021
## 15288 2018-05-14 2021-05-13 2018 2021
## 15289 2018-08-31 2021-08-30 2018 2021
## 15290 2018-04-19 2021-04-18 2018 2021
## 15291 2018-02-27 2021-02-26 2018 2021
## 15292 2017-11-08 2020-11-08 2017 2020
## 15293 2018-09-06 2021-09-05 2018 2021
## 15294 2017-11-14 2020-11-13 2017 2020
## 15295 2018-07-24 2021-07-23 2018 2021
## 15296 2018-03-20 2021-03-19 2018 2021
## 15297 2018-02-11 2021-02-10 2018 2021
## 15298 2018-07-31 2021-07-31 2018 2021
## 15299 2018-06-12 2021-06-12 2018 2021
## 15300 2018-07-29 2021-07-28 2018 2021
## 15301 2018-03-31 2021-03-30 2018 2021
## 15302 2018-06-15 2021-06-14 2018 2021
## 15303 2018-04-30 2021-04-29 2018 2021
## 15304 2018-08-10 2021-08-10 2018 2021
## 15305 2018-08-10 2021-08-09 2018 2021
## 15306 2018-06-17 2021-06-16 2018 2021
## 15307 2018-09-10 2021-09-09 2018 2021
## 15308 2017-11-02 2020-11-01 2017 2020
## 15309 2018-08-23 2021-08-22 2018 2021
## 15310 2017-11-06 2020-11-05 2017 2020
## 15311 2018-07-31 2021-07-30 2018 2021
## 15312 2019-03-01 2021-02-28 2019 2021
## 15313 2018-09-26 2021-09-25 2018 2021
## 15314 2018-09-15 2021-09-15 2018 2021
## 15315 2018-03-31 2021-03-30 2018 2021
## 15316 2017-10-19 2020-10-19 2017 2020
## 15317 2018-09-11 2021-09-10 2018 2021
## 15318 2018-09-10 2021-09-10 2018 2021
## 15319 2018-06-30 2021-06-29 2018 2021
## 15320 2018-01-10 2020-08-31 2018 2020
## 15321 2018-04-18 2021-04-15 2018 2021
## 15322 2018-09-02 2021-09-01 2018 2021
## 15323 2018-05-31 2021-05-28 2018 2021
## 15324 2017-11-05 2020-11-05 2017 2020
## 15325 2018-09-05 2021-09-04 2018 2021
## 15326 2018-09-08 2021-09-07 2018 2021
## 15327 2018-09-08 2021-09-07 2018 2021
## 15328 2018-08-08 2021-08-05 2018 2021
## 15329 2017-10-22 2020-10-21 2017 2020
## 15330 2018-02-28 2021-02-27 2018 2021
## 15331 2017-11-23 2020-11-22 2017 2020
## 15332 2018-08-31 2021-08-30 2018 2021
## 15333 2018-07-31 2021-07-30 2018 2021
## 15334 2018-07-31 2021-07-30 2018 2021
## 15335 2017-10-08 2020-10-07 2017 2020
## 15336 2018-05-31 2021-05-31 2018 2021
## 15337 2018-09-10 2021-09-09 2018 2021
## 15338 2018-08-17 2021-08-16 2018 2021
## 15339 2018-08-04 2021-08-01 2018 2021
## 15340 2018-06-13 2021-06-13 2018 2021
## 15341 2019-02-21 2022-02-21 2019 2022
## 15342 2018-09-25 2021-09-24 2018 2021
## 15343 2019-02-26 2022-02-25 2019 2022
## 15344 2018-08-12 2021-08-12 2018 2021
## 15345 2018-06-17 2021-06-17 2018 2021
## 15346 2018-09-03 2021-09-02 2018 2021
## 15347 2018-04-29 2021-04-28 2018 2021
## 15348 2018-02-09 2021-02-09 2018 2021
## 15349 2018-08-20 2021-08-19 2018 2021
## 15350 2018-09-10 2021-09-09 2018 2021
## 15351 2018-06-30 2021-06-30 2018 2021
## 15352 2017-11-24 2020-11-23 2017 2020
## 15353 2018-08-12 2021-08-11 2018 2021
## 15354 2018-09-03 2021-09-02 2018 2021
## 15355 2018-03-30 2021-03-29 2018 2021
## 15356 2018-04-19 2021-04-18 2018 2021
## 15357 2018-08-03 2021-07-31 2018 2021
## 15358 2018-01-22 2021-01-21 2018 2021
## 15359 2018-07-31 2021-07-29 2018 2021
## 15360 2018-09-02 2020-12-30 2018 2020
## 15361 2018-09-08 2021-09-07 2018 2021
## 15362 2018-06-30 2021-06-27 2018 2021
## 15363 2018-09-12 2021-09-11 2018 2021
## 15364 2017-10-22 2020-10-21 2017 2020
## 15365 2018-08-01 2021-07-31 2018 2021
## 15366 2018-08-30 2021-08-30 2018 2021
## 15367 2018-09-04 2021-09-03 2018 2021
## 15368 2018-03-22 2021-03-21 2018 2021
## 15369 2018-05-29 2021-05-29 2018 2021
## 15370 2018-02-11 2021-02-11 2018 2021
## 15371 2017-10-11 2019-09-14 2017 2019
## 15372 2018-06-03 2021-05-29 2018 2021
## 15373 2018-06-13 2021-06-12 2018 2021
## 15374 2018-07-15 2021-07-14 2018 2021
## 15375 2018-08-05 2021-08-04 2018 2021
## 15376 2018-09-07 2021-09-07 2018 2021
## 15377 2018-07-02 2021-07-01 2018 2021
## 15378 2018-02-12 2021-02-12 2018 2021
## 15379 2017-10-18 2018-09-29 2017 2018
## 15380 2018-09-19 2021-09-19 2018 2021
## 15381 2018-05-31 2021-05-28 2018 2021
## 15382 2018-08-03 2021-08-02 2018 2021
## 15383 2018-06-24 2021-06-24 2018 2021
## 15384 2018-02-09 2021-02-09 2018 2021
## 15385 2018-09-13 2021-09-12 2018 2021
## 15386 2018-07-04 2021-07-03 2018 2021
## 15387 2018-08-16 2021-08-13 2018 2021
## 15388 2017-11-26 2020-11-25 2017 2020
## 15389 2018-08-01 2021-07-31 2018 2021
## 15390 2018-05-13 2021-04-29 2018 2021
## 15391 2018-09-10 2021-09-09 2018 2021
## 15392 2018-02-18 2021-02-17 2018 2021
## 15393 2018-08-04 2021-08-03 2018 2021
## 15394 2018-06-14 2021-06-14 2018 2021
## 15395 2018-06-30 2021-06-29 2018 2021
## 15396 2018-09-30 2021-09-29 2018 2021
## 15397 2018-04-25 2021-04-24 2018 2021
## 15398 2018-09-14 2021-09-14 2018 2021
## 15399 2018-08-13 2021-08-12 2018 2021
## 15400 2017-12-25 2020-12-25 2017 2020
## 15401 2017-10-04 2020-10-04 2017 2020
## 15402 2018-08-31 2021-08-31 2018 2021
## 15403 2018-07-31 2021-07-30 2018 2021
## 15404 2018-08-27 2021-08-26 2018 2021
## 15405 2018-05-20 2021-05-19 2018 2021
## 15406 2018-09-27 2021-09-27 2018 2021
## 15407 2018-01-07 2021-01-07 2018 2021
## 15408 2018-05-10 2021-05-10 2018 2021
## 15409 2018-07-25 2021-07-24 2018 2021
## 15410 2018-09-09 2021-09-09 2018 2021
## 15411 2018-09-01 2021-08-31 2018 2021
## 15412 2018-03-15 2021-03-14 2018 2021
## 15413 2018-07-22 2019-09-29 2018 2019
## 15414 2018-02-01 2019-01-16 2018 2019
## 15415 2018-06-30 2021-06-29 2018 2021
## 15416 2018-08-24 2021-08-23 2018 2021
## 15417 2018-09-18 2021-09-18 2018 2021
## 15418 2018-09-11 2021-09-10 2018 2021
## 15419 2018-07-18 2021-07-18 2018 2021
## 15420 2017-11-16 2020-11-15 2017 2020
## 15421 2018-06-30 2021-06-30 2018 2021
## 15422 2018-09-03 2021-09-02 2018 2021
## 15423 2018-07-16 2021-07-15 2018 2021
## 15424 2018-06-30 2021-06-29 2018 2021
## 15425 2018-06-14 2021-06-14 2018 2021
## 15426 2018-08-31 2021-08-31 2018 2021
## 15427 2018-03-01 2021-02-28 2018 2021
## 15428 2018-09-03 2021-09-02 2018 2021
## 15429 2018-09-13 2021-09-13 2018 2021
## 15430 2018-04-09 2021-04-09 2018 2021
## 15431 2018-04-26 2021-04-26 2018 2021
## 15432 2018-07-17 2021-07-16 2018 2021
## 15433 2018-08-01 2021-08-01 2018 2021
## 15434 2017-11-14 2020-11-14 2017 2020
## 15435 2018-01-14 2021-01-13 2018 2021
## 15436 2018-10-18 2021-10-17 2018 2021
## 15437 2018-05-20 2021-05-20 2018 2021
## 15438 2018-09-20 2021-09-19 2018 2021
## 15439 2018-12-31 2021-12-30 2018 2021
## 15440 2018-06-11 2021-06-08 2018 2021
## 15441 2018-07-31 2021-07-30 2018 2021
## 15442 2018-09-15 2021-09-14 2018 2021
## 15443 2018-05-24 2021-05-23 2018 2021
## 15444 2019-01-12 2022-01-11 2019 2022
## 15445 2018-01-04 2021-01-04 2018 2021
## 15446 2018-09-12 2021-09-11 2018 2021
## 15447 2018-07-15 2021-07-15 2018 2021
## 15448 2018-04-18 2021-04-17 2018 2021
## 15449 2018-09-12 2021-09-11 2018 2021
## 15450 2017-11-20 2020-11-19 2017 2020
## 15451 2018-07-31 2021-07-31 2018 2021
## 15452 2018-09-19 2021-09-19 2018 2021
## 15453 2018-08-26 2021-08-25 2018 2021
## 15454 2018-02-28 2021-02-28 2018 2021
## 15455 2017-11-30 2020-11-29 2017 2020
## 15456 2018-09-11 2021-09-10 2018 2021
## 15457 2017-11-21 2020-11-21 2017 2020
## 15458 2018-09-09 2021-09-09 2018 2021
## 15459 2017-10-11 2020-10-10 2017 2020
## 15460 2019-01-03 2022-01-02 2019 2022
## 15461 2018-02-18 2021-02-17 2018 2021
## 15462 2018-05-23 2021-05-22 2018 2021
## 15463 2018-08-31 2021-08-30 2018 2021
## 15464 2018-09-11 2021-09-10 2018 2021
## 15465 2018-06-30 2021-06-29 2018 2021
## 15466 2017-10-14 2020-10-13 2017 2020
## 15467 2018-07-01 2021-06-30 2018 2021
## 15468 2017-10-02 2020-10-02 2017 2020
## 15469 2018-08-09 2021-08-08 2018 2021
## 15470 2018-01-30 2021-01-29 2018 2021
## 15471 2018-03-15 2021-03-14 2018 2021
## 15472 2018-08-15 2019-07-21 2018 2019
## 15473 2018-09-09 2021-09-08 2018 2021
## 15474 2018-09-02 2020-12-30 2018 2020
## 15475 2018-04-16 2021-04-15 2018 2021
## 15476 2018-06-10 2021-06-09 2018 2021
## 15477 2018-09-22 2021-09-21 2018 2021
## 15478 2018-07-31 2021-07-30 2018 2021
## 15479 2018-09-10 2021-09-10 2018 2021
## 15480 2018-09-19 2021-09-19 2018 2021
## 15481 2017-10-01 2020-10-01 2017 2020
## 15482 2018-05-03 2021-05-02 2018 2021
## 15483 2018-09-19 2021-09-19 2018 2021
## 15484 2018-03-05 2021-03-04 2018 2021
## 15485 2018-12-31 2021-12-30 2018 2021
## 15486 2018-09-11 2021-09-10 2018 2021
## 15487 2018-09-13 2021-09-12 2018 2021
## 15488 2018-08-15 2021-08-15 2018 2021
## 15489 2018-08-06 2021-08-05 2018 2021
## 15490 2018-05-28 2021-05-27 2018 2021
## 15491 2018-08-21 2021-08-20 2018 2021
## 15492 2018-07-29 2021-07-28 2018 2021
## 15493 2018-07-30 2021-07-30 2018 2021
## 15494 2017-11-14 2020-11-13 2017 2020
## 15495 2018-09-13 2021-09-12 2018 2021
## 15496 2018-02-11 2021-02-10 2018 2021
## 15497 2018-03-06 2021-03-05 2018 2021
## 15498 2018-07-31 2021-07-31 2018 2021
## 15499 2017-10-31 2020-10-30 2017 2020
## 15500 2018-08-31 2021-08-30 2018 2021
## 15501 2018-04-02 2021-04-01 2018 2021
## 15502 2017-12-11 2020-12-10 2017 2020
## 15503 2017-10-15 2020-10-14 2017 2020
## 15504 2018-09-30 2021-09-29 2018 2021
## 15505 2018-06-13 2021-06-12 2018 2021
## 15506 2018-08-30 2021-08-29 2018 2021
## 15507 2017-11-01 2020-10-31 2017 2020
## 15508 2018-09-16 2021-09-15 2018 2021
## 15509 2018-03-14 2021-03-13 2018 2021
## 15510 2018-09-03 2021-09-02 2018 2021
## 15511 2018-03-14 2021-03-13 2018 2021
## 15512 2018-06-14 2021-06-14 2018 2021
## 15513 2018-07-31 2021-07-30 2018 2021
## 15514 2018-08-12 2021-08-11 2018 2021
## 15515 2018-07-09 2021-07-08 2018 2021
## 15516 2018-08-17 2021-08-16 2018 2021
## 15517 2018-09-13 2021-09-10 2018 2021
## 15518 2018-07-22 2021-07-21 2018 2021
## 15519 2018-12-12 2021-12-11 2018 2021
## 15520 2018-08-31 2021-08-31 2018 2021
## 15521 2018-04-25 2021-04-02 2018 2021
## 15522 2018-08-24 2021-08-23 2018 2021
## 15523 2018-12-31 2021-12-28 2018 2021
## 15524 2018-09-24 2021-09-23 2018 2021
## 15525 2017-11-19 2020-11-18 2017 2020
## 15526 2018-07-03 2019-06-29 2018 2019
## 15527 2018-07-30 2021-07-29 2018 2021
## 15528 2017-11-01 2020-11-01 2017 2020
## 15529 2018-09-20 2021-09-20 2018 2021
## 15530 2018-09-03 2021-09-02 2018 2021
## 15531 2018-10-16 2021-10-16 2018 2021
## 15532 2018-08-21 2021-08-20 2018 2021
## 15533 2018-08-24 2021-08-24 2018 2021
## 15534 2018-09-06 2021-09-05 2018 2021
## 15535 2018-04-24 2021-04-24 2018 2021
## 15536 2018-03-15 2021-03-14 2018 2021
## 15537 2018-08-07 2021-08-05 2018 2021
## 15538 2018-08-29 2021-07-31 2018 2021
## 15539 2017-10-01 2020-09-30 2017 2020
## 15540 2018-07-26 2021-07-25 2018 2021
## 15541 2017-11-19 2020-11-19 2017 2020
## 15542 2018-09-01 2021-09-01 2018 2021
## 15543 2018-09-07 2021-09-06 2018 2021
## 15544 2018-04-30 2021-04-29 2018 2021
## 15545 2018-03-16 2021-03-15 2018 2021
## 15546 2018-08-06 2021-08-06 2018 2021
## 15547 2018-04-19 2021-04-19 2018 2021
## 15548 2018-09-03 2021-03-31 2018 2021
## 15549 2018-09-08 2021-09-07 2018 2021
## 15550 2018-05-07 2021-05-06 2018 2021
## 15551 2018-05-20 2021-05-19 2018 2021
## 15552 2018-09-12 2021-09-12 2018 2021
## 15553 2018-08-06 2021-08-06 2018 2021
## 15554 2018-08-23 2021-08-22 2018 2021
## 15555 2018-08-22 2021-08-22 2018 2021
## 15556 2018-09-07 2021-09-07 2018 2021
## 15557 2018-09-05 2020-08-26 2018 2020
## 15558 2018-06-21 2021-06-20 2018 2021
## 15559 2018-09-06 2021-09-05 2018 2021
## 15560 2018-11-15 2021-11-14 2018 2021
## 15561 2018-05-16 2021-05-15 2018 2021
## 15562 2018-08-31 2020-12-30 2018 2020
## 15563 2018-02-04 2021-02-03 2018 2021
## 15564 2018-06-18 2021-06-17 2018 2021
## 15565 2018-07-22 2021-07-21 2018 2021
## 15566 2017-12-26 2020-12-26 2017 2020
## 15567 2018-02-04 2021-02-03 2018 2021
## 15568 2017-12-03 2020-12-02 2017 2020
## 15569 2018-01-18 2021-01-17 2018 2021
## 15570 2018-08-05 2021-08-04 2018 2021
## 15571 2018-09-30 2021-09-29 2018 2021
## 15572 2017-12-04 2020-12-03 2017 2020
## 15573 2017-11-23 2020-11-20 2017 2020
## 15574 2018-01-03 2021-01-03 2018 2021
## 15575 2018-03-25 2021-03-24 2018 2021
## 15576 2018-05-24 2021-05-23 2018 2021
## 15577 2018-08-02 2021-08-01 2018 2021
## 15578 2018-09-01 2021-08-31 2018 2021
## 15579 2018-09-21 2021-09-20 2018 2021
## 15580 2018-09-21 2021-09-20 2018 2021
## 15581 2019-02-06 2022-02-06 2019 2022
## 15582 2018-07-31 2021-07-30 2018 2021
## 15583 2018-09-22 2021-09-21 2018 2021
## 15584 2018-05-07 2021-05-06 2018 2021
## 15585 2018-09-24 2021-09-24 2018 2021
## 15586 2018-06-30 2021-06-29 2018 2021
## 15587 2017-12-12 2020-12-11 2017 2020
## 15588 2018-06-24 2021-06-23 2018 2021
## 15589 2018-09-09 2021-09-08 2018 2021
## 15590 2018-11-09 2021-11-08 2018 2021
## 15591 2018-04-19 2021-04-18 2018 2021
## 15592 2018-09-28 2021-09-28 2018 2021
## 15593 2018-09-09 2021-09-08 2018 2021
## 15594 2017-12-31 2020-12-28 2017 2020
## 15595 2017-10-02 2020-10-01 2017 2020
## 15596 2018-08-31 2021-08-30 2018 2021
## 15597 2018-09-01 2021-08-31 2018 2021
## 15598 2018-09-13 2021-09-13 2018 2021
## 15599 2018-12-31 2021-12-30 2018 2021
## 15600 2018-07-17 2021-07-15 2018 2021
## 15601 2018-08-21 2021-08-21 2018 2021
## 15602 2018-07-31 2021-07-31 2018 2021
## 15603 2018-07-31 2021-07-30 2018 2021
## 15604 2018-07-31 2021-07-30 2018 2021
## 15605 2018-05-03 2021-05-02 2018 2021
## 15606 2017-12-25 2020-12-24 2017 2020
## 15607 2018-07-28 2021-07-27 2018 2021
## 15608 2018-09-29 2021-09-29 2018 2021
## 15609 2018-09-10 2021-09-10 2018 2021
## 15610 2018-09-03 2021-09-02 2018 2021
## 15611 2018-09-13 2021-09-12 2018 2021
## 15612 2018-08-26 2021-08-25 2018 2021
## 15613 2018-08-05 2021-08-04 2018 2021
## 15614 2018-08-12 2021-08-12 2018 2021
## 15615 2018-08-17 2021-08-17 2018 2021
## 15616 2018-09-19 2021-09-18 2018 2021
## 15617 2018-04-14 2021-04-13 2018 2021
## 15618 2018-01-02 2020-12-14 2018 2020
## 15619 2018-08-23 2021-08-22 2018 2021
## 15620 2018-09-05 2021-08-29 2018 2021
## 15621 2018-03-31 2021-03-31 2018 2021
## 15622 2018-02-28 2021-02-28 2018 2021
## 15623 2018-08-21 2021-08-20 2018 2021
## 15624 2018-06-24 2021-06-23 2018 2021
## 15625 2018-09-12 2021-09-11 2018 2021
## 15626 2017-11-08 2020-11-07 2017 2020
## 15627 2018-02-23 2021-02-22 2018 2021
## 15628 2018-10-07 2021-10-06 2018 2021
## 15629 2018-09-30 2019-10-01 2018 2019
## 15630 2018-09-20 2021-09-12 2018 2021
## 15631 2018-07-05 2019-04-24 2018 2019
## 15632 2017-09-27 2020-09-26 2017 2020
## 15633 2018-04-24 2021-04-23 2018 2021
## 15634 2017-10-22 2020-10-21 2017 2020
## 15635 2018-08-31 2021-08-30 2018 2021
## 15636 2018-09-30 2021-09-23 2018 2021
## 15637 2018-09-01 2021-08-31 2018 2021
## 15638 2018-08-12 2021-08-11 2018 2021
## 15639 2018-08-30 2021-08-29 2018 2021
## 15640 2018-09-03 2021-09-02 2018 2021
## 15641 2018-09-18 2021-09-18 2018 2021
## 15642 2018-09-19 2021-09-19 2018 2021
## 15643 2018-07-09 2021-07-08 2018 2021
## 15644 2018-02-27 2021-02-26 2018 2021
## 15645 2018-07-31 2021-07-30 2018 2021
## 15646 2017-12-01 2020-11-30 2017 2020
## 15647 2018-05-06 2021-05-05 2018 2021
## 15648 2018-09-04 2021-09-03 2018 2021
## 15649 2018-06-30 2021-06-29 2018 2021
## 15650 2017-12-05 2020-12-02 2017 2020
## 15651 2018-07-23 2021-07-22 2018 2021
## 15652 2018-07-30 2021-07-29 2018 2021
## 15653 2018-08-10 2021-08-09 2018 2021
## 15654 2018-01-01 2021-01-01 2018 2021
## 15655 2018-09-15 2021-09-14 2018 2021
## 15656 2018-08-12 2021-08-11 2018 2021
## 15657 2018-09-02 2021-09-02 2018 2021
## 15658 2018-06-05 2021-06-04 2018 2021
## 15659 2018-04-30 2021-04-30 2018 2021
## 15660 2018-09-18 2021-09-17 2018 2021
## 15661 2018-09-06 2021-09-05 2018 2021
## 15662 2017-10-01 2020-08-30 2017 2020
## 15663 2018-09-07 2021-09-07 2018 2021
## 15664 2018-04-08 2021-04-08 2018 2021
## 15665 2018-08-06 2021-08-06 2018 2021
## 15666 2018-02-04 2021-02-04 2018 2021
## 15667 2017-10-03 2020-10-02 2017 2020
## 15668 2018-09-01 2021-09-01 2018 2021
## 15669 2018-09-06 2021-09-05 2018 2021
## 15670 2018-06-24 2021-06-23 2018 2021
## 15671 2017-11-16 2018-06-29 2017 2018
## 15672 2018-09-04 2021-09-03 2018 2021
## 15673 2018-06-14 2019-06-13 2018 2019
## 15674 2018-08-22 2021-08-21 2018 2021
## 15675 2018-05-31 2021-05-30 2018 2021
## 15676 2018-08-31 2021-08-30 2018 2021
## 15677 2018-08-12 2021-08-11 2018 2021
## 15678 2018-08-30 2021-08-29 2018 2021
## 15679 2018-09-09 2021-09-08 2018 2021
## 15680 2018-08-28 2021-08-27 2018 2021
## 15681 2018-09-09 2020-11-13 2018 2020
## 15682 2018-07-30 2021-07-29 2018 2021
## 15683 2018-09-09 2021-09-08 2018 2021
## 15684 2018-08-02 2021-08-01 2018 2021
## 15685 2017-12-25 2020-12-24 2017 2020
## 15686 2018-04-02 2021-04-02 2018 2021
## 15687 2018-01-21 2021-01-20 2018 2021
## 15688 2018-09-14 2021-09-13 2018 2021
## 15689 2018-09-02 2021-09-01 2018 2021
## 15690 2018-08-23 2021-08-23 2018 2021
## 15691 2018-08-07 2021-08-06 2018 2021
## 15692 2018-08-22 2021-08-21 2018 2021
## 15693 2018-01-31 2021-01-30 2018 2021
## 15694 2018-09-11 2021-09-10 2018 2021
## 15695 2018-09-25 2021-09-24 2018 2021
## 15696 2018-08-15 2019-08-14 2018 2019
## 15697 2018-05-10 2021-05-10 2018 2021
## 15698 2018-02-19 2021-02-18 2018 2021
## 15699 2018-09-15 2021-09-14 2018 2021
## 15700 2018-09-07 2021-09-06 2018 2021
## 15701 2018-08-22 2021-08-21 2018 2021
## 15702 2018-01-07 2019-12-30 2018 2019
## 15703 2018-07-16 2021-07-16 2018 2021
## 15704 2018-09-04 2021-09-03 2018 2021
## 15705 2018-09-10 2021-09-09 2018 2021
## 15706 2018-08-03 2019-09-29 2018 2019
## 15707 2018-04-04 2021-04-03 2018 2021
## 15708 2018-09-30 2020-09-20 2018 2020
## 15709 2018-09-29 2021-09-28 2018 2021
## 15710 2018-09-13 2021-09-13 2018 2021
## 15711 2018-09-09 2021-09-08 2018 2021
## 15712 2018-08-14 2019-08-10 2018 2019
## 15713 2018-09-17 2021-09-17 2018 2021
## 15714 2018-08-20 2021-08-19 2018 2021
## 15715 2018-09-24 2021-09-24 2018 2021
## 15716 2018-05-15 2021-05-13 2018 2021
## 15717 2018-08-31 2021-08-30 2018 2021
## 15718 2017-11-05 2020-11-04 2017 2020
## 15719 2017-12-10 2020-12-09 2017 2020
## 15720 2018-09-23 2021-09-22 2018 2021
## 15721 2018-04-15 2021-04-14 2018 2021
## 15722 2018-09-11 2021-09-10 2018 2021
## 15723 2018-08-22 2021-08-21 2018 2021
## 15724 2017-12-19 2020-12-19 2017 2020
## 15725 2018-03-04 2021-03-03 2018 2021
## 15726 2018-03-18 2021-03-17 2018 2021
## 15727 2018-03-11 2021-03-10 2018 2021
## 15728 2018-08-23 2021-08-23 2018 2021
## 15729 2018-05-31 2021-05-30 2018 2021
## 15730 2018-07-15 2021-07-14 2018 2021
## 15731 2018-09-12 2021-09-11 2018 2021
## 15732 2018-02-28 2021-02-28 2018 2021
## 15733 2018-07-31 2020-07-30 2018 2020
## 15734 2018-08-30 2021-08-29 2018 2021
## 15735 2017-10-19 2020-10-18 2017 2020
## 15736 2019-01-21 2022-01-20 2019 2022
## 15737 2018-08-31 2021-07-31 2018 2021
## 15738 2017-10-01 2018-12-30 2017 2018
## 15739 2018-08-22 2021-08-21 2018 2021
## 15740 2018-09-26 2021-09-25 2018 2021
## 15741 2018-09-13 2021-09-12 2018 2021
## 15742 2018-04-07 2021-04-02 2018 2021
## 15743 2017-11-10 2020-11-09 2017 2020
## 15744 2018-07-01 2019-08-12 2018 2019
## 15745 2018-07-17 2021-07-17 2018 2021
## 15746 2018-08-21 2021-08-21 2018 2021
## 15747 2017-12-10 2020-12-09 2017 2020
## 15748 2017-11-30 2020-11-29 2017 2020
## 15749 2018-09-07 2021-09-06 2018 2021
## 15750 2017-10-31 2020-10-30 2017 2020
## 15751 2018-08-31 2021-08-31 2018 2021
## 15752 2018-10-29 2021-10-29 2018 2021
## 15753 2018-03-31 2021-03-30 2018 2021
## 15754 2017-12-18 2020-12-17 2017 2020
## 15755 2018-09-02 2021-09-01 2018 2021
## 15756 2018-08-31 2021-08-31 2018 2021
## 15757 2018-08-14 2021-08-14 2018 2021
## 15758 2018-08-04 2021-08-03 2018 2021
## 15759 2018-06-30 2021-06-29 2018 2021
## 15760 2018-05-02 2021-05-01 2018 2021
## 15761 2018-08-01 2021-07-31 2018 2021
## 15762 2018-09-09 2021-09-08 2018 2021
## 15763 2018-01-07 2021-01-06 2018 2021
## 15764 2018-09-09 2021-09-08 2018 2021
## 15765 2017-11-05 2019-11-04 2017 2019
## 15766 2018-09-17 2021-09-17 2018 2021
## 15767 2018-09-02 2021-08-31 2018 2021
## 15768 2018-08-16 2021-08-16 2018 2021
## 15769 2018-04-09 2021-04-08 2018 2021
## 15770 2018-08-31 2021-08-30 2018 2021
## 15771 2018-02-11 2021-02-10 2018 2021
## 15772 2018-09-14 2021-09-14 2018 2021
## 15773 2018-08-06 2021-08-05 2018 2021
## 15774 2019-01-15 2022-01-15 2019 2022
## 15775 2018-09-30 2021-09-29 2018 2021
## 15776 2018-07-24 2021-07-23 2018 2021
## 15777 2018-09-20 2021-09-19 2018 2021
## 15778 2018-08-24 2021-08-23 2018 2021
## 15779 2018-04-12 2021-04-11 2018 2021
## 15780 2018-04-01 2021-03-31 2018 2021
## 15781 2018-08-09 2021-08-08 2018 2021
## 15782 2018-07-31 2021-07-30 2018 2021
## 15783 2018-06-21 2021-06-20 2018 2021
## 15784 2018-09-16 2021-09-15 2018 2021
## 15785 2018-04-08 2019-12-30 2018 2019
## 15786 2018-04-16 2021-04-15 2018 2021
## 15787 2018-04-10 2021-04-09 2018 2021
## 15788 2019-02-19 2022-02-18 2019 2022
## 15789 2018-04-30 2021-04-29 2018 2021
## 15790 2018-06-30 2021-06-27 2018 2021
## 15791 2018-09-17 2021-09-16 2018 2021
## 15792 2018-09-09 2021-09-08 2018 2021
## 15793 2017-09-25 2020-09-24 2017 2020
## 15794 2018-08-13 2021-08-13 2018 2021
## 15795 2018-06-03 2021-06-02 2018 2021
## 15796 2018-05-14 2021-05-14 2018 2021
## 15797 2018-10-14 2021-10-14 2018 2021
## 15798 2018-09-03 2021-09-03 2018 2021
## 15799 2018-09-24 2021-09-24 2018 2021
## 15800 2018-09-14 2021-09-14 2018 2021
## 15801 2018-07-12 2021-07-11 2018 2021
## 15802 2018-02-11 2021-02-10 2018 2021
## 15803 2017-11-23 2020-11-20 2017 2020
## 15804 2018-09-20 2021-09-19 2018 2021
## 15805 2017-09-26 2020-09-25 2017 2020
## 15806 2018-01-09 2021-01-09 2018 2021
## 15807 2018-09-30 2021-09-29 2018 2021
## 15808 2018-09-02 2021-09-01 2018 2021
## 15809 2018-06-17 2021-06-16 2018 2021
## 15810 2018-01-19 2021-01-19 2018 2021
## 15811 2018-09-19 2021-09-19 2018 2021
## 15812 2018-05-06 2021-05-05 2018 2021
## 15813 2018-09-15 2021-09-14 2018 2021
## 15814 2018-04-27 2021-04-26 2018 2021
## 15815 2019-01-04 2022-01-03 2019 2022
## 15816 2017-10-10 2020-10-10 2017 2020
## 15817 2018-05-31 2021-05-31 2018 2021
## 15818 2018-09-11 2021-09-10 2018 2021
## 15819 2019-01-03 2022-01-02 2019 2022
## 15820 2017-11-23 2020-11-22 2017 2020
## 15821 2018-08-26 2021-08-25 2018 2021
## 15822 2018-06-04 2021-06-04 2018 2021
## 15823 2018-09-09 2021-09-08 2018 2021
## 15824 2018-09-27 2021-09-24 2018 2021
## 15825 2018-01-01 2019-08-24 2018 2019
## 15826 2018-01-01 2020-12-31 2018 2020
## 15827 2018-10-25 2021-10-24 2018 2021
## 15828 2018-08-08 2021-08-07 2018 2021
## 15829 2018-05-31 2021-05-30 2018 2021
## 15830 2018-08-22 2021-08-21 2018 2021
## 15831 2018-08-31 2021-08-30 2018 2021
## 15832 2018-09-19 2021-09-18 2018 2021
## 15833 2018-08-04 2021-08-03 2018 2021
## 15834 2018-02-12 2021-02-11 2018 2021
## 15835 2018-08-19 2021-08-18 2018 2021
## 15836 2017-12-28 2020-12-28 2017 2020
## 15837 2018-03-07 2021-03-06 2018 2021
## 15838 2018-09-08 2021-09-07 2018 2021
## 15839 2017-10-05 2020-10-04 2017 2020
## 15840 2018-09-26 2021-09-26 2018 2021
## 15841 2018-08-05 2021-08-05 2018 2021
## 15842 2018-07-22 2021-07-21 2018 2021
## 15843 2018-08-23 2021-08-22 2018 2021
## 15844 2018-08-21 2021-08-21 2018 2021
## 15845 2018-05-16 2021-05-16 2018 2021
## 15846 2018-12-27 2021-12-26 2018 2021
## 15847 2018-09-22 2021-09-22 2018 2021
## 15848 2018-07-12 2021-07-11 2018 2021
## 15849 2018-06-13 2021-06-12 2018 2021
## 15850 2018-07-01 2021-07-01 2018 2021
## 15851 2017-11-02 2020-11-01 2017 2020
## 15852 2017-10-20 2020-10-20 2017 2020
## 15853 2018-10-06 2021-09-29 2018 2021
## 15854 2018-06-24 2021-06-24 2018 2021
## 15855 2018-08-13 2021-08-12 2018 2021
## 15856 2018-02-15 2021-02-15 2018 2021
## 15857 2018-03-18 2021-03-15 2018 2021
## 15858 2018-08-31 2021-08-29 2018 2021
## 15859 2018-06-25 2021-06-24 2018 2021
## 15860 2018-09-13 2021-09-12 2018 2021
## 15861 2018-01-21 2021-01-21 2018 2021
## 15862 2017-10-22 2020-10-21 2017 2020
## 15863 2017-11-07 2020-11-06 2017 2020
## 15864 2018-07-31 2021-07-31 2018 2021
## 15865 2018-06-30 2021-06-29 2018 2021
## 15866 2018-06-14 2021-06-14 2018 2021
## 15867 2018-05-14 2021-05-13 2018 2021
## 15868 2018-09-20 2021-09-19 2018 2021
## 15869 2018-03-01 2021-02-28 2018 2021
## 15870 2018-08-07 2021-08-06 2018 2021
## 15871 2019-01-13 2022-01-13 2019 2022
## 15872 2018-07-31 2021-07-29 2018 2021
## 15873 2018-03-04 2021-03-03 2018 2021
## 15874 2018-07-08 2021-07-08 2018 2021
## 15875 2017-10-02 2020-10-02 2017 2020
## 15876 2018-09-30 2021-09-29 2018 2021
## 15877 2018-08-22 2021-08-21 2018 2021
## 15878 2018-08-31 2021-08-31 2018 2021
## 15879 2018-01-30 2021-01-29 2018 2021
## 15880 2018-08-15 2021-08-15 2018 2021
## 15881 2018-06-03 2021-06-02 2018 2021
## 15882 2018-03-01 2021-02-28 2018 2021
## 15883 2018-08-31 2021-08-30 2018 2021
## 15884 2017-10-29 2020-10-29 2017 2020
## 15885 2018-07-29 2021-07-28 2018 2021
## 15886 2018-08-19 2021-08-18 2018 2021
## 15887 2018-09-11 2021-09-11 2018 2021
## 15888 2018-09-05 2021-09-04 2018 2021
## 15889 2018-06-08 2021-06-07 2018 2021
## 15890 2018-08-31 2021-08-30 2018 2021
## 15891 2018-04-01 2021-04-01 2018 2021
## 15892 2018-09-13 2021-09-13 2018 2021
## 15893 2018-07-24 2020-05-29 2018 2020
## 15894 2018-07-31 2021-07-30 2018 2021
## 15895 2018-09-03 2021-09-02 2018 2021
## 15896 2018-05-01 2021-05-01 2018 2021
## 15897 2018-08-14 2021-08-14 2018 2021
## 15898 2018-09-27 2021-09-26 2018 2021
## 15899 2018-08-27 2021-08-27 2018 2021
## 15900 2018-09-17 2021-09-16 2018 2021
## 15901 2018-02-05 2021-02-04 2018 2021
## 15902 2018-09-02 2021-08-31 2018 2021
## 15903 2017-10-29 2019-10-28 2017 2019
## 15904 2018-08-04 2021-08-03 2018 2021
## 15905 2018-09-06 2021-09-05 2018 2021
## 15906 2018-10-15 2020-06-21 2018 2020
## 15907 2018-09-06 2021-09-06 2018 2021
## 15908 2018-06-11 2021-06-10 2018 2021
## 15909 2018-09-17 2021-09-16 2018 2021
## 15910 2018-08-31 2021-08-31 2018 2021
## 15911 2018-08-23 2021-08-22 2018 2021
## 15912 2018-05-21 2021-05-20 2018 2021
## 15913 2018-08-19 2021-08-18 2018 2021
## 15914 2018-06-05 2021-06-04 2018 2021
## 15915 2018-09-01 2021-08-31 2018 2021
## 15916 2018-02-06 2021-02-05 2018 2021
## 15917 2018-09-23 2021-09-22 2018 2021
## 15918 2018-07-01 2021-06-30 2018 2021
## 15919 2018-03-14 2021-03-13 2018 2021
## 15920 2018-06-30 2021-06-30 2018 2021
## 15921 2018-09-17 2021-09-16 2018 2021
## 15922 2018-09-03 2021-09-03 2018 2021
## 15923 2018-08-19 2021-08-18 2018 2021
## 15924 2018-10-08 2021-10-07 2018 2021
## 15925 2018-11-10 2021-11-09 2018 2021
## 15926 2018-08-21 2021-08-21 2018 2021
## 15927 2017-10-31 2020-10-30 2017 2020
## 15928 2018-03-04 2021-03-04 2018 2021
## 15929 2018-02-06 2021-02-05 2018 2021
## 15930 2018-09-30 2021-09-29 2018 2021
## 15931 2018-09-11 2021-09-10 2018 2021
## 15932 2018-08-30 2021-08-30 2018 2021
## 15933 2017-11-26 2020-11-25 2017 2020
## 15934 2018-08-31 2021-08-30 2018 2021
## 15935 2018-02-04 2021-02-03 2018 2021
## 15936 2018-07-25 2021-07-24 2018 2021
## 15937 2018-03-28 2021-03-27 2018 2021
## 15938 2017-11-19 2020-11-18 2017 2020
## 15939 2018-04-06 2021-04-06 2018 2021
## 15940 2018-09-14 2021-09-14 2018 2021
## 15941 2018-06-30 2021-06-30 2018 2021
## 15942 2018-07-10 2021-07-09 2018 2021
## 15943 2018-08-12 2020-08-11 2018 2020
## 15944 2017-10-30 2020-10-29 2017 2020
## 15945 2018-11-29 2021-11-28 2018 2021
## 15946 2018-08-26 2021-08-25 2018 2021
## 15947 2018-08-31 2021-08-31 2018 2021
## 15948 2018-09-11 2021-09-11 2018 2021
## 15949 2018-04-15 2021-04-14 2018 2021
## 15950 2018-04-24 2021-04-23 2018 2021
## 15951 2018-09-03 2021-08-30 2018 2021
## 15952 2018-09-02 2021-09-01 2018 2021
## 15953 2018-02-18 2021-02-17 2018 2021
## 15954 2018-11-11 2021-11-10 2018 2021
## 15955 2017-12-14 2020-12-14 2017 2020
## 15956 2018-09-09 2021-09-08 2018 2021
## 15957 2018-09-11 2021-09-10 2018 2021
## 15958 2018-09-04 2021-09-03 2018 2021
## 15959 2018-09-05 2021-09-04 2018 2021
## 15960 2018-08-07 2021-08-06 2018 2021
## 15961 2017-12-18 2020-12-17 2017 2020
## 15962 2017-10-22 2020-10-21 2017 2020
## 15963 2018-09-04 2021-09-04 2018 2021
## 15964 2018-02-09 2021-02-04 2018 2021
## 15965 2018-09-14 2021-09-13 2018 2021
## 15966 2018-03-19 2021-03-19 2018 2021
## 15967 2018-04-26 2021-04-25 2018 2021
## 15968 2018-05-20 2021-05-20 2018 2021
## 15969 2018-06-30 2021-06-29 2018 2021
## 15970 2017-11-28 2020-11-28 2017 2020
## 15971 2018-05-06 2021-05-05 2018 2021
## 15972 2018-06-27 2021-06-26 2018 2021
## 15973 2018-03-14 2021-03-13 2018 2021
## 15974 2018-05-27 2021-05-26 2018 2021
## 15975 2018-09-13 2021-09-13 2018 2021
## 15976 2018-09-19 2021-09-19 2018 2021
## 15977 2018-11-18 2021-11-18 2018 2021
## 15978 2017-10-31 2020-10-30 2017 2020
## 15979 2018-05-27 2021-05-27 2018 2021
## 15980 2018-08-29 2021-08-28 2018 2021
## 15981 2018-02-28 2018-03-30 2018 2018
## 15982 2018-06-20 2021-06-19 2018 2021
## 15983 2018-09-30 2021-09-29 2018 2021
## 15984 2018-07-15 2021-07-14 2018 2021
## 15985 2018-09-11 2021-09-10 2018 2021
## 15986 2018-09-18 2021-09-17 2018 2021
## 15987 2018-08-28 2021-08-27 2018 2021
## 15988 2018-04-01 2021-03-31 2018 2021
## 15989 2018-01-23 2021-01-22 2018 2021
## 15990 2018-09-05 2021-09-04 2018 2021
## 15991 2018-06-30 2021-06-29 2018 2021
## 15992 2018-07-28 2021-07-27 2018 2021
## 15993 2018-04-19 2021-04-18 2018 2021
## 15994 2018-11-04 2021-11-03 2018 2021
## 15995 2018-09-23 2021-09-22 2018 2021
## 15996 2018-01-28 2021-01-27 2018 2021
## 15997 2018-01-01 2020-12-31 2018 2020
## 15998 2018-09-01 2021-08-31 2018 2021
## 15999 2018-08-30 2021-08-29 2018 2021
## 16000 2018-09-12 2021-09-11 2018 2021
## 16001 2018-09-07 2021-09-06 2018 2021
## 16002 2018-07-17 2021-07-16 2018 2021
## 16003 2018-08-27 2021-08-26 2018 2021
## 16004 2017-10-24 2020-09-29 2017 2020
## 16005 2018-09-09 2021-09-08 2018 2021
## 16006 2018-07-30 2021-07-29 2018 2021
## 16007 2018-08-30 2021-08-29 2018 2021
## 16008 2018-08-27 2021-08-26 2018 2021
## 16009 2018-08-29 2021-08-28 2018 2021
## 16010 2017-10-12 2020-10-11 2017 2020
## 16011 2018-03-11 2021-03-11 2018 2021
## 16012 2018-07-05 2021-07-04 2018 2021
## 16013 2018-09-13 2021-09-12 2018 2021
## 16014 2018-09-30 2021-09-29 2018 2021
## 16015 2017-11-07 2020-11-06 2017 2020
## 16016 2018-01-07 2021-01-07 2018 2021
## 16017 2018-06-11 2021-06-10 2018 2021
## 16018 2018-07-17 2021-07-16 2018 2021
## 16019 2018-01-09 2021-01-08 2018 2021
## 16020 2018-02-06 2021-02-05 2018 2021
## 16021 2018-08-13 2021-08-13 2018 2021
## 16022 2018-03-13 2021-03-12 2018 2021
## 16023 2018-08-05 2021-08-04 2018 2021
## 16024 2018-08-23 2021-08-23 2018 2021
## 16025 2018-06-30 2021-06-29 2018 2021
## 16026 2018-08-25 2021-08-24 2018 2021
## 16027 2018-08-31 2021-08-30 2018 2021
## 16028 2018-09-13 2021-09-13 2018 2021
## 16029 2019-02-21 2022-02-20 2019 2022
## 16030 2018-09-05 2021-09-04 2018 2021
## 16031 2018-07-15 2021-07-14 2018 2021
## 16032 2018-05-20 2021-05-19 2018 2021
## 16033 2018-05-13 2021-05-12 2018 2021
## 16034 2018-02-26 2021-02-26 2018 2021
## 16035 2018-09-03 2021-09-03 2018 2021
## 16036 2018-07-02 2021-06-30 2018 2021
## 16037 2018-08-01 2021-07-31 2018 2021
## 16038 2018-08-02 2021-08-01 2018 2021
## 16039 2017-12-05 2020-12-04 2017 2020
## 16040 2018-09-18 2021-09-18 2018 2021
## 16041 2018-09-12 2021-09-11 2018 2021
## 16042 2018-09-06 2021-09-05 2018 2021
## 16043 2018-08-26 2021-08-25 2018 2021
## 16044 2018-07-31 2021-07-31 2018 2021
## 16045 2018-03-18 2021-03-17 2018 2021
## 16046 2018-04-27 2021-04-26 2018 2021
## 16047 2018-03-04 2020-08-10 2018 2020
## 16048 2019-02-13 2022-02-12 2019 2022
## 16049 2018-09-10 2021-09-09 2018 2021
## 16050 2018-02-15 2021-02-14 2018 2021
## 16051 2018-05-13 2021-05-12 2018 2021
## 16052 2018-01-11 2021-01-10 2018 2021
## 16053 2017-12-03 2020-12-02 2017 2020
## 16054 2018-06-10 2021-06-09 2018 2021
## 16055 2018-07-01 2021-06-30 2018 2021
## 16056 2018-09-20 2021-09-19 2018 2021
## 16057 2018-07-11 2021-07-10 2018 2021
## 16058 2018-09-13 2021-09-12 2018 2021
## 16059 2018-07-19 2021-07-18 2018 2021
## 16060 2018-05-31 2021-05-30 2018 2021
## 16061 2017-11-09 2020-11-09 2017 2020
## 16062 2018-07-31 2021-07-30 2018 2021
## 16063 2018-02-08 2019-08-30 2018 2019
## 16064 2018-08-27 2021-08-26 2018 2021
## 16065 2018-08-31 2021-08-30 2018 2021
## 16066 2018-05-20 2021-05-19 2018 2021
## 16067 2018-07-18 2021-07-17 2018 2021
## 16068 2018-09-01 2021-08-31 2018 2021
## 16069 2018-08-06 2021-08-06 2018 2021
## 16070 2018-05-13 2021-05-13 2018 2021
## 16071 2018-09-14 2021-09-14 2018 2021
## 16072 2018-08-28 2021-08-27 2018 2021
## 16073 2018-09-24 2021-09-23 2018 2021
## 16074 2018-08-02 2021-08-02 2018 2021
## 16075 2018-07-25 2021-07-24 2018 2021
## 16076 2018-10-09 2021-10-08 2018 2021
## 16077 2018-09-10 2021-09-09 2018 2021
## 16078 2018-09-09 2021-09-08 2018 2021
## 16079 2018-09-05 2021-09-05 2018 2021
## 16080 2018-02-28 2021-02-07 2018 2021
## 16081 2018-09-20 2021-09-19 2018 2021
## 16082 2018-07-23 2021-07-15 2018 2021
## 16083 2018-06-03 2021-06-03 2018 2021
## 16084 2018-08-06 2021-08-06 2018 2021
## 16085 2018-08-31 2019-08-30 2018 2019
## 16086 2018-01-31 2021-01-31 2018 2021
## 16087 2018-04-10 2021-04-09 2018 2021
## 16088 2018-03-07 2021-03-06 2018 2021
## 16089 2018-09-30 2020-09-29 2018 2020
## 16090 2018-09-29 2021-09-29 2018 2021
## 16091 2018-08-30 2021-08-30 2018 2021
## 16092 2018-02-06 2021-02-05 2018 2021
## 16093 2017-12-21 2020-12-21 2017 2020
## 16094 2017-12-24 2020-12-23 2017 2020
## 16095 2018-07-31 2021-07-31 2018 2021
## 16096 2017-12-06 2019-08-17 2017 2019
## 16097 2017-12-03 2020-11-30 2017 2020
## 16098 2018-08-27 2021-08-26 2018 2021
## 16099 2018-08-01 2021-08-01 2018 2021
## 16100 2018-07-18 2021-07-17 2018 2021
## 16101 2018-09-16 2021-09-16 2018 2021
## 16102 2018-09-10 2021-09-09 2018 2021
## 16103 2018-05-29 2021-05-29 2018 2021
## 16104 2018-09-30 2021-09-29 2018 2021
## 16105 2018-08-31 2021-08-30 2018 2021
## 16106 2018-09-15 2021-09-15 2018 2021
## 16107 2018-08-20 2021-08-19 2018 2021
## 16108 2018-08-31 2021-08-30 2018 2021
## 16109 2018-03-17 2021-03-16 2018 2021
## 16110 2018-09-11 2021-09-10 2018 2021
## 16111 2018-03-06 2021-03-06 2018 2021
## 16112 2018-08-31 2021-08-30 2018 2021
## 16113 2018-09-09 2021-09-08 2018 2021
## 16114 2018-09-11 2021-09-10 2018 2021
## 16115 2018-09-14 2021-09-13 2018 2021
## 16116 2018-09-26 2021-09-25 2018 2021
## 16117 2018-01-03 2021-01-02 2018 2021
## 16118 2018-05-20 2021-05-20 2018 2021
## 16119 2018-06-06 2021-06-06 2018 2021
## 16120 2017-12-17 2020-12-16 2017 2020
## 16121 2018-01-22 2021-01-21 2018 2021
## 16122 2017-11-01 2020-11-01 2017 2020
## 16123 2018-08-15 2019-05-14 2018 2019
## 16124 2017-11-16 2020-11-15 2017 2020
## 16125 2018-08-15 2021-08-14 2018 2021
## 16126 2018-09-04 2021-09-03 2018 2021
## 16127 2018-08-20 2021-08-19 2018 2021
## 16128 2018-07-27 2021-07-27 2018 2021
## 16129 2018-05-31 2021-05-30 2018 2021
## 16130 2018-08-31 2021-08-30 2018 2021
## 16131 2018-09-02 2021-09-02 2018 2021
## 16132 2018-08-19 2021-08-18 2018 2021
## 16133 2018-10-31 2019-10-30 2018 2019
## 16134 2018-05-02 2021-05-01 2018 2021
## 16135 2018-08-23 2021-08-22 2018 2021
## 16136 2018-04-16 2021-04-15 2018 2021
## 16137 2018-09-16 2021-09-16 2018 2021
## 16138 2018-08-16 2021-08-15 2018 2021
## 16139 2018-03-14 2018-09-08 2018 2018
## 16140 2018-07-31 2021-07-30 2018 2021
## 16141 2018-08-27 2021-08-26 2018 2021
## 16142 2018-08-18 2021-08-17 2018 2021
## 16143 2018-02-03 2021-02-03 2018 2021
## 16144 2018-07-28 2021-07-27 2018 2021
## 16145 2018-12-21 2021-12-18 2018 2021
## 16146 2018-08-14 2021-08-13 2018 2021
## 16147 2018-05-27 2021-05-26 2018 2021
## 16148 2018-03-29 2021-03-26 2018 2021
## 16149 2018-09-02 2021-08-30 2018 2021
## 16150 2018-06-04 2021-06-03 2018 2021
## 16151 2018-08-31 2021-08-31 2018 2021
## 16152 2018-06-26 2021-06-25 2018 2021
## 16153 2018-09-02 2020-12-30 2018 2020
## 16154 2018-09-07 2021-09-06 2018 2021
## 16155 2018-01-29 2020-01-28 2018 2020
## 16156 2018-02-04 2019-11-01 2018 2019
## 16157 2018-09-04 2021-09-03 2018 2021
## 16158 2018-05-20 2021-05-19 2018 2021
## 16159 2018-05-06 2021-05-05 2018 2021
## 16160 2018-08-15 2021-08-14 2018 2021
## 16161 2018-09-21 2021-09-20 2018 2021
## 16162 2018-07-06 2021-07-05 2018 2021
## 16163 2018-08-31 2021-08-31 2018 2021
## 16164 2018-08-31 2021-08-30 2018 2021
## 16165 2018-09-25 2021-09-24 2018 2021
## 16166 2018-09-13 2021-09-13 2018 2021
## 16167 2018-09-29 2021-09-29 2018 2021
## 16168 2018-08-12 2021-08-12 2018 2021
## 16169 2017-12-10 2020-12-09 2017 2020
## 16170 2018-09-10 2021-09-09 2018 2021
## 16171 2018-10-17 2021-10-16 2018 2021
## 16172 2017-10-09 2020-10-08 2017 2020
## 16173 2018-03-07 2021-03-06 2018 2021
## 16174 2018-12-14 2021-12-13 2018 2021
## 16175 2018-09-07 2021-09-06 2018 2021
## 16176 2018-09-17 2021-09-16 2018 2021
## 16177 2018-12-29 2021-12-28 2018 2021
## 16178 2018-06-21 2021-06-20 2018 2021
## 16179 2018-09-09 2021-09-08 2018 2021
## 16180 2018-05-31 2021-05-30 2018 2021
## 16181 2018-09-10 2021-09-10 2018 2021
## 16182 2018-08-15 2021-08-15 2018 2021
## 16183 2018-06-14 2021-06-14 2018 2021
## 16184 2018-07-29 2021-07-29 2018 2021
## 16185 2018-11-15 2021-11-14 2018 2021
## 16186 2018-09-10 2021-09-10 2018 2021
## 16187 2018-09-06 2021-09-05 2018 2021
## 16188 2018-09-04 2021-09-03 2018 2021
## 16189 2017-10-31 2020-10-30 2017 2020
## 16190 2018-09-23 2021-09-22 2018 2021
## 16191 2018-05-31 2021-05-28 2018 2021
## 16192 2017-12-12 2020-12-12 2017 2020
## 16193 2018-02-12 2021-02-12 2018 2021
## 16194 2018-06-30 2021-06-29 2018 2021
## 16195 2018-09-15 2021-09-14 2018 2021
## 16196 2018-03-31 2021-03-30 2018 2021
## 16197 2018-08-24 2021-08-23 2018 2021
## 16198 2018-07-27 2021-07-26 2018 2021
## 16199 2018-06-30 2021-06-29 2018 2021
## 16200 2018-06-10 2021-06-09 2018 2021
## 16201 2018-09-02 2021-09-01 2018 2021
## 16202 2018-08-25 2021-08-24 2018 2021
## 16203 2018-09-19 2021-09-18 2018 2021
## 16204 2018-04-22 2021-04-21 2018 2021
## 16205 2018-09-20 2020-09-19 2018 2020
## 16206 2018-09-12 2021-09-11 2018 2021
## 16207 2018-05-01 2021-05-01 2018 2021
## 16208 2018-06-14 2021-06-13 2018 2021
## 16209 2018-04-16 2021-04-15 2018 2021
## 16210 2018-08-17 2021-08-16 2018 2021
## 16211 2018-09-14 2021-09-13 2018 2021
## 16212 2018-09-09 2021-09-08 2018 2021
## 16213 2018-06-17 2021-06-17 2018 2021
## 16214 2018-07-30 2021-07-29 2018 2021
## 16215 2018-04-11 2021-04-10 2018 2021
## 16216 2018-09-30 2021-09-29 2018 2021
## 16217 2018-08-12 2021-08-11 2018 2021
## 16218 2018-05-31 2021-05-31 2018 2021
## 16219 2018-09-03 2021-09-02 2018 2021
## 16220 2017-10-24 2020-10-23 2017 2020
## 16221 2017-10-08 2020-10-07 2017 2020
## 16222 2018-09-11 2021-09-10 2018 2021
## 16223 2017-10-10 2020-10-09 2017 2020
## 16224 2018-06-12 2021-06-12 2018 2021
## 16225 2018-08-26 2021-08-25 2018 2021
## 16226 2017-12-03 2020-12-03 2017 2020
## 16227 2018-08-22 2021-08-22 2018 2021
## 16228 2018-07-22 2021-07-21 2018 2021
## 16229 2018-09-11 2021-09-11 2018 2021
## 16230 2018-02-19 2021-02-17 2018 2021
## 16231 2018-08-30 2021-08-29 2018 2021
## 16232 2018-07-02 2021-07-01 2018 2021
## 16233 2018-09-19 2021-09-18 2018 2021
## 16234 2018-07-31 2021-07-30 2018 2021
## 16235 2018-05-17 2019-05-16 2018 2019
## 16236 2017-10-15 2020-10-15 2017 2020
## 16237 2018-01-07 2020-01-06 2018 2020
## 16238 2018-05-20 2021-05-19 2018 2021
## 16239 2018-08-06 2021-08-03 2018 2021
## 16240 2018-09-07 2021-09-06 2018 2021
## 16241 2018-04-30 2021-04-29 2018 2021
## 16242 2018-09-17 2021-09-17 2018 2021
## 16243 2017-12-21 2020-12-20 2017 2020
## 16244 2018-10-27 2021-10-26 2018 2021
## 16245 2018-09-19 2021-09-18 2018 2021
## 16246 2018-07-16 2021-07-15 2018 2021
## 16247 2018-02-01 2021-02-01 2018 2021
## 16248 2018-09-15 2021-09-15 2018 2021
## 16249 2018-09-16 2021-09-15 2018 2021
## 16250 2018-08-14 2021-08-14 2018 2021
## 16251 2017-12-31 2020-12-30 2017 2020
## 16252 2018-09-12 2021-09-11 2018 2021
## 16253 2018-07-06 2021-07-05 2018 2021
## 16254 2018-11-30 2021-11-29 2018 2021
## 16255 2017-10-17 2020-10-16 2017 2020
## 16256 2018-08-15 2021-08-14 2018 2021
## 16257 2018-06-10 2021-06-10 2018 2021
## 16258 2018-06-24 2020-07-29 2018 2020
## 16259 2017-11-09 2020-11-08 2017 2020
## 16260 2018-09-14 2020-09-13 2018 2020
## 16261 2018-07-31 2021-07-30 2018 2021
## 16262 2018-09-11 2021-09-10 2018 2021
## 16263 2018-09-20 2021-09-19 2018 2021
## 16264 2018-04-29 2021-04-28 2018 2021
## 16265 2019-02-23 2022-02-22 2019 2022
## 16266 2018-07-19 2021-07-18 2018 2021
## 16267 2018-09-01 2021-08-31 2018 2021
## 16268 2018-01-24 2021-01-23 2018 2021
## 16269 2018-07-31 2021-07-30 2018 2021
## 16270 2018-06-24 2021-06-24 2018 2021
## 16271 2018-09-10 2021-09-09 2018 2021
## 16272 2017-10-30 2020-10-28 2017 2020
## 16273 2018-05-26 2021-05-25 2018 2021
## 16274 2018-08-14 2021-08-14 2018 2021
## 16275 2018-09-18 2021-09-18 2018 2021
## 16276 2018-07-16 2021-07-16 2018 2021
## 16277 2018-09-16 2021-09-15 2018 2021
## 16278 2018-05-13 2021-05-10 2018 2021
## 16279 2018-08-20 2021-08-20 2018 2021
## 16280 2018-08-31 2021-08-31 2018 2021
## 16281 2018-12-20 2021-12-19 2018 2021
## 16282 2018-02-11 2021-02-11 2018 2021
## 16283 2018-09-14 2021-09-13 2018 2021
## 16284 2018-09-10 2021-09-10 2018 2021
## 16285 2018-02-06 2021-02-06 2018 2021
## 16286 2018-05-06 2019-06-28 2018 2019
## 16287 2018-09-02 2020-09-01 2018 2020
## 16288 2018-03-14 2021-03-13 2018 2021
## 16289 2018-06-11 2021-06-10 2018 2021
## 16290 2018-09-12 2021-09-12 2018 2021
## 16291 2018-08-10 2021-08-09 2018 2021
## 16292 2018-08-17 2021-08-17 2018 2021
## 16293 2018-09-14 2021-09-13 2018 2021
## 16294 2018-09-05 2021-09-05 2018 2021
## 16295 2018-07-29 2021-07-29 2018 2021
## 16296 2018-02-25 2021-02-24 2018 2021
## 16297 2018-08-14 2021-08-13 2018 2021
## 16298 2017-12-17 2020-12-14 2017 2020
## 16299 2018-07-09 2021-07-08 2018 2021
## 16300 2018-02-28 2021-02-27 2018 2021
## 16301 2018-06-30 2021-06-29 2018 2021
## 16302 2018-06-14 2021-06-14 2018 2021
## 16303 2017-11-05 2020-11-05 2017 2020
## 16304 2018-02-12 2021-02-11 2018 2021
## 16305 2018-07-19 2021-07-18 2018 2021
## 16306 2018-07-26 2021-07-26 2018 2021
## 16307 2018-04-08 2021-04-07 2018 2021
## 16308 2018-12-24 2021-12-24 2018 2021
## 16309 2018-09-19 2021-09-19 2018 2021
## 16310 2018-08-31 2021-08-30 2018 2021
## 16311 2018-03-28 2021-03-27 2018 2021
## 16312 2018-09-06 2021-09-05 2018 2021
## 16313 2018-04-26 2021-04-25 2018 2021
## 16314 2018-06-17 2019-06-16 2018 2019
## 16315 2018-08-02 2021-08-01 2018 2021
## 16316 2018-04-02 2021-04-01 2018 2021
## 16317 2018-07-31 2021-07-30 2018 2021
## 16318 2018-04-01 2021-03-31 2018 2021
## 16319 2018-08-31 2021-08-30 2018 2021
## 16320 2018-09-02 2021-09-01 2018 2021
## 16321 2018-09-08 2021-09-08 2018 2021
## 16322 2018-09-15 2021-09-15 2018 2021
## 16323 2018-04-09 2021-04-08 2018 2021
## 16324 2018-03-01 2021-02-28 2018 2021
## 16325 2018-08-19 2021-08-18 2018 2021
## 16326 2018-10-01 2021-09-30 2018 2021
## 16327 2018-06-04 2021-06-04 2018 2021
## 16328 2018-03-31 2021-03-30 2018 2021
## 16329 2017-10-08 2019-03-26 2017 2019
## 16330 2018-08-02 2021-08-02 2018 2021
## 16331 2018-02-22 2021-02-21 2018 2021
## 16332 2018-01-08 2021-01-07 2018 2021
## 16333 2018-08-31 2021-08-30 2018 2021
## 16334 2018-07-02 2021-07-01 2018 2021
## 16335 2017-12-14 2019-10-13 2017 2019
## 16336 2018-08-31 2021-08-29 2018 2021
## 16337 2018-08-30 2021-08-29 2018 2021
## 16338 2018-09-09 2021-09-08 2018 2021
## 16339 2018-07-27 2021-07-26 2018 2021
## 16340 2017-12-31 2020-12-30 2017 2020
## 16341 2018-09-21 2021-09-21 2018 2021
## 16342 2018-06-16 2021-06-15 2018 2021
## 16343 2018-09-21 2021-09-21 2018 2021
## 16344 2018-02-14 2021-02-13 2018 2021
## 16345 2018-07-31 2021-07-30 2018 2021
## 16346 2018-08-14 2021-08-14 2018 2021
## 16347 2018-09-10 2021-09-09 2018 2021
## 16348 2018-09-25 2021-09-25 2018 2021
## 16349 2018-07-31 2021-07-30 2018 2021
## 16350 2018-04-22 2020-07-13 2018 2020
## 16351 2018-01-01 2019-09-10 2018 2019
## 16352 2018-09-13 2020-07-24 2018 2020
## 16353 2018-04-08 2021-04-07 2018 2021
## 16354 2018-07-08 2021-07-07 2018 2021
## 16355 2018-09-16 2021-09-15 2018 2021
## 16356 2018-08-08 2021-08-07 2018 2021
## 16357 2019-01-28 2022-01-27 2019 2022
## 16358 2018-08-04 2021-08-03 2018 2021
## 16359 2018-09-14 2021-09-13 2018 2021
## 16360 2018-09-07 2021-09-06 2018 2021
## 16361 2018-08-27 2021-08-26 2018 2021
## 16362 2018-01-23 2021-01-21 2018 2021
## 16363 2018-07-31 2021-07-28 2018 2021
## 16364 2018-06-10 2021-06-10 2018 2021
## 16365 2018-08-25 2021-08-24 2018 2021
## 16366 2018-08-05 2021-08-04 2018 2021
## 16367 2018-07-11 2021-07-10 2018 2021
## 16368 2018-08-01 2021-07-31 2018 2021
## 16369 2018-08-31 2021-08-29 2018 2021
## 16370 2018-03-31 2021-03-30 2018 2021
## 16371 2018-08-06 2021-08-05 2018 2021
## 16372 2018-08-12 2021-08-11 2018 2021
## 16373 2017-12-31 2020-12-30 2017 2020
## 16374 2018-09-02 2020-12-30 2018 2020
## 16375 2018-08-31 2021-08-30 2018 2021
## 16376 2018-06-30 2021-06-29 2018 2021
## 16377 2018-07-31 2021-07-30 2018 2021
## 16378 2018-08-25 2021-08-24 2018 2021
## 16379 2018-05-30 2021-05-30 2018 2021
## 16380 2018-08-31 2021-08-29 2018 2021
## 16381 2018-08-04 2021-08-03 2018 2021
## 16382 2018-07-02 2020-03-30 2018 2020
## 16383 2018-07-04 2021-07-03 2018 2021
## 16384 2018-09-03 2021-09-02 2018 2021
## 16385 2018-09-18 2021-09-18 2018 2021
## 16386 2018-08-18 2021-08-18 2018 2021
## 16387 2018-08-20 2021-08-20 2018 2021
## 16388 2017-11-14 2020-11-13 2017 2020
## 16389 2018-08-15 2019-08-31 2018 2019
## 16390 2018-03-25 2021-03-24 2018 2021
## 16391 2018-04-02 2021-04-02 2018 2021
## 16392 2018-09-19 2021-09-18 2018 2021
## 16393 2018-08-06 2021-08-06 2018 2021
## 16394 2018-01-07 2021-01-02 2018 2021
## 16395 2018-06-13 2020-01-01 2018 2020
## 16396 2018-04-01 2019-06-29 2018 2019
## 16397 2018-08-22 2021-08-22 2018 2021
## 16398 2018-08-15 2021-08-12 2018 2021
## 16399 2018-06-30 2021-06-29 2018 2021
## 16400 2018-09-30 2021-09-29 2018 2021
## 16401 2018-06-25 2021-06-24 2018 2021
## 16402 2018-09-10 2021-09-10 2018 2021
## 16403 2018-10-22 2021-10-22 2018 2021
## 16404 2018-08-14 2021-08-14 2018 2021
## 16405 2018-08-16 2021-08-15 2018 2021
## 16406 2018-09-16 2021-09-15 2018 2021
## 16407 2017-11-02 2020-11-01 2017 2020
## 16408 2018-06-08 2021-06-07 2018 2021
## 16409 2018-08-24 2021-08-23 2018 2021
## 16410 2018-06-30 2021-06-29 2018 2021
## 16411 2018-01-31 2021-01-31 2018 2021
## 16412 2018-09-18 2021-09-17 2018 2021
## 16413 2018-08-26 2021-08-25 2018 2021
## 16414 2018-07-06 2021-07-05 2018 2021
## 16415 2018-08-02 2021-08-02 2018 2021
## 16416 2018-12-31 2021-12-30 2018 2021
## 16417 2018-01-14 2021-01-11 2018 2021
## 16418 2018-09-07 2021-09-06 2018 2021
## 16419 2018-09-09 2021-09-08 2018 2021
## 16420 2017-11-12 2020-11-11 2017 2020
## 16421 2018-03-30 2021-03-29 2018 2021
## 16422 2018-05-31 2021-05-30 2018 2021
## 16423 2018-01-10 2021-01-09 2018 2021
## 16424 2018-08-08 2021-08-08 2018 2021
## 16425 2018-10-31 2021-10-31 2018 2021
## 16426 2018-09-10 2021-09-09 2018 2021
## 16427 2018-07-20 2021-07-19 2018 2021
## 16428 2018-02-04 2018-12-30 2018 2018
## 16429 2018-11-30 2021-11-29 2018 2021
## 16430 2018-06-10 2021-06-09 2018 2021
## 16431 2018-09-14 2021-09-13 2018 2021
## 16432 2018-05-31 2020-05-31 2018 2020
## 16433 2018-11-20 2021-11-19 2018 2021
## 16434 2018-01-09 2021-01-08 2018 2021
## 16435 2018-05-11 2021-05-10 2018 2021
## 16436 2018-09-19 2021-09-18 2018 2021
## 16437 2018-06-21 2021-06-20 2018 2021
## 16438 2018-06-23 2021-06-22 2018 2021
## 16439 2018-07-02 2021-07-01 2018 2021
## 16440 2017-11-20 2020-11-19 2017 2020
## 16441 2018-02-18 2021-02-18 2018 2021
## 16442 2018-04-17 2021-04-17 2018 2021
## 16443 2018-08-25 2021-08-25 2018 2021
## 16444 2018-03-11 2021-03-10 2018 2021
## 16445 2018-07-31 2021-07-30 2018 2021
## 16446 2018-08-22 2021-08-21 2018 2021
## 16447 2018-09-01 2021-06-15 2018 2021
## 16448 2018-12-07 2021-12-06 2018 2021
## 16449 2018-11-17 2021-11-17 2018 2021
## 16450 2017-12-17 2020-12-16 2017 2020
## 16451 2018-08-07 2021-08-07 2018 2021
## 16452 2018-09-16 2021-09-15 2018 2021
## 16453 2018-08-01 2021-07-31 2018 2021
## 16454 2018-09-22 2021-09-21 2018 2021
## 16455 2018-09-11 2021-09-11 2018 2021
## 16456 2018-07-29 2021-07-28 2018 2021
## 16457 2017-10-17 2020-10-17 2017 2020
## 16458 2018-07-29 2021-07-26 2018 2021
## 16459 2018-09-30 2021-09-29 2018 2021
## 16460 2017-12-10 2020-12-10 2017 2020
## 16461 2018-08-19 2021-08-18 2018 2021
## 16462 2018-05-31 2021-05-31 2018 2021
## 16463 2018-08-26 2021-08-25 2018 2021
## 16464 2018-01-28 2021-01-27 2018 2021
## 16465 2018-06-21 2021-06-20 2018 2021
## 16466 2017-12-17 2020-12-17 2017 2020
## 16467 2017-11-16 2020-11-15 2017 2020
## 16468 2018-07-05 2021-07-04 2018 2021
## 16469 2018-11-16 2021-11-16 2018 2021
## 16470 2018-07-31 2021-07-30 2018 2021
## 16471 2018-09-20 2021-09-19 2018 2021
## 16472 2018-06-17 2021-06-14 2018 2021
## 16473 2018-09-20 2021-09-19 2018 2021
## 16474 2018-09-07 2021-09-06 2018 2021
## 16475 2018-09-12 2021-09-12 2018 2021
## 16476 2018-09-03 2021-09-02 2018 2021
## 16477 2018-09-16 2021-09-15 2018 2021
## 16478 2018-04-08 2021-04-07 2018 2021
## 16479 2018-09-02 2021-09-01 2018 2021
## 16480 2018-08-19 2020-07-30 2018 2020
## 16481 2018-09-14 2021-09-14 2018 2021
## 16482 2017-11-06 2020-11-05 2017 2020
## 16483 2018-04-14 2021-04-14 2018 2021
## 16484 2018-09-15 2021-09-14 2018 2021
## 16485 2018-05-22 2021-05-22 2018 2021
## 16486 2018-09-03 2021-09-02 2018 2021
## 16487 2018-07-30 2021-07-30 2018 2021
## 16488 2018-08-14 2021-08-13 2018 2021
## 16489 2017-11-12 2020-11-11 2017 2020
## 16490 2018-03-08 2021-03-08 2018 2021
## 16491 2018-08-30 2021-08-30 2018 2021
## 16492 2018-08-19 2020-04-29 2018 2020
## 16493 2018-10-16 2021-10-13 2018 2021
## 16494 2018-08-08 2021-08-07 2018 2021
## 16495 2018-08-23 2021-08-22 2018 2021
## 16496 2019-01-10 2022-01-10 2019 2022
## 16497 2018-08-30 2021-08-29 2018 2021
## 16498 2018-07-24 2021-07-24 2018 2021
## 16499 2018-09-10 2021-09-09 2018 2021
## 16500 2018-02-27 2021-02-26 2018 2021
## 16501 2018-06-26 2021-06-25 2018 2021
## 16502 2018-05-16 2021-05-15 2018 2021
## 16503 2018-03-25 2021-03-24 2018 2021
## 16504 2018-08-09 2021-08-09 2018 2021
## 16505 2018-08-03 2021-08-02 2018 2021
## 16506 2018-03-31 2021-03-30 2018 2021
## 16507 2018-07-23 2021-07-22 2018 2021
## 16508 2018-05-02 2021-05-01 2018 2021
## 16509 2018-07-31 2021-07-31 2018 2021
## 16510 2018-08-17 2021-08-16 2018 2021
## 16511 2018-05-27 2021-05-26 2018 2021
## 16512 2018-08-21 2021-08-21 2018 2021
## 16513 2018-09-18 2021-09-17 2018 2021
## 16514 2018-09-04 2021-09-03 2018 2021
## 16515 2018-04-08 2021-04-07 2018 2021
## 16516 2018-08-31 2021-08-30 2018 2021
## 16517 2018-06-28 2021-06-27 2018 2021
## 16518 2018-07-04 2021-07-03 2018 2021
## 16519 2018-05-30 2021-05-30 2018 2021
## 16520 2017-12-28 2020-12-27 2017 2020
## 16521 2018-07-31 2021-07-30 2018 2021
## 16522 2018-07-26 2021-07-25 2018 2021
## 16523 2018-09-04 2021-09-03 2018 2021
## 16524 2018-06-03 2021-06-02 2018 2021
## 16525 2018-09-13 2021-09-12 2018 2021
## 16526 2018-09-16 2021-09-16 2018 2021
## 16527 2018-04-19 2021-04-18 2018 2021
## 16528 2018-09-09 2021-09-08 2018 2021
## 16529 2018-12-21 2021-12-20 2018 2021
## 16530 2018-02-28 2021-02-27 2018 2021
## 16531 2017-12-06 2020-12-05 2017 2020
## 16532 2018-09-09 2021-09-08 2018 2021
## 16533 2018-08-31 2021-08-30 2018 2021
## 16534 2018-09-16 2021-09-15 2018 2021
## 16535 2018-04-24 2021-04-23 2018 2021
## 16536 2018-09-09 2021-09-08 2018 2021
## 16537 2018-04-01 2021-04-01 2018 2021
## 16538 2017-11-09 2019-06-29 2017 2019
## 16539 2017-11-19 2019-10-22 2017 2019
## 16540 2018-01-29 2021-01-28 2018 2021
## 16541 2018-01-03 2021-01-02 2018 2021
## 16542 2018-07-29 2021-07-28 2018 2021
## 16543 2018-06-24 2021-06-21 2018 2021
## 16544 2018-05-31 2021-05-31 2018 2021
## 16545 2018-09-02 2021-09-01 2018 2021
## 16546 2018-06-07 2021-06-06 2018 2021
## 16547 2018-09-06 2021-09-05 2018 2021
## 16548 2017-10-26 2020-10-23 2017 2020
## 16549 2018-08-11 2019-08-10 2018 2019
## 16550 2018-01-30 2021-01-29 2018 2021
## 16551 2018-08-24 2021-08-24 2018 2021
## 16552 2018-08-08 2020-05-30 2018 2020
## 16553 2018-09-09 2021-09-09 2018 2021
## 16554 2018-09-14 2021-09-13 2018 2021
## 16555 2019-01-25 2022-01-24 2019 2022
## 16556 2018-08-31 2021-08-31 2018 2021
## 16557 2018-09-19 2021-09-19 2018 2021
## 16558 2018-08-31 2021-08-31 2018 2021
## 16559 2018-07-20 2021-07-20 2018 2021
## 16560 2017-11-05 2020-11-02 2017 2020
## 16561 2018-09-04 2021-09-04 2018 2021
## 16562 2018-09-06 2021-09-05 2018 2021
## 16563 2018-09-24 2021-09-24 2018 2021
## 16564 2018-03-29 2021-03-29 2018 2021
## 16565 2018-08-05 2021-08-05 2018 2021
## 16566 2018-03-27 2021-03-27 2018 2021
## 16567 2018-09-21 2021-09-20 2018 2021
## 16568 2018-09-09 2021-09-08 2018 2021
## 16569 2017-12-30 2020-12-29 2017 2020
## 16570 2018-08-25 2021-08-24 2018 2021
## 16571 2018-08-15 2021-08-14 2018 2021
## 16572 2018-03-04 2019-03-03 2018 2019
## 16573 2018-09-12 2021-09-12 2018 2021
## 16574 2018-08-28 2021-08-28 2018 2021
## 16575 2017-12-05 2018-06-29 2017 2018
## 16576 2018-03-06 2018-09-04 2018 2018
## 16577 2018-04-30 2020-07-08 2018 2020
## 16578 2017-11-05 2020-11-04 2017 2020
## 16579 2018-06-30 2021-06-29 2018 2021
## 16580 2018-08-03 2021-08-02 2018 2021
## 16581 2018-11-11 2021-11-10 2018 2021
## 16582 2018-07-24 2021-07-23 2018 2021
## 16583 2018-09-23 2021-09-22 2018 2021
## 16584 2018-09-13 2021-09-12 2018 2021
## 16585 2018-09-11 2021-09-11 2018 2021
## 16586 2018-03-01 2021-02-28 2018 2021
## 16587 2018-05-13 2021-05-12 2018 2021
## 16588 2018-09-11 2021-09-10 2018 2021
## 16589 2018-05-14 2021-05-13 2018 2021
## 16590 2018-03-04 2021-03-03 2018 2021
## 16591 2018-03-01 2021-02-28 2018 2021
## 16592 2018-09-18 2021-09-14 2018 2021
## 16593 2018-08-28 2021-08-27 2018 2021
## 16594 2018-09-23 2021-09-23 2018 2021
## 16595 2018-07-22 2021-07-11 2018 2021
## 16596 2018-10-07 2021-10-06 2018 2021
## 16597 2017-12-25 2020-12-25 2017 2020
## 16598 2018-09-10 2021-09-09 2018 2021
## 16599 2018-09-09 2021-09-08 2018 2021
## 16600 2018-09-20 2021-09-19 2018 2021
## 16601 2018-08-31 2021-08-30 2018 2021
## 16602 2018-04-30 2021-04-30 2018 2021
## 16603 2018-05-02 2021-05-01 2018 2021
## 16604 2018-11-14 2021-11-13 2018 2021
## 16605 2018-08-31 2021-08-31 2018 2021
## 16606 2018-09-19 2021-09-18 2018 2021
## 16607 2018-09-09 2021-09-09 2018 2021
## 16608 2018-07-31 2020-06-29 2018 2020
## 16609 2018-01-02 2021-01-02 2018 2021
## 16610 2017-10-22 2020-08-21 2017 2020
## 16611 2018-09-19 2021-09-18 2018 2021
## 16612 2018-09-10 2021-09-10 2018 2021
## 16613 2018-08-31 2021-08-30 2018 2021
## 16614 2018-01-31 2021-01-30 2018 2021
## 16615 2018-08-04 2021-08-01 2018 2021
## 16616 2018-08-13 2021-08-12 2018 2021
## 16617 2018-07-11 2021-07-10 2018 2021
## 16618 2018-04-18 2021-04-17 2018 2021
## 16619 2018-07-17 2021-07-16 2018 2021
## 16620 2018-06-29 2020-06-29 2018 2020
## 16621 2018-08-31 2021-08-30 2018 2021
## 16622 2018-06-14 2021-06-13 2018 2021
## 16623 2018-09-14 2021-09-13 2018 2021
## 16624 2018-09-13 2021-09-12 2018 2021
## 16625 2018-07-03 2021-07-02 2018 2021
## 16626 2018-03-25 2021-03-25 2018 2021
## 16627 2018-08-21 2021-08-20 2018 2021
## 16628 2018-04-01 2021-03-31 2018 2021
## 16629 2018-09-06 2021-09-05 2018 2021
## 16630 2018-08-28 2021-08-27 2018 2021
## 16631 2018-08-31 2021-08-30 2018 2021
## 16632 2017-12-11 2020-12-10 2017 2020
## 16633 2018-08-21 2021-08-20 2018 2021
## 16634 2018-09-05 2021-09-04 2018 2021
## 16635 2018-06-14 2021-06-14 2018 2021
## 16636 2018-08-03 2021-08-02 2018 2021
## 16637 2018-09-06 2021-09-06 2018 2021
## 16638 2018-08-30 2021-08-29 2018 2021
## 16639 2018-09-30 2021-09-29 2018 2021
## 16640 2018-09-03 2021-09-02 2018 2021
## 16641 2018-06-24 2021-06-23 2018 2021
## 16642 2018-08-24 2021-08-23 2018 2021
## 16643 2018-08-25 2021-08-24 2018 2021
## 16644 2018-07-30 2021-07-29 2018 2021
## 16645 2018-09-01 2021-08-31 2018 2021
## 16646 2018-06-14 2021-06-14 2018 2021
## 16647 2018-08-19 2021-08-18 2018 2021
## 16648 2018-02-05 2021-02-04 2018 2021
## 16649 2018-06-24 2021-06-23 2018 2021
## 16650 2018-09-20 2021-09-20 2018 2021
## 16651 2018-04-11 2021-04-10 2018 2021
## 16652 2018-07-16 2021-07-15 2018 2021
## 16653 2017-11-12 2020-11-12 2017 2020
## 16654 2018-08-26 2021-08-25 2018 2021
## 16655 2018-07-22 2021-07-21 2018 2021
## 16656 2018-10-14 2021-10-13 2018 2021
## 16657 2018-09-25 2021-09-25 2018 2021
## 16658 2018-09-16 2021-09-15 2018 2021
## 16659 2018-06-03 2021-06-02 2018 2021
## 16660 2018-09-05 2021-09-05 2018 2021
## 16661 2018-06-17 2021-06-16 2018 2021
## 16662 2018-08-28 2021-08-28 2018 2021
## 16663 2018-01-11 2021-01-11 2018 2021
## 16664 2018-07-19 2021-07-19 2018 2021
## 16665 2018-09-06 2021-09-05 2018 2021
## 16666 2018-09-07 2021-09-07 2018 2021
## 16667 2018-09-17 2021-09-17 2018 2021
## 16668 2018-05-17 2021-05-17 2018 2021
## 16669 2018-08-31 2021-08-31 2018 2021
## 16670 2018-09-10 2021-09-10 2018 2021
## 16671 2018-03-04 2021-03-03 2018 2021
## 16672 2017-09-28 2020-09-27 2017 2020
## 16673 2017-12-28 2020-12-27 2017 2020
## 16674 2018-06-18 2021-06-17 2018 2021
## 16675 2018-10-19 2021-10-19 2018 2021
## 16676 2018-09-10 2021-09-09 2018 2021
## 16677 2018-09-19 2021-09-18 2018 2021
## 16678 2018-02-25 2021-02-24 2018 2021
## 16679 2018-04-24 2021-04-23 2018 2021
## 16680 2018-07-28 2021-07-27 2018 2021
## 16681 2018-09-23 2021-09-22 2018 2021
## 16682 2018-07-31 2021-07-31 2018 2021
## 16683 2018-05-24 2021-05-24 2018 2021
## 16684 2018-08-17 2021-08-17 2018 2021
## 16685 2018-11-30 2021-11-29 2018 2021
## 16686 2018-03-12 2021-03-11 2018 2021
## 16687 2018-08-28 2021-08-27 2018 2021
## 16688 2018-09-04 2021-09-04 2018 2021
## 16689 2018-07-31 2021-07-30 2018 2021
## 16690 2017-11-20 2020-11-19 2017 2020
## 16691 2018-08-28 2021-08-27 2018 2021
## 16692 2018-08-31 2021-08-31 2018 2021
## 16693 2018-09-23 2021-09-22 2018 2021
## 16694 2018-05-01 2019-08-30 2018 2019
## 16695 2018-09-30 2021-09-29 2018 2021
## 16696 2018-11-21 2021-11-20 2018 2021
## 16697 2018-09-06 2021-09-05 2018 2021
## 16698 2018-05-15 2021-05-15 2018 2021
## 16699 2018-08-20 2021-08-19 2018 2021
## 16700 2017-12-16 2020-12-13 2017 2020
## 16701 2018-09-11 2020-11-29 2018 2020
## 16702 2018-09-10 2021-09-09 2018 2021
## 16703 2018-08-21 2021-08-20 2018 2021
## 16704 2018-09-05 2021-09-05 2018 2021
## 16705 2018-05-20 2021-05-20 2018 2021
## 16706 2018-07-29 2021-07-28 2018 2021
## 16707 2018-09-12 2021-09-12 2018 2021
## 16708 2018-05-29 2021-05-28 2018 2021
## 16709 2018-05-06 2021-05-05 2018 2021
## 16710 2018-09-30 2021-09-29 2018 2021
## 16711 2018-08-08 2021-08-08 2018 2021
## 16712 2018-09-11 2021-09-10 2018 2021
## 16713 2018-06-17 2021-06-16 2018 2021
## 16714 2018-05-13 2021-05-12 2018 2021
## 16715 2018-02-28 2021-02-28 2018 2021
## 16716 2018-08-06 2021-08-06 2018 2021
## 16717 2018-08-29 2021-08-29 2018 2021
## 16718 2018-09-06 2021-09-06 2018 2021
## 16719 2018-03-05 2021-02-04 2018 2021
## 16720 2017-11-23 2020-11-22 2017 2020
## 16721 2018-01-26 2021-01-23 2018 2021
## 16722 2018-08-31 2021-08-30 2018 2021
## 16723 2018-09-27 2021-09-27 2018 2021
## 16724 2018-06-14 2021-06-14 2018 2021
## 16725 2018-09-09 2021-09-08 2018 2021
## 16726 2018-09-21 2021-09-21 2018 2021
## 16727 2018-07-09 2021-07-08 2018 2021
## 16728 2017-12-17 2018-09-16 2017 2018
## 16729 2018-03-08 2021-03-08 2018 2021
## 16730 2018-08-31 2021-08-30 2018 2021
## 16731 2018-09-08 2021-09-08 2018 2021
## 16732 2018-01-03 2020-01-02 2018 2020
## 16733 2018-02-07 2021-02-06 2018 2021
## 16734 2018-08-05 2021-08-04 2018 2021
## 16735 2018-08-27 2021-08-27 2018 2021
## 16736 2018-05-27 2021-05-26 2018 2021
## 16737 2018-09-21 2021-09-21 2018 2021
## 16738 2018-07-16 2021-07-16 2018 2021
## 16739 2018-09-10 2021-09-10 2018 2021
## 16740 2018-09-29 2021-09-29 2018 2021
## 16741 2018-07-30 2021-07-29 2018 2021
## 16742 2018-09-30 2021-09-29 2018 2021
## 16743 2018-09-17 2021-09-17 2018 2021
## 16744 2018-04-01 2019-04-01 2018 2019
## 16745 2018-03-12 2021-03-11 2018 2021
## 16746 2018-08-31 2021-08-30 2018 2021
## 16747 2018-06-10 2020-10-22 2018 2020
## 16748 2018-01-18 2021-01-17 2018 2021
## 16749 2018-08-31 2021-08-30 2018 2021
## 16750 2018-08-31 2021-08-30 2018 2021
## 16751 2017-10-31 2020-10-31 2017 2020
## 16752 2018-04-30 2021-04-30 2018 2021
## 16753 2018-01-21 2021-01-21 2018 2021
## 16754 2018-09-03 2021-09-02 2018 2021
## 16755 2018-08-01 2021-07-31 2018 2021
## 16756 2018-05-13 2019-05-12 2018 2019
## 16757 2018-07-26 2021-07-25 2018 2021
## 16758 2018-06-13 2021-06-12 2018 2021
## 16759 2018-01-31 2021-01-30 2018 2021
## 16760 2018-03-05 2021-03-04 2018 2021
## 16761 2018-01-28 2021-01-27 2018 2021
## 16762 2018-09-02 2021-09-01 2018 2021
## 16763 2018-09-15 2021-09-15 2018 2021
## 16764 2018-04-12 2021-04-11 2018 2021
## 16765 2018-09-20 2021-09-20 2018 2021
## 16766 2018-07-31 2021-07-30 2018 2021
## 16767 2018-08-19 2021-08-19 2018 2021
## 16768 2018-08-06 2021-08-05 2018 2021
## 16769 2018-09-07 2021-09-06 2018 2021
## 16770 2017-09-27 2020-09-27 2017 2020
## 16771 2018-08-15 2021-08-14 2018 2021
## 16772 2018-08-20 2021-08-19 2018 2021
## 16773 2018-08-31 2021-08-30 2018 2021
## 16774 2018-09-07 2021-09-06 2018 2021
## 16775 2018-09-14 2021-09-13 2018 2021
## 16776 2018-07-26 2021-07-25 2018 2021
## 16777 2018-09-24 2021-09-24 2018 2021
## 16778 2018-12-03 2021-12-02 2018 2021
## 16779 2018-08-30 2021-08-30 2018 2021
## 16780 2018-09-30 2021-09-29 2018 2021
## 16781 2018-09-12 2021-09-11 2018 2021
## 16782 2018-08-09 2021-08-08 2018 2021
## 16783 2018-08-25 2021-08-24 2018 2021
## 16784 2018-08-01 2021-07-31 2018 2021
## 16785 2018-09-02 2021-09-01 2018 2021
## 16786 2018-09-12 2021-09-11 2018 2021
## 16787 2018-08-31 2021-08-30 2018 2021
## 16788 2018-09-02 2021-09-02 2018 2021
## 16789 2017-09-27 2020-09-26 2017 2020
## 16790 2018-06-29 2021-06-29 2018 2021
## 16791 2018-08-26 2021-08-25 2018 2021
## 16792 2018-08-06 2021-08-06 2018 2021
## 16793 2018-02-01 2021-01-31 2018 2021
## 16794 2017-11-14 2020-11-14 2017 2020
## 16795 2017-12-19 2020-12-18 2017 2020
## 16796 2018-06-14 2021-06-14 2018 2021
## 16797 2018-09-11 2021-09-11 2018 2021
## 16798 2018-02-28 2021-02-28 2018 2021
## 16799 2018-09-20 2021-09-19 2018 2021
## 16800 2018-09-24 2021-09-24 2018 2021
## 16801 2017-12-11 2020-11-29 2017 2020
## 16802 2018-04-07 2021-02-03 2018 2021
## 16803 2018-09-09 2021-09-09 2018 2021
## 16804 2017-10-15 2020-10-14 2017 2020
## 16805 2018-08-31 2020-08-30 2018 2020
## 16806 2018-09-16 2021-09-16 2018 2021
## 16807 2018-01-04 2021-01-03 2018 2021
## 16808 2018-08-19 2021-08-19 2018 2021
## 16809 2018-02-22 2021-02-22 2018 2021
## 16810 2018-08-20 2021-08-19 2018 2021
## 16811 2018-09-22 2021-09-21 2018 2021
## 16812 2018-08-31 2021-08-31 2018 2021
## 16813 2018-09-16 2021-09-15 2018 2021
## 16814 2018-09-15 2021-09-14 2018 2021
## 16815 2018-09-19 2021-09-18 2018 2021
## 16816 2018-08-12 2021-08-11 2018 2021
## 16817 2018-05-18 2021-05-17 2018 2021
## 16818 2019-01-03 2022-01-02 2019 2022
## 16819 2018-07-29 2019-09-05 2018 2019
## 16820 2018-09-20 2021-09-19 2018 2021
## 16821 2018-09-06 2021-09-05 2018 2021
## 16822 2018-07-12 2021-07-11 2018 2021
## 16823 2018-03-31 2021-03-30 2018 2021
## 16824 2018-08-31 2021-08-30 2018 2021
## 16825 2017-12-21 2020-12-20 2017 2020
## 16826 2018-06-07 2021-06-07 2018 2021
## 16827 2018-02-27 2021-02-26 2018 2021
## 16828 2018-07-05 2021-07-05 2018 2021
## 16829 2017-10-01 2020-09-30 2017 2020
## 16830 2018-06-05 2021-06-03 2018 2021
## 16831 2018-08-31 2021-08-30 2018 2021
## 16832 2018-08-24 2021-08-24 2018 2021
## 16833 2018-06-04 2021-06-03 2018 2021
## 16834 2018-09-27 2021-09-27 2018 2021
## 16835 2018-09-18 2019-01-09 2018 2019
## 16836 2018-09-11 2021-09-10 2018 2021
## 16837 2018-08-31 2021-08-30 2018 2021
## 16838 2018-04-01 2021-03-31 2018 2021
## 16839 2018-08-14 2021-08-14 2018 2021
## 16840 2018-02-05 2021-02-04 2018 2021
## 16841 2018-04-15 2021-04-15 2018 2021
## 16842 2017-10-15 2020-10-14 2017 2020
## 16843 2018-08-05 2021-08-05 2018 2021
## 16844 2018-03-26 2021-03-25 2018 2021
## 16845 2018-06-30 2021-06-29 2018 2021
## 16846 2018-08-08 2021-08-07 2018 2021
## 16847 2017-10-17 2020-10-16 2017 2020
## 16848 2018-03-17 2019-03-16 2018 2019
## 16849 2018-08-20 2021-08-19 2018 2021
## 16850 2017-11-12 2018-11-28 2017 2018
## 16851 2018-03-31 2021-03-30 2018 2021
## 16852 2018-08-15 2021-08-15 2018 2021
## 16853 2018-06-24 2021-06-23 2018 2021
## 16854 2018-09-14 2021-09-14 2018 2021
## 16855 2018-08-19 2021-08-19 2018 2021
## 16856 2018-08-27 2021-08-26 2018 2021
## 16857 2018-10-26 2021-10-26 2018 2021
## 16858 2018-08-31 2021-08-30 2018 2021
## 16859 2017-11-24 2020-11-24 2017 2020
## 16860 2018-07-27 2021-07-26 2018 2021
## 16861 2018-02-26 2021-02-24 2018 2021
## 16862 2018-07-23 2021-07-22 2018 2021
## 16863 2018-08-22 2021-08-22 2018 2021
## 16864 2018-03-21 2021-03-20 2018 2021
## 16865 2018-06-30 2021-06-30 2018 2021
## 16866 2018-10-31 2021-10-30 2018 2021
## 16867 2018-07-01 2020-06-14 2018 2020
## 16868 2018-07-15 2021-07-14 2018 2021
## 16869 2018-09-23 2021-09-22 2018 2021
## 16870 2018-08-14 2021-08-13 2018 2021
## 16871 2018-08-24 2021-08-23 2018 2021
## 16872 2018-09-05 2021-09-04 2018 2021
## 16873 2018-09-14 2021-09-14 2018 2021
## 16874 2018-08-22 2021-08-21 2018 2021
## 16875 2018-03-31 2021-03-30 2018 2021
## 16876 2018-04-01 2021-03-31 2018 2021
## 16877 2018-04-01 2021-03-31 2018 2021
## 16878 2018-08-29 2021-08-29 2018 2021
## 16879 2018-08-06 2021-08-05 2018 2021
## 16880 2017-10-29 2020-10-29 2017 2020
## 16881 2018-07-20 2021-07-20 2018 2021
## 16882 2018-07-31 2021-07-30 2018 2021
## 16883 2018-01-01 2020-12-31 2018 2020
## 16884 2018-06-30 2021-06-29 2018 2021
## 16885 2018-03-21 2021-03-18 2018 2021
## 16886 2018-08-31 2021-08-30 2018 2021
## 16887 2018-09-17 2021-09-16 2018 2021
## 16888 2018-05-13 2021-05-12 2018 2021
## 16889 2018-09-09 2021-09-08 2018 2021
## 16890 2018-08-20 2021-08-20 2018 2021
## 16891 2018-05-31 2021-05-30 2018 2021
## 16892 2018-07-22 2021-07-21 2018 2021
## 16893 2018-06-30 2021-06-29 2018 2021
## 16894 2018-03-21 2021-03-21 2018 2021
## 16895 2018-09-24 2021-09-23 2018 2021
## 16896 2017-12-19 2020-12-19 2017 2020
## 16897 2018-09-20 2021-09-19 2018 2021
## 16898 2018-05-22 2021-05-21 2018 2021
## 16899 2018-09-11 2021-09-10 2018 2021
## 16900 2018-06-11 2021-06-10 2018 2021
## 16901 2018-02-27 2021-02-27 2018 2021
## 16902 2018-08-02 2021-08-01 2018 2021
## 16903 2018-05-28 2021-05-28 2018 2021
## 16904 2018-09-13 2021-09-13 2018 2021
## 16905 2018-08-11 2021-08-10 2018 2021
## 16906 2018-08-27 2021-08-26 2018 2021
## 16907 2018-07-23 2021-07-22 2018 2021
## 16908 2018-09-14 2021-09-13 2018 2021
## 16909 2018-09-09 2021-09-08 2018 2021
## 16910 2018-04-30 2021-04-29 2018 2021
## 16911 2018-05-21 2021-05-20 2018 2021
## 16912 2018-06-19 2021-06-18 2018 2021
## 16913 2018-08-11 2021-08-10 2018 2021
## 16914 2018-02-18 2018-11-15 2018 2018
## 16915 2018-09-30 2021-09-30 2018 2021
## 16916 2018-09-16 2021-09-16 2018 2021
## 16917 2018-09-04 2021-06-17 2018 2021
## 16918 2018-09-07 2021-09-06 2018 2021
## 16919 2018-08-22 2021-08-21 2018 2021
## 16920 2018-08-04 2021-08-03 2018 2021
## 16921 2018-05-13 2021-05-12 2018 2021
## 16922 2018-08-12 2021-08-11 2018 2021
## 16923 2018-01-15 2021-01-15 2018 2021
## 16924 2018-09-02 2021-09-01 2018 2021
## 16925 2017-10-18 2020-10-17 2017 2020
## 16926 2018-04-29 2021-04-28 2018 2021
## 16927 2018-05-20 2021-05-19 2018 2021
## 16928 2018-08-02 2021-08-02 2018 2021
## 16929 2018-09-03 2021-09-02 2018 2021
## 16930 2018-09-13 2021-09-12 2018 2021
## 16931 2018-05-28 2021-05-27 2018 2021
## 16932 2018-03-14 2018-09-03 2018 2018
## 16933 2018-05-06 2021-05-05 2018 2021
## 16934 2018-07-31 2021-07-30 2018 2021
## 16935 2018-07-29 2021-07-28 2018 2021
## 16936 2018-06-17 2021-06-17 2018 2021
## 16937 2018-09-13 2021-09-13 2018 2021
## 16938 2018-08-21 2021-08-20 2018 2021
## 16939 2018-01-25 2020-01-24 2018 2020
## 16940 2018-02-11 2021-02-10 2018 2021
## 16941 2018-08-01 2021-07-29 2018 2021
## 16942 2018-09-15 2021-09-14 2018 2021
## 16943 2018-01-31 2021-01-30 2018 2021
## 16944 2018-09-01 2021-08-31 2018 2021
## 16945 2018-08-12 2021-08-12 2018 2021
## 16946 2017-12-31 2020-12-30 2017 2020
## 16947 2018-07-11 2021-07-09 2018 2021
## 16948 2018-06-09 2021-06-09 2018 2021
## 16949 2018-02-27 2021-02-26 2018 2021
## 16950 2017-10-22 2020-10-21 2017 2020
## 16951 2018-08-30 2021-08-29 2018 2021
## 16952 2018-05-31 2021-05-29 2018 2021
## 16953 2018-08-05 2021-08-04 2018 2021
## 16954 2018-07-11 2021-07-11 2018 2021
## 16955 2018-08-11 2021-08-10 2018 2021
## 16956 2017-12-13 2020-11-25 2017 2020
## 16957 2017-12-31 2020-06-16 2017 2020
## 16958 2019-03-08 2022-03-08 2019 2022
## 16959 2018-05-03 2021-05-03 2018 2021
## 16960 2018-10-15 2021-10-14 2018 2021
## 16961 2018-09-03 2021-09-02 2018 2021
## 16962 2018-09-06 2021-09-05 2018 2021
## 16963 2018-09-02 2021-09-01 2018 2021
## 16964 2018-07-01 2021-07-01 2018 2021
## 16965 2018-08-21 2021-08-20 2018 2021
## 16966 2018-07-31 2021-07-30 2018 2021
## 16967 2018-04-01 2021-03-31 2018 2021
## 16968 2018-04-04 2021-04-04 2018 2021
## 16969 2018-02-09 2021-02-09 2018 2021
## 16970 2018-08-31 2021-08-31 2018 2021
## 16971 2018-09-27 2021-09-26 2018 2021
## 16972 2018-08-14 2021-08-14 2018 2021
## 16973 2018-08-12 2021-08-09 2018 2021
## 16974 2018-08-20 2021-08-20 2018 2021
## 16975 2018-04-30 2021-04-29 2018 2021
## 16976 2018-11-24 2021-11-24 2018 2021
## 16977 2018-01-14 2021-01-14 2018 2021
## 16978 2018-07-11 2021-07-10 2018 2021
## 16979 2017-12-17 2020-12-16 2017 2020
## 16980 2018-07-31 2021-07-31 2018 2021
## 16981 2018-09-01 2021-08-31 2018 2021
## 16982 2018-01-29 2021-01-29 2018 2021
## 16983 2018-09-05 2021-09-05 2018 2021
## 16984 2018-02-28 2021-02-27 2018 2021
## 16985 2018-08-31 2021-08-31 2018 2021
## 16986 2018-04-30 2021-04-29 2018 2021
## 16987 2018-07-07 2021-07-06 2018 2021
## 16988 2018-02-14 2021-02-13 2018 2021
## 16989 2018-08-31 2021-08-31 2018 2021
## 16990 2018-08-31 2021-08-30 2018 2021
## 16991 2018-08-23 2021-08-22 2018 2021
## 16992 2018-05-27 2021-05-26 2018 2021
## 16993 2018-08-10 2021-08-09 2018 2021
## 16994 2018-09-13 2021-09-12 2018 2021
## 16995 2017-10-08 2020-10-08 2017 2020
## 16996 2018-09-18 2021-09-17 2018 2021
## 16997 2018-08-31 2021-08-30 2018 2021
## 16998 2018-06-24 2021-06-23 2018 2021
## 16999 2018-04-08 2019-05-11 2018 2019
## 17000 2018-02-25 2021-02-24 2018 2021
## 17001 2018-09-14 2021-09-14 2018 2021
## 17002 2018-08-19 2021-08-18 2018 2021
## 17003 2018-08-05 2021-08-04 2018 2021
## 17004 2018-09-10 2021-09-10 2018 2021
## 17005 2018-09-10 2021-09-09 2018 2021
## 17006 2018-08-27 2021-08-27 2018 2021
## 17007 2018-09-01 2021-09-01 2018 2021
## 17008 2017-11-26 2020-11-26 2017 2020
## 17009 2017-11-26 2020-04-24 2017 2020
## 17010 2018-06-17 2021-06-16 2018 2021
## 17011 2018-08-16 2021-08-15 2018 2021
## 17012 2019-02-28 2022-02-27 2019 2022
## 17013 2018-07-15 2021-07-14 2018 2021
## 17014 2018-06-30 2021-06-29 2018 2021
## 17015 2019-01-24 2022-01-24 2019 2022
## 17016 2018-08-30 2021-08-29 2018 2021
## 17017 2018-06-10 2021-06-09 2018 2021
## 17018 2018-08-31 2021-08-29 2018 2021
## 17019 2018-09-07 2021-09-06 2018 2021
## 17020 2018-05-18 2019-12-13 2018 2019
## 17021 2018-09-14 2021-09-13 2018 2021
## 17022 2017-10-31 2020-10-30 2017 2020
## 17023 2018-05-27 2021-05-26 2018 2021
## 17024 2018-09-09 2021-09-08 2018 2021
## 17025 2018-07-15 2021-07-14 2018 2021
## 17026 2018-09-13 2021-09-12 2018 2021
## 17027 2018-12-31 2021-12-31 2018 2021
## 17028 2017-10-29 2020-10-29 2017 2020
## 17029 2018-05-28 2021-05-25 2018 2021
## 17030 2018-07-09 2019-04-24 2018 2019
## 17031 2018-04-30 2021-04-29 2018 2021
## 17032 2018-09-18 2021-09-17 2018 2021
## 17033 2018-04-30 2021-03-30 2018 2021
## 17034 2018-09-19 2021-09-19 2018 2021
## 17035 2018-06-19 2021-06-19 2018 2021
## 17036 2017-12-25 2020-12-24 2017 2020
## 17037 2018-08-27 2021-08-26 2018 2021
## 17038 2018-09-21 2021-09-20 2018 2021
## 17039 2018-07-09 2021-07-08 2018 2021
## 17040 2018-06-14 2021-06-14 2018 2021
## 17041 2018-04-10 2021-04-10 2018 2021
## 17042 2018-09-04 2021-09-03 2018 2021
## 17043 2018-09-07 2021-09-06 2018 2021
## 17044 2018-07-07 2021-07-06 2018 2021
## 17045 2017-10-19 2020-10-18 2017 2020
## 17046 2018-08-30 2021-08-29 2018 2021
## 17047 2018-08-16 2021-08-15 2018 2021
## 17048 2018-08-26 2021-08-25 2018 2021
## 17049 2018-06-03 2021-06-02 2018 2021
## 17050 2018-09-15 2021-09-15 2018 2021
## 17051 2018-02-21 2021-02-20 2018 2021
## 17052 2018-09-30 2021-09-29 2018 2021
## 17053 2018-06-17 2021-06-16 2018 2021
## 17054 2018-07-15 2021-07-14 2018 2021
## 17055 2018-05-06 2021-05-05 2018 2021
## 17056 2018-09-15 2021-09-14 2018 2021
## 17057 2018-08-29 2021-08-20 2018 2021
## 17058 2018-03-11 2021-03-11 2018 2021
## 17059 2018-02-07 2021-02-06 2018 2021
## 17060 2018-09-24 2021-09-23 2018 2021
## 17061 2019-02-04 2022-02-03 2019 2022
## 17062 2017-11-05 2020-11-04 2017 2020
## 17063 2018-08-25 2021-08-25 2018 2021
## 17064 2017-10-11 2020-10-10 2017 2020
## 17065 2018-01-31 2021-01-31 2018 2021
## 17066 2018-07-12 2021-07-11 2018 2021
## 17067 2018-08-17 2021-08-16 2018 2021
## 17068 2018-07-17 2021-07-17 2018 2021
## 17069 2018-06-05 2021-06-04 2018 2021
## 17070 2018-08-15 2021-08-14 2018 2021
## 17071 2018-09-13 2021-09-12 2018 2021
## 17072 2018-07-06 2021-07-05 2018 2021
## 17073 2018-09-17 2021-09-16 2018 2021
## 17074 2018-08-31 2021-08-30 2018 2021
## 17075 2018-09-04 2021-09-03 2018 2021
## 17076 2018-07-04 2021-07-03 2018 2021
## 17077 2018-03-27 2021-03-26 2018 2021
## 17078 2018-09-23 2021-09-22 2018 2021
## 17079 2018-07-15 2021-07-14 2018 2021
## 17080 2018-08-12 2021-08-12 2018 2021
## 17081 2018-04-30 2021-04-29 2018 2021
## 17082 2018-08-24 2021-08-23 2018 2021
## 17083 2018-07-13 2021-07-12 2018 2021
## 17084 2018-08-25 2021-08-24 2018 2021
## 17085 2018-09-11 2019-12-30 2018 2019
## 17086 2018-09-24 2021-09-23 2018 2021
## 17087 2018-09-07 2021-09-06 2018 2021
## 17088 2018-08-14 2021-08-13 2018 2021
## 17089 2018-09-17 2021-09-16 2018 2021
## 17090 2018-05-14 2021-05-13 2018 2021
## 17091 2018-08-04 2021-08-03 2018 2021
## 17092 2018-09-21 2021-09-20 2018 2021
## 17093 2018-03-27 2021-03-27 2018 2021
## 17094 2017-12-10 2020-12-06 2017 2020
## 17095 2018-09-24 2021-09-24 2018 2021
## 17096 2018-01-31 2021-01-30 2018 2021
## 17097 2018-03-19 2021-03-18 2018 2021
## 17098 2018-06-10 2021-06-09 2018 2021
## 17099 2018-08-27 2021-08-27 2018 2021
## 17100 2018-04-01 2021-03-31 2018 2021
## 17101 2018-07-24 2021-07-24 2018 2021
## 17102 2018-07-21 2021-07-20 2018 2021
## 17103 2018-09-30 2021-09-30 2018 2021
## 17104 2018-04-08 2021-04-07 2018 2021
## 17105 2018-05-31 2021-05-30 2018 2021
## 17106 2018-08-11 2021-08-10 2018 2021
## 17107 2018-07-15 2020-10-17 2018 2020
## 17108 2019-02-20 2022-02-17 2019 2022
## 17109 2017-12-17 2020-12-16 2017 2020
## 17110 2018-09-07 2021-09-07 2018 2021
## 17111 2018-03-02 2021-03-01 2018 2021
## 17112 2018-08-19 2021-08-18 2018 2021
## 17113 2018-09-09 2021-09-08 2018 2021
## 17114 2019-02-05 2022-02-04 2019 2022
## 17115 2018-08-31 2021-08-30 2018 2021
## 17116 2018-03-19 2021-03-18 2018 2021
## 17117 2018-02-28 2021-02-27 2018 2021
## 17118 2018-07-02 2021-07-01 2018 2021
## 17119 2018-09-13 2021-09-12 2018 2021
## 17120 2019-02-07 2022-02-06 2019 2022
## 17121 2018-09-09 2021-09-08 2018 2021
## 17122 2018-05-13 2021-05-12 2018 2021
## 17123 2018-08-19 2021-08-18 2018 2021
## 17124 2017-11-09 2020-10-30 2017 2020
## 17125 2018-08-05 2021-08-04 2018 2021
## 17126 2018-10-31 2019-10-30 2018 2019
## 17127 2017-10-11 2020-10-10 2017 2020
## 17128 2018-02-28 2021-02-27 2018 2021
## 17129 2018-09-15 2021-09-15 2018 2021
## 17130 2019-01-23 2022-01-22 2019 2022
## 17131 2018-06-07 2021-06-06 2018 2021
## 17132 2018-05-10 2021-05-09 2018 2021
## 17133 2018-02-15 2021-02-14 2018 2021
## 17134 2018-09-03 2021-09-02 2018 2021
## 17135 2018-08-23 2021-08-15 2018 2021
## 17136 2018-09-30 2021-09-29 2018 2021
## 17137 2018-05-08 2021-05-07 2018 2021
## 17138 2017-11-19 2020-11-18 2017 2020
## 17139 2018-05-17 2021-05-16 2018 2021
## 17140 2018-09-06 2021-09-06 2018 2021
## 17141 2018-05-13 2021-05-12 2018 2021
## 17142 2018-03-31 2021-03-30 2018 2021
## 17143 2018-07-22 2021-07-22 2018 2021
## 17144 2018-04-10 2021-04-09 2018 2021
## 17145 2018-08-09 2021-08-09 2018 2021
## 17146 2018-06-30 2021-06-30 2018 2021
## 17147 2018-04-30 2021-04-29 2018 2021
## 17148 2018-10-05 2021-10-04 2018 2021
## 17149 2018-02-11 2020-08-01 2018 2020
## 17150 2017-12-24 2020-12-23 2017 2020
## 17151 2018-03-06 2021-03-05 2018 2021
## 17152 2017-12-12 2020-12-11 2017 2020
## 17153 2018-05-23 2021-05-23 2018 2021
## 17154 2018-07-01 2021-06-30 2018 2021
## 17155 2018-07-24 2021-07-24 2018 2021
## 17156 2017-10-29 2020-10-29 2017 2020
## 17157 2018-09-14 2021-09-13 2018 2021
## 17158 2018-08-12 2021-08-11 2018 2021
## 17159 2018-06-14 2021-06-14 2018 2021
## 17160 2018-03-15 2021-03-14 2018 2021
## 17161 2018-07-06 2021-07-05 2018 2021
## 17162 2018-03-22 2021-03-22 2018 2021
## 17163 2018-07-13 2021-07-12 2018 2021
## 17164 2018-04-22 2021-04-21 2018 2021
## 17165 2017-10-08 2020-01-31 2017 2020
## 17166 2018-09-08 2021-09-08 2018 2021
## 17167 2017-11-30 2020-11-30 2017 2020
## 17168 2018-03-31 2021-03-30 2018 2021
## 17169 2018-08-14 2021-08-14 2018 2021
## 17170 2018-04-22 2021-04-21 2018 2021
## 17171 2018-03-05 2021-03-04 2018 2021
## 17172 2017-12-02 2020-11-29 2017 2020
## 17173 2018-08-20 2021-08-19 2018 2021
## 17174 2018-02-22 2021-02-21 2018 2021
## 17175 2018-09-02 2021-09-01 2018 2021
## 17176 2018-09-04 2021-09-03 2018 2021
## 17177 2018-01-07 2021-01-06 2018 2021
## 17178 2018-09-02 2021-09-01 2018 2021
## 17179 2018-02-04 2021-02-03 2018 2021
## 17180 2017-11-08 2020-11-07 2017 2020
## 17181 2018-09-02 2021-09-01 2018 2021
## 17182 2018-02-18 2018-09-12 2018 2018
## 17183 2018-03-29 2019-09-06 2018 2019
## 17184 2018-09-02 2021-09-02 2018 2021
## 17185 2018-03-25 2021-03-24 2018 2021
## 17186 2018-08-31 2021-08-30 2018 2021
## 17187 2018-03-05 2020-06-14 2018 2020
## 17188 2018-07-31 2021-07-31 2018 2021
## 17189 2018-08-13 2021-08-13 2018 2021
## 17190 2017-10-24 2020-07-15 2017 2020
## 17191 2018-08-19 2021-08-18 2018 2021
## 17192 2018-03-06 2021-03-06 2018 2021
## 17193 2018-09-20 2021-09-20 2018 2021
## 17194 2018-09-23 2021-09-22 2018 2021
## 17195 2018-02-03 2021-02-03 2018 2021
## 17196 2018-08-12 2021-08-11 2018 2021
## 17197 2018-08-16 2021-08-16 2018 2021
## 17198 2019-01-26 2022-01-23 2019 2022
## 17199 2018-08-30 2021-08-30 2018 2021
## 17200 2018-06-17 2021-06-16 2018 2021
## 17201 2018-09-18 2021-09-18 2018 2021
## 17202 2018-02-01 2021-01-31 2018 2021
## 17203 2018-08-26 2021-08-26 2018 2021
## 17204 2018-02-28 2021-02-27 2018 2021
## 17205 2018-07-01 2021-06-30 2018 2021
## 17206 2018-09-16 2021-09-16 2018 2021
## 17207 2017-12-27 2020-12-27 2017 2020
## 17208 2018-07-31 2021-07-31 2018 2021
## 17209 2018-07-23 2021-07-22 2018 2021
## 17210 2017-12-10 2018-06-29 2017 2018
## 17211 2018-09-08 2021-09-08 2018 2021
## 17212 2017-10-11 2020-10-10 2017 2020
## 17213 2018-09-21 2021-09-20 2018 2021
## 17214 2018-06-30 2021-06-29 2018 2021
## 17215 2018-04-17 2019-01-20 2018 2019
## 17216 2018-02-25 2021-02-24 2018 2021
## 17217 2018-08-26 2021-08-25 2018 2021
## 17218 2018-08-20 2021-08-19 2018 2021
## 17219 2018-08-14 2021-08-13 2018 2021
## 17220 2017-10-16 2020-10-15 2017 2020
## 17221 2018-08-21 2021-08-20 2018 2021
## 17222 2018-09-06 2021-09-05 2018 2021
## 17223 2018-08-24 2021-08-24 2018 2021
## 17224 2018-08-19 2021-08-18 2018 2021
## 17225 2018-07-31 2021-07-30 2018 2021
## 17226 2018-01-23 2020-12-30 2018 2020
## 17227 2018-09-16 2021-09-15 2018 2021
## 17228 2018-09-12 2021-09-12 2018 2021
## 17229 2018-08-23 2021-08-22 2018 2021
## 17230 2017-12-03 2020-12-03 2017 2020
## 17231 2018-09-18 2021-09-17 2018 2021
## 17232 2018-09-17 2021-09-16 2018 2021
## 17233 2017-10-08 2020-10-08 2017 2020
## 17234 2018-09-04 2021-09-03 2018 2021
## 17235 2018-09-08 2021-09-07 2018 2021
## 17236 2018-08-31 2021-08-30 2018 2021
## 17237 2018-07-13 2021-07-12 2018 2021
## 17238 2018-05-31 2019-03-31 2018 2019
## 17239 2018-01-04 2021-01-01 2018 2021
## 17240 2018-08-14 2021-08-13 2018 2021
## 17241 2018-06-24 2021-06-23 2018 2021
## 17242 2018-08-05 2021-08-04 2018 2021
## 17243 2018-09-21 2021-09-20 2018 2021
## 17244 2018-09-22 2021-09-21 2018 2021
## 17245 2018-07-25 2021-07-24 2018 2021
## 17246 2018-05-31 2021-05-31 2018 2021
## 17247 2018-06-14 2021-06-14 2018 2021
## 17248 2018-08-03 2021-08-02 2018 2021
## 17249 2018-09-06 2020-09-05 2018 2020
## 17250 2018-08-06 2021-08-06 2018 2021
## 17251 2019-02-20 2022-02-19 2019 2022
## 17252 2018-03-18 2021-03-17 2018 2021
## 17253 2018-09-15 2021-09-15 2018 2021
## 17254 2018-07-29 2021-07-29 2018 2021
## 17255 2018-09-12 2021-09-11 2018 2021
## 17256 2018-03-04 2021-03-03 2018 2021
## 17257 2018-08-30 2021-08-29 2018 2021
## 17258 2018-09-20 2021-09-20 2018 2021
## 17259 2018-07-17 2021-07-16 2018 2021
## 17260 2018-01-13 2021-01-12 2018 2021
## 17261 2018-09-06 2021-09-05 2018 2021
## 17262 2018-08-08 2020-12-30 2018 2020
## 17263 2018-09-11 2021-09-10 2018 2021
## 17264 2018-08-31 2021-08-30 2018 2021
## 17265 2018-07-31 2021-07-30 2018 2021
## 17266 2017-10-22 2020-10-21 2017 2020
## 17267 2018-09-19 2021-09-18 2018 2021
## 17268 2018-06-30 2021-06-29 2018 2021
## 17269 2018-04-29 2021-04-28 2018 2021
## 17270 2018-01-31 2021-01-30 2018 2021
## 17271 2018-03-13 2021-03-12 2018 2021
## 17272 2018-08-15 2021-08-14 2018 2021
## 17273 2018-10-14 2021-10-13 2018 2021
## 17274 2018-04-29 2021-04-28 2018 2021
## 17275 2018-05-31 2021-05-30 2018 2021
## 17276 2018-04-29 2021-04-28 2018 2021
## 17277 2018-08-20 2021-08-19 2018 2021
## 17278 2018-07-04 2021-07-03 2018 2021
## 17279 2018-09-28 2021-09-27 2018 2021
## 17280 2018-04-29 2021-04-28 2018 2021
## 17281 2018-08-31 2021-07-29 2018 2021
## 17282 2018-08-06 2021-08-06 2018 2021
## 17283 2018-07-31 2021-07-29 2018 2021
## 17284 2018-09-09 2021-09-08 2018 2021
## 17285 2018-03-03 2021-03-02 2018 2021
## 17286 2018-05-28 2021-05-28 2018 2021
## 17287 2017-12-12 2020-11-30 2017 2020
## 17288 2018-02-09 2021-02-08 2018 2021
## 17289 2018-09-06 2021-09-05 2018 2021
## 17290 2018-09-09 2021-09-09 2018 2021
## 17291 2018-07-29 2021-07-28 2018 2021
## 17292 2018-09-14 2021-09-14 2018 2021
## 17293 2019-03-11 2020-03-10 2019 2020
## 17294 2018-09-02 2021-09-01 2018 2021
## 17295 2018-09-19 2020-09-18 2018 2020
## 17296 2017-09-26 2020-09-25 2017 2020
## 17297 2018-06-30 2021-06-29 2018 2021
## 17298 2018-07-31 2021-07-30 2018 2021
## 17299 2018-04-18 2021-04-17 2018 2021
## 17300 2017-11-30 2020-11-29 2017 2020
## 17301 2018-08-04 2021-08-04 2018 2021
## 17302 2018-05-07 2021-05-07 2018 2021
## 17303 2018-08-24 2021-08-23 2018 2021
## 17304 2018-09-13 2021-09-12 2018 2021
## 17305 2018-09-09 2021-09-08 2018 2021
## 17306 2018-08-12 2021-08-11 2018 2021
## 17307 2018-05-27 2021-05-27 2018 2021
## 17308 2018-05-21 2020-11-26 2018 2020
## 17309 2018-09-04 2021-09-04 2018 2021
## 17310 2018-08-06 2020-12-30 2018 2020
## 17311 2018-09-30 2021-09-29 2018 2021
## 17312 2018-05-28 2021-05-28 2018 2021
## 17313 2018-09-10 2021-09-09 2018 2021
## 17314 2018-09-28 2020-10-17 2018 2020
## 17315 2018-05-17 2021-05-16 2018 2021
## 17316 2018-09-10 2021-09-10 2018 2021
## 17317 2018-08-31 2021-08-31 2018 2021
## 17318 2018-07-22 2021-07-21 2018 2021
## 17319 2017-11-22 2020-11-22 2017 2020
## 17320 2018-08-27 2021-08-26 2018 2021
## 17321 2018-07-24 2021-07-23 2018 2021
## 17322 2018-09-09 2021-09-08 2018 2021
## 17323 2018-07-28 2021-07-27 2018 2021
## 17324 2018-08-29 2021-08-28 2018 2021
## 17325 2018-01-07 2021-01-06 2018 2021
## 17326 2017-10-22 2020-10-21 2017 2020
## 17327 2018-08-26 2021-08-25 2018 2021
## 17328 2018-07-28 2021-07-27 2018 2021
## 17329 2018-04-08 2019-12-30 2018 2019
## 17330 2018-12-25 2021-12-24 2018 2021
## 17331 2018-08-22 2021-08-21 2018 2021
## 17332 2018-07-05 2021-07-05 2018 2021
## 17333 2018-04-01 2021-03-31 2018 2021
## 17334 2017-10-24 2020-10-24 2017 2020
## 17335 2018-09-07 2021-09-06 2018 2021
## 17336 2018-07-04 2021-07-04 2018 2021
## 17337 2018-09-12 2021-09-11 2018 2021
## 17338 2018-03-31 2021-03-30 2018 2021
## 17339 2018-09-12 2021-09-12 2018 2021
## 17340 2019-01-01 2022-01-01 2019 2022
## 17341 2018-08-19 2021-08-18 2018 2021
## 17342 2018-11-09 2021-11-08 2018 2021
## 17343 2018-08-24 2021-08-23 2018 2021
## 17344 2018-09-13 2021-09-13 2018 2021
## 17345 2018-09-30 2021-09-29 2018 2021
## 17346 2018-09-06 2021-09-06 2018 2021
## 17347 2018-08-31 2021-08-30 2018 2021
## 17348 2018-09-05 2021-09-04 2018 2021
## 17349 2018-12-30 2021-12-29 2018 2021
## 17350 2018-08-10 2021-08-09 2018 2021
## 17351 2018-03-01 2021-03-01 2018 2021
## 17352 2017-10-15 2020-10-14 2017 2020
## 17353 2018-05-02 2021-05-01 2018 2021
## 17354 2018-09-30 2021-09-29 2018 2021
## 17355 2018-09-11 2021-09-11 2018 2021
## 17356 2018-09-09 2021-09-09 2018 2021
## 17357 2018-09-30 2019-02-21 2018 2019
## 17358 2018-06-03 2021-06-02 2018 2021
## 17359 2018-08-31 2019-08-30 2018 2019
## 17360 2018-09-02 2021-09-01 2018 2021
## 17361 2018-02-25 2021-02-24 2018 2021
## 17362 2018-08-30 2021-08-30 2018 2021
## 17363 2018-01-28 2021-01-28 2018 2021
## 17364 2018-09-06 2021-09-05 2018 2021
## 17365 2018-09-03 2021-09-02 2018 2021
## 17366 2018-09-20 2021-09-19 2018 2021
## 17367 2018-01-08 2021-01-07 2018 2021
## 17368 2017-12-07 2020-12-06 2017 2020
## 17369 2018-06-30 2021-06-29 2018 2021
## 17370 2018-08-08 2021-08-08 2018 2021
## 17371 2018-09-04 2021-09-03 2018 2021
## 17372 2018-03-04 2021-03-03 2018 2021
## 17373 2018-09-02 2021-09-02 2018 2021
## 17374 2018-07-19 2021-07-19 2018 2021
## 17375 2018-06-24 2021-06-23 2018 2021
## 17376 2018-08-31 2021-08-31 2018 2021
## 17377 2018-03-05 2021-03-05 2018 2021
## 17378 2018-07-19 2021-07-18 2018 2021
## 17379 2018-08-28 2021-08-27 2018 2021
## 17380 2018-08-25 2021-08-25 2018 2021
## 17381 2018-07-01 2021-07-01 2018 2021
## 17382 2018-09-30 2021-09-29 2018 2021
## 17383 2018-09-30 2021-09-30 2018 2021
## 17384 2018-08-26 2021-08-25 2018 2021
## 17385 2018-07-26 2021-07-25 2018 2021
## 17386 2018-08-19 2021-08-18 2018 2021
## 17387 2018-04-22 2021-04-19 2018 2021
## 17388 2017-10-22 2020-09-14 2017 2020
## 17389 2018-09-07 2021-09-07 2018 2021
## 17390 2017-12-20 2020-12-20 2017 2020
## 17391 2018-09-24 2021-09-24 2018 2021
## 17392 2018-07-26 2021-07-26 2018 2021
## 17393 2018-08-30 2021-08-29 2018 2021
## 17394 2018-08-28 2021-08-27 2018 2021
## 17395 2018-02-20 2021-02-19 2018 2021
## 17396 2018-07-25 2020-12-30 2018 2020
## 17397 2018-09-27 2021-09-27 2018 2021
## 17398 2018-05-06 2021-05-05 2018 2021
## 17399 2018-06-14 2021-06-14 2018 2021
## 17400 2018-09-13 2021-09-12 2018 2021
## 17401 2018-02-28 2021-02-28 2018 2021
## 17402 2018-08-19 2021-08-19 2018 2021
## 17403 2018-09-02 2021-09-01 2018 2021
## 17404 2018-09-11 2021-08-27 2018 2021
## 17405 2018-09-04 2021-09-01 2018 2021
## 17406 2018-09-13 2021-09-12 2018 2021
## 17407 2018-08-20 2021-08-19 2018 2021
## 17408 2018-08-31 2021-08-30 2018 2021
## 17409 2018-02-26 2021-02-25 2018 2021
## 17410 2018-09-30 2021-09-29 2018 2021
## 17411 2018-08-06 2021-08-05 2018 2021
## 17412 2018-07-22 2021-07-19 2018 2021
## 17413 2018-03-13 2021-03-12 2018 2021
## 17414 2018-09-13 2021-09-12 2018 2021
## 17415 2018-06-03 2021-06-03 2018 2021
## 17416 2018-03-29 2021-03-29 2018 2021
## 17417 2017-11-09 2020-11-09 2017 2020
## 17418 2018-07-25 2021-07-24 2018 2021
## 17419 2018-04-11 2021-04-10 2018 2021
## 17420 2017-12-03 2020-12-02 2017 2020
## 17421 2018-07-01 2021-06-30 2018 2021
## 17422 2018-01-21 2021-01-20 2018 2021
## 17423 2018-08-04 2021-08-03 2018 2021
## 17424 2018-09-03 2021-09-02 2018 2021
## 17425 2018-07-16 2021-07-15 2018 2021
## 17426 2018-01-04 2021-01-03 2018 2021
## 17427 2018-02-01 2021-01-31 2018 2021
## 17428 2017-11-30 2020-11-29 2017 2020
## 17429 2018-06-11 2021-06-11 2018 2021
## 17430 2018-07-15 2021-07-15 2018 2021
## 17431 2018-05-13 2021-05-12 2018 2021
## 17432 2017-10-29 2020-10-28 2017 2020
## 17433 2018-08-08 2021-08-07 2018 2021
## 17434 2018-09-18 2021-09-17 2018 2021
## 17435 2018-07-08 2021-07-08 2018 2021
## 17436 2018-01-10 2021-01-09 2018 2021
## 17437 2018-09-12 2021-09-12 2018 2021
## 17438 2018-02-25 2021-02-24 2018 2021
## 17439 2018-03-04 2021-03-03 2018 2021
## 17440 2018-08-13 2021-08-12 2018 2021
## 17441 2018-04-30 2021-04-29 2018 2021
## 17442 2018-08-30 2021-08-29 2018 2021
## 17443 2018-09-02 2021-09-02 2018 2021
## 17444 2018-07-24 2021-07-24 2018 2021
## 17445 2017-11-19 2018-09-29 2017 2018
## 17446 2018-08-15 2021-08-14 2018 2021
## 17447 2018-08-31 2021-08-31 2018 2021
## 17448 2017-12-21 2020-12-20 2017 2020
## 17449 2018-08-12 2021-08-11 2018 2021
## 17450 2018-05-08 2021-05-07 2018 2021
## 17451 2018-09-19 2021-09-18 2018 2021
## 17452 2019-01-31 2022-01-30 2019 2022
## 17453 2018-07-31 2021-07-30 2018 2021
## 17454 2018-08-31 2021-08-29 2018 2021
## 17455 2018-04-14 2021-04-14 2018 2021
## 17456 2018-06-30 2021-06-29 2018 2021
## 17457 2018-07-30 2019-12-31 2018 2019
## 17458 2018-09-13 2021-09-12 2018 2021
## 17459 2017-10-31 2020-10-31 2017 2020
## 17460 2018-08-22 2021-08-21 2018 2021
## 17461 2018-08-23 2021-08-22 2018 2021
## 17462 2018-08-30 2021-08-29 2018 2021
## 17463 2018-04-24 2021-04-23 2018 2021
## 17464 2018-08-31 2021-08-30 2018 2021
## 17465 2018-09-23 2021-09-22 2018 2021
## 17466 2018-04-17 2021-04-16 2018 2021
## 17467 2018-04-14 2021-04-13 2018 2021
## 17468 2018-08-12 2021-08-12 2018 2021
## 17469 2018-08-25 2021-08-24 2018 2021
## 17470 2018-10-01 2021-10-01 2018 2021
## 17471 2018-02-04 2021-02-03 2018 2021
## 17472 2018-09-15 2021-09-14 2018 2021
## 17473 2018-09-06 2021-09-06 2018 2021
## 17474 2018-02-25 2021-02-25 2018 2021
## 17475 2018-04-15 2021-04-14 2018 2021
## 17476 2017-11-30 2020-11-30 2017 2020
## 17477 2018-03-27 2021-03-26 2018 2021
## 17478 2018-01-21 2021-01-21 2018 2021
## 17479 2018-04-15 2021-04-15 2018 2021
## 17480 2018-08-31 2021-08-30 2018 2021
## 17481 2017-12-14 2020-12-14 2017 2020
## 17482 2018-08-21 2021-08-20 2018 2021
## 17483 2018-02-08 2019-02-07 2018 2019
## 17484 2017-11-24 2020-11-23 2017 2020
## 17485 2018-09-01 2021-08-31 2018 2021
## 17486 2018-07-31 2021-07-30 2018 2021
## 17487 2018-04-29 2021-04-26 2018 2021
## 17488 2018-01-02 2021-01-01 2018 2021
## 17489 2018-09-19 2021-09-18 2018 2021
## 17490 2018-09-17 2021-09-17 2018 2021
## 17491 2018-08-27 2021-08-27 2018 2021
## 17492 2018-08-31 2021-08-31 2018 2021
## 17493 2018-09-24 2021-09-24 2018 2021
## 17494 2018-05-08 2021-05-07 2018 2021
## 17495 2018-08-31 2021-08-30 2018 2021
## 17496 2018-09-12 2021-09-11 2018 2021
## 17497 2017-10-31 2018-07-05 2017 2018
## 17498 2018-09-06 2021-09-06 2018 2021
## 17499 2018-01-02 2021-01-01 2018 2021
## 17500 2018-10-07 2021-10-06 2018 2021
## 17501 2018-09-09 2021-09-08 2018 2021
## 17502 2018-08-26 2021-08-25 2018 2021
## 17503 2017-11-14 2020-11-13 2017 2020
## 17504 2018-01-31 2021-01-31 2018 2021
## 17505 2018-09-11 2021-09-10 2018 2021
## 17506 2018-01-07 2021-01-06 2018 2021
## 17507 2018-04-24 2021-04-23 2018 2021
## 17508 2018-08-30 2021-08-29 2018 2021
## 17509 2018-06-21 2021-06-20 2018 2021
## 17510 2018-08-05 2021-08-02 2018 2021
## 17511 2018-08-02 2021-08-02 2018 2021
## 17512 2018-08-08 2021-08-07 2018 2021
## 17513 2018-02-19 2021-02-19 2018 2021
## 17514 2018-06-14 2021-06-13 2018 2021
## 17515 2018-03-23 2021-03-20 2018 2021
## 17516 2018-06-10 2021-06-09 2018 2021
## 17517 2018-09-11 2021-09-11 2018 2021
## 17518 2018-09-21 2021-09-20 2018 2021
## 17519 2018-04-28 2021-04-27 2018 2021
## 17520 2018-09-05 2021-09-04 2018 2021
## 17521 2018-05-22 2021-05-21 2018 2021
## 17522 2018-08-31 2021-08-30 2018 2021
## 17523 2018-08-20 2021-08-19 2018 2021
## 17524 2018-07-27 2021-07-26 2018 2021
## 17525 2018-08-09 2021-08-09 2018 2021
## 17526 2018-09-06 2021-09-05 2018 2021
## 17527 2018-08-16 2021-08-15 2018 2021
## 17528 2018-10-16 2021-10-15 2018 2021
## 17529 2018-09-09 2021-09-08 2018 2021
## 17530 2018-03-18 2021-03-17 2018 2021
## 17531 2018-09-14 2021-09-14 2018 2021
## 17532 2018-09-15 2021-09-14 2018 2021
## 17533 2018-01-01 2020-12-31 2018 2020
## 17534 2018-08-29 2021-08-29 2018 2021
## 17535 2017-10-19 2018-06-29 2017 2018
## 17536 2018-10-29 2021-10-29 2018 2021
## 17537 2018-03-19 2021-03-14 2018 2021
## 17538 2018-09-14 2021-09-14 2018 2021
## 17539 2018-07-31 2021-07-31 2018 2021
## 17540 2018-09-29 2021-09-28 2018 2021
## 17541 2018-08-31 2021-08-30 2018 2021
## 17542 2018-05-13 2021-05-12 2018 2021
## 17543 2018-03-05 2021-03-04 2018 2021
## 17544 2018-08-05 2021-08-04 2018 2021
## 17545 2018-09-13 2021-09-13 2018 2021
## 17546 2018-08-05 2021-08-05 2018 2021
## 17547 2018-01-01 2020-12-31 2018 2020
## 17548 2017-10-31 2020-10-31 2017 2020
## 17549 2018-09-17 2021-09-17 2018 2021
## 17550 2018-09-05 2021-09-04 2018 2021
## 17551 2018-09-11 2021-09-10 2018 2021
## 17552 2018-06-30 2020-06-29 2018 2020
## 17553 2018-06-21 2021-06-21 2018 2021
## 17554 2019-02-12 2022-02-11 2019 2022
## 17555 2017-10-29 2020-10-28 2017 2020
## 17556 2018-06-30 2021-06-30 2018 2021
## 17557 2018-06-10 2021-06-09 2018 2021
## 17558 2018-05-02 2021-05-01 2018 2021
## 17559 2018-09-07 2021-09-06 2018 2021
## 17560 2018-12-12 2021-12-11 2018 2021
## 17561 2018-08-17 2021-08-16 2018 2021
## 17562 2018-08-14 2021-08-14 2018 2021
## 17563 2018-03-31 2021-03-31 2018 2021
## 17564 2018-02-18 2021-02-17 2018 2021
## 17565 2018-07-01 2021-06-30 2018 2021
## 17566 2018-06-30 2021-06-29 2018 2021
## 17567 2018-05-20 2021-05-20 2018 2021
## 17568 2018-05-13 2021-05-12 2018 2021
## 17569 2018-08-31 2021-08-31 2018 2021
## 17570 2018-06-14 2021-06-14 2018 2021
## 17571 2018-07-31 2021-07-30 2018 2021
## 17572 2018-12-30 2021-12-29 2018 2021
## 17573 2018-05-21 2021-05-21 2018 2021
## 17574 2017-12-02 2020-11-30 2017 2020
## 17575 2018-09-09 2021-09-08 2018 2021
## 17576 2018-09-03 2021-09-02 2018 2021
## 17577 2018-09-09 2021-09-09 2018 2021
## 17578 2018-09-13 2021-09-12 2018 2021
## 17579 2018-03-31 2021-03-30 2018 2021
## 17580 2018-07-01 2021-06-30 2018 2021
## 17581 2018-11-05 2021-11-04 2018 2021
## 17582 2018-02-04 2021-02-03 2018 2021
## 17583 2017-12-21 2020-12-20 2017 2020
## 17584 2018-09-06 2021-09-05 2018 2021
## 17585 2018-12-13 2021-12-12 2018 2021
## 17586 2017-10-29 2020-10-29 2017 2020
## 17587 2018-09-19 2021-09-18 2018 2021
## 17588 2018-05-21 2021-05-20 2018 2021
## 17589 2018-04-30 2021-04-30 2018 2021
## 17590 2018-09-17 2021-09-16 2018 2021
## 17591 2018-07-25 2021-07-24 2018 2021
## 17592 2018-07-01 2019-04-29 2018 2019
## 17593 2018-09-06 2021-09-06 2018 2021
## 17594 2018-09-17 2021-09-16 2018 2021
## 17595 2018-08-08 2021-08-07 2018 2021
## 17596 2018-09-29 2021-09-28 2018 2021
## 17597 2018-01-28 2021-01-28 2018 2021
## 17598 2019-02-21 2022-02-21 2019 2022
## 17599 2018-08-29 2021-08-28 2018 2021
## 17600 2018-07-31 2021-07-31 2018 2021
## 17601 2018-09-03 2021-09-02 2018 2021
## 17602 2018-02-28 2021-02-28 2018 2021
## 17603 2018-09-07 2021-09-06 2018 2021
## 17604 2017-12-28 2020-12-27 2017 2020
## 17605 2018-06-19 2021-06-18 2018 2021
## 17606 2018-02-19 2021-02-17 2018 2021
## 17607 2018-05-13 2019-05-12 2018 2019
## 17608 2018-09-11 2021-09-10 2018 2021
## 17609 2018-07-31 2021-07-30 2018 2021
## 17610 2018-08-01 2021-07-31 2018 2021
## 17611 2018-09-10 2021-09-09 2018 2021
## 17612 2018-05-18 2018-11-01 2018 2018
## 17613 2018-05-31 2021-05-31 2018 2021
## 17614 2017-12-14 2020-12-13 2017 2020
## 17615 2018-08-08 2021-08-07 2018 2021
## 17616 2018-09-01 2021-08-31 2018 2021
## 17617 2018-03-22 2021-03-21 2018 2021
## 17618 2018-08-02 2021-08-02 2018 2021
## 17619 2018-08-31 2021-08-30 2018 2021
## 17620 2018-09-19 2021-09-19 2018 2021
## 17621 2018-07-20 2021-07-19 2018 2021
## 17622 2018-04-12 2021-04-09 2018 2021
## 17623 2018-09-09 2021-09-09 2018 2021
## 17624 2018-10-17 2021-10-16 2018 2021
## 17625 2018-08-09 2021-08-09 2018 2021
## 17626 2018-06-30 2021-06-29 2018 2021
## 17627 2018-05-28 2019-01-31 2018 2019
## 17628 2018-08-14 2021-08-13 2018 2021
## 17629 2018-08-14 2021-08-13 2018 2021
## 17630 2018-01-28 2020-08-30 2018 2020
## 17631 2018-09-14 2020-09-13 2018 2020
## 17632 2018-10-31 2021-10-31 2018 2021
## 17633 2018-09-16 2021-09-15 2018 2021
## 17634 2018-04-18 2021-04-17 2018 2021
## 17635 2018-09-16 2020-09-15 2018 2020
## 17636 2018-09-14 2021-09-13 2018 2021
## 17637 2017-10-08 2020-10-07 2017 2020
## 17638 2018-08-14 2021-08-13 2018 2021
## 17639 2018-08-24 2021-08-23 2018 2021
## 17640 2018-03-11 2021-03-10 2018 2021
## 17641 2018-07-19 2021-07-18 2018 2021
## 17642 2018-09-30 2021-09-29 2018 2021
## 17643 2018-05-09 2021-05-08 2018 2021
## 17644 2018-09-14 2021-09-13 2018 2021
## 17645 2018-08-13 2021-08-12 2018 2021
## 17646 2017-11-14 2020-11-13 2017 2020
## 17647 2018-05-31 2021-05-30 2018 2021
## 17648 2018-06-30 2021-06-29 2018 2021
## 17649 2018-09-06 2021-09-05 2018 2021
## 17650 2018-06-30 2021-06-29 2018 2021
## 17651 2018-04-27 2021-04-27 2018 2021
## 17652 2018-08-30 2021-07-29 2018 2021
## 17653 2018-08-23 2021-08-22 2018 2021
## 17654 2018-06-30 2021-06-29 2018 2021
## 17655 2018-08-22 2021-08-21 2018 2021
## 17656 2018-05-01 2021-04-30 2018 2021
## 17657 2018-04-22 2021-04-22 2018 2021
## 17658 2018-08-07 2021-08-07 2018 2021
## 17659 2018-09-20 2021-09-19 2018 2021
## 17660 2017-10-15 2020-10-14 2017 2020
## 17661 2018-03-04 2021-03-03 2018 2021
## 17662 2018-06-30 2020-06-29 2018 2020
## 17663 2018-08-31 2021-08-30 2018 2021
## 17664 2018-08-04 2021-08-03 2018 2021
## 17665 2018-07-01 2021-06-28 2018 2021
## 17666 2018-09-19 2021-09-19 2018 2021
## 17667 2018-08-28 2021-08-28 2018 2021
## 17668 2018-08-19 2021-08-18 2018 2021
## 17669 2018-07-18 2021-07-17 2018 2021
## 17670 2018-03-18 2019-05-17 2018 2019
## 17671 2018-07-31 2021-07-30 2018 2021
## 17672 2017-11-03 2020-10-31 2017 2020
## 17673 2018-09-15 2021-09-15 2018 2021
## 17674 2018-08-01 2021-07-31 2018 2021
## 17675 2017-12-13 2020-12-13 2017 2020
## 17676 2018-09-13 2021-09-13 2018 2021
## 17677 2018-08-20 2021-08-19 2018 2021
## 17678 2017-10-09 2020-10-08 2017 2020
## 17679 2018-08-19 2021-08-18 2018 2021
## 17680 2018-01-02 2021-01-01 2018 2021
## 17681 2018-08-31 2021-08-30 2018 2021
## 17682 2018-04-22 2021-04-21 2018 2021
## 17683 2018-06-11 2021-06-10 2018 2021
## 17684 2018-09-11 2021-09-10 2018 2021
## 17685 2018-07-31 2021-07-30 2018 2021
## 17686 2018-01-31 2021-01-30 2018 2021
## 17687 2018-02-14 2021-02-13 2018 2021
## 17688 2018-05-01 2021-04-30 2018 2021
## 17689 2018-05-24 2021-05-24 2018 2021
## 17690 2018-05-06 2021-05-05 2018 2021
## 17691 2018-05-13 2021-05-12 2018 2021
## 17692 2018-12-24 2021-12-24 2018 2021
## 17693 2018-07-31 2021-07-30 2018 2021
## 17694 2019-02-11 2022-02-11 2019 2022
## 17695 2018-06-30 2021-06-29 2018 2021
## 17696 2018-05-21 2019-09-29 2018 2019
## 17697 2018-01-18 2021-01-17 2018 2021
## 17698 2018-06-14 2021-06-14 2018 2021
## 17699 2018-09-09 2021-09-08 2018 2021
## 17700 2018-01-18 2021-01-17 2018 2021
## 17701 2018-09-11 2021-09-10 2018 2021
## 17702 2018-08-31 2021-08-31 2018 2021
## 17703 2018-02-25 2021-02-25 2018 2021
## 17704 2018-09-30 2021-09-29 2018 2021
## 17705 2018-02-03 2021-02-03 2018 2021
## 17706 2018-07-03 2021-07-03 2018 2021
## 17707 2018-04-15 2021-04-14 2018 2021
## 17708 2018-05-14 2020-07-30 2018 2020
## 17709 2018-03-15 2021-03-14 2018 2021
## 17710 2018-04-08 2021-04-07 2018 2021
## 17711 2018-09-09 2021-09-08 2018 2021
## 17712 2018-09-06 2021-09-05 2018 2021
## 17713 2018-10-19 2021-10-18 2018 2021
## 17714 2018-08-31 2021-08-30 2018 2021
## 17715 2018-02-12 2021-02-12 2018 2021
## 17716 2018-07-31 2021-07-30 2018 2021
## 17717 2018-01-14 2021-01-13 2018 2021
## 17718 2018-08-20 2021-08-19 2018 2021
## 17719 2018-09-10 2021-09-09 2018 2021
## 17720 2018-03-11 2021-03-11 2018 2021
## 17721 2018-03-21 2021-02-19 2018 2021
## 17722 2018-10-14 2021-10-13 2018 2021
## 17723 2017-11-19 2020-09-14 2017 2020
## 17724 2018-11-19 2021-11-19 2018 2021
## 17725 2018-01-21 2021-01-20 2018 2021
## 17726 2018-09-25 2021-09-24 2018 2021
## 17727 2018-06-17 2021-06-16 2018 2021
## 17728 2018-07-01 2021-06-30 2018 2021
## 17729 2018-08-20 2021-08-19 2018 2021
## 17730 2018-12-04 2021-12-03 2018 2021
## 17731 2018-09-02 2021-09-01 2018 2021
## 17732 2018-08-31 2021-08-31 2018 2021
## 17733 2018-09-17 2021-09-17 2018 2021
## 17734 2018-12-31 2019-12-30 2018 2019
## 17735 2017-10-22 2020-10-21 2017 2020
## 17736 2018-03-18 2021-03-17 2018 2021
## 17737 2018-02-08 2021-02-08 2018 2021
## 17738 2018-06-04 2021-06-04 2018 2021
## 17739 2018-04-21 2021-04-21 2018 2021
## 17740 2018-08-29 2021-08-29 2018 2021
## 17741 2018-09-09 2021-09-08 2018 2021
## 17742 2018-05-14 2021-05-13 2018 2021
## 17743 2018-08-31 2021-08-31 2018 2021
## 17744 2018-09-01 2021-08-31 2018 2021
## 17745 2018-07-29 2021-07-28 2018 2021
## 17746 2018-08-03 2021-07-31 2018 2021
## 17747 2018-10-09 2021-10-08 2018 2021
## 17748 2017-11-09 2020-11-09 2017 2020
## 17749 2018-09-23 2021-09-22 2018 2021
## 17750 2018-08-23 2021-08-23 2018 2021
## 17751 2018-01-17 2021-01-17 2018 2021
## 17752 2017-10-30 2020-10-30 2017 2020
## 17753 2018-05-01 2020-12-29 2018 2020
## 17754 2018-07-31 2021-07-30 2018 2021
## 17755 2018-06-04 2021-06-01 2018 2021
## 17756 2018-02-28 2018-03-30 2018 2018
## 17757 2018-08-28 2021-08-27 2018 2021
## 17758 2018-04-30 2021-04-29 2018 2021
## 17759 2018-11-05 2021-11-04 2018 2021
## 17760 2018-04-09 2021-04-08 2018 2021
## 17761 2018-07-31 2021-07-30 2018 2021
## 17762 2018-03-06 2021-03-05 2018 2021
## 17763 2018-09-30 2021-09-29 2018 2021
## 17764 2018-09-29 2021-09-29 2018 2021
## 17765 2018-02-11 2021-02-10 2018 2021
## 17766 2018-06-18 2021-06-18 2018 2021
## 17767 2017-12-24 2020-12-24 2017 2020
## 17768 2017-11-14 2020-11-13 2017 2020
## 17769 2018-12-06 2021-12-05 2018 2021
## 17770 2018-04-08 2021-04-07 2018 2021
## 17771 2018-09-10 2021-09-09 2018 2021
## 17772 2018-08-23 2021-08-22 2018 2021
## 17773 2018-09-30 2021-09-29 2018 2021
## 17774 2018-09-09 2021-09-08 2018 2021
## 17775 2018-08-31 2021-08-30 2018 2021
## 17776 2017-10-09 2020-10-06 2017 2020
## 17777 2018-06-30 2021-06-30 2018 2021
## 17778 2018-08-17 2021-08-16 2018 2021
## 17779 2018-06-17 2018-06-29 2018 2018
## 17780 2018-08-07 2021-08-06 2018 2021
## 17781 2017-11-28 2020-11-25 2017 2020
## 17782 2018-07-30 2021-07-29 2018 2021
## 17783 2018-06-21 2021-06-20 2018 2021
## 17784 2018-09-18 2021-09-17 2018 2021
## 17785 2018-07-31 2021-07-30 2018 2021
## 17786 2018-07-08 2021-07-08 2018 2021
## 17787 2018-04-22 2021-04-22 2018 2021
## 17788 2018-06-08 2021-06-07 2018 2021
## 17789 2018-09-13 2021-09-13 2018 2021
## 17790 2018-07-23 2021-07-22 2018 2021
## 17791 2018-09-04 2021-09-03 2018 2021
## 17792 2018-04-23 2021-04-22 2018 2021
## 17793 2018-07-01 2021-06-30 2018 2021
## 17794 2018-03-18 2021-03-18 2018 2021
## 17795 2017-11-19 2019-08-30 2017 2019
## 17796 2017-11-21 2020-11-20 2017 2020
## 17797 2018-09-20 2021-09-19 2018 2021
## 17798 2018-05-06 2021-05-05 2018 2021
## 17799 2018-09-14 2021-09-13 2018 2021
## 17800 2018-08-25 2021-08-24 2018 2021
## 17801 2018-08-31 2021-08-30 2018 2021
## 17802 2018-06-07 2021-06-06 2018 2021
## 17803 2018-03-04 2021-03-03 2018 2021
## 17804 2017-11-30 2020-10-14 2017 2020
## 17805 2017-11-12 2020-11-11 2017 2020
## 17806 2019-01-21 2022-01-20 2019 2022
## 17807 2018-06-03 2021-06-02 2018 2021
## 17808 2018-09-11 2021-09-09 2018 2021
## 17809 2017-11-29 2020-11-29 2017 2020
## 17810 2018-09-03 2021-09-03 2018 2021
## 17811 2018-01-25 2021-01-24 2018 2021
## 17812 2017-10-02 2020-10-01 2017 2020
## 17813 2018-08-08 2021-08-07 2018 2021
## 17814 2018-08-08 2021-08-08 2018 2021
## 17815 2018-06-14 2021-06-14 2018 2021
## 17816 2018-09-06 2021-09-05 2018 2021
## 17817 2018-09-29 2021-09-29 2018 2021
## 17818 2018-04-02 2021-04-02 2018 2021
## 17819 2018-05-20 2021-05-19 2018 2021
## 17820 2018-08-24 2021-08-24 2018 2021
## 17821 2018-06-30 2021-06-29 2018 2021
## 17822 2018-08-26 2021-08-25 2018 2021
## 17823 2018-03-25 2021-03-25 2018 2021
## 17824 2018-04-01 2021-03-31 2018 2021
## 17825 2018-03-17 2021-03-16 2018 2021
## 17826 2018-02-25 2021-02-25 2018 2021
## 17827 2017-11-08 2020-11-06 2017 2020
## 17828 2018-07-24 2021-07-23 2018 2021
## 17829 2018-04-22 2021-04-22 2018 2021
## 17830 2018-08-01 2021-07-31 2018 2021
## 17831 2018-08-25 2021-08-24 2018 2021
## 17832 2018-04-03 2021-04-02 2018 2021
## 17833 2018-01-27 2021-01-26 2018 2021
## 17834 2018-09-06 2020-09-05 2018 2020
## 17835 2018-06-30 2021-06-29 2018 2021
## 17836 2018-03-15 2021-03-14 2018 2021
## 17837 2017-09-26 2020-09-25 2017 2020
## 17838 2018-06-14 2021-06-14 2018 2021
## 17839 2018-09-14 2021-09-13 2018 2021
## 17840 2018-09-09 2021-09-09 2018 2021
## 17841 2018-08-05 2021-08-04 2018 2021
## 17842 2018-07-26 2020-08-11 2018 2020
## 17843 2018-06-18 2021-06-17 2018 2021
## 17844 2018-07-29 2021-07-28 2018 2021
## 17845 2018-08-04 2021-08-04 2018 2021
## 17846 2018-09-19 2021-09-18 2018 2021
## 17847 2018-06-30 2019-12-04 2018 2019
## 17848 2018-08-27 2021-08-26 2018 2021
## 17849 2018-08-11 2021-08-11 2018 2021
## 17850 2018-09-06 2021-09-05 2018 2021
## 17851 2018-05-08 2021-05-08 2018 2021
## 17852 2018-12-31 2021-12-30 2018 2021
## 17853 2018-03-31 2021-03-30 2018 2021
## 17854 2017-11-13 2020-11-13 2017 2020
## 17855 2018-08-14 2019-08-10 2018 2019
## 17856 2018-05-31 2021-05-30 2018 2021
## 17857 2018-07-15 2020-08-23 2018 2020
## 17858 2017-12-21 2020-12-21 2017 2020
## 17859 2018-06-21 2021-06-20 2018 2021
## 17860 2018-04-08 2021-04-08 2018 2021
## 17861 2018-09-07 2021-09-07 2018 2021
## 17862 2018-09-09 2021-09-09 2018 2021
## 17863 2018-03-12 2021-03-12 2018 2021
## 17864 2018-07-08 2021-07-07 2018 2021
## 17865 2018-04-08 2021-04-07 2018 2021
## 17866 2018-04-08 2020-12-30 2018 2020
## 17867 2018-08-09 2021-08-08 2018 2021
## 17868 2018-09-14 2021-09-14 2018 2021
## 17869 2018-09-13 2021-09-12 2018 2021
## 17870 2018-08-14 2021-08-13 2018 2021
## 17871 2018-12-23 2021-12-22 2018 2021
## 17872 2018-06-14 2021-06-14 2018 2021
## 17873 2018-07-19 2021-07-18 2018 2021
## 17874 2018-03-25 2021-03-25 2018 2021
## 17875 2018-05-29 2021-05-29 2018 2021
## 17876 2018-04-30 2021-04-27 2018 2021
## 17877 2018-08-27 2021-08-26 2018 2021
## 17878 2018-09-01 2021-08-31 2018 2021
## 17879 2018-03-11 2021-03-10 2018 2021
## 17880 2018-02-20 2021-02-19 2018 2021
## 17881 2018-09-23 2021-09-22 2018 2021
## 17882 2017-10-14 2020-10-14 2017 2020
## 17883 2018-08-30 2021-08-29 2018 2021
## 17884 2019-03-02 2022-03-01 2019 2022
## 17885 2018-03-31 2021-03-30 2018 2021
## 17886 2018-09-25 2021-09-24 2018 2021
## 17887 2018-09-24 2021-09-23 2018 2021
## 17888 2018-08-31 2021-08-30 2018 2021
## 17889 2018-09-28 2021-09-27 2018 2021
## 17890 2017-12-26 2020-12-25 2017 2020
## 17891 2018-08-31 2021-08-31 2018 2021
## 17892 2018-07-18 2021-07-17 2018 2021
## 17893 2017-12-31 2020-12-30 2017 2020
## 17894 2018-09-26 2021-09-26 2018 2021
## 17895 2018-09-13 2021-09-12 2018 2021
## 17896 2018-09-10 2021-09-09 2018 2021
## 17897 2019-01-08 2022-01-07 2019 2022
## 17898 2018-09-05 2021-09-05 2018 2021
## 17899 2018-09-15 2021-09-14 2018 2021
## 17900 2018-08-31 2021-08-29 2018 2021
## 17901 2017-12-10 2020-12-09 2017 2020
## 17902 2018-08-21 2021-08-20 2018 2021
## 17903 2018-09-13 2021-09-12 2018 2021
## 17904 2018-07-07 2021-07-04 2018 2021
## 17905 2018-04-14 2021-04-13 2018 2021
## 17906 2018-03-14 2019-03-13 2018 2019
## 17907 2018-09-12 2021-09-11 2018 2021
## 17908 2018-08-15 2021-08-15 2018 2021
## 17909 2018-05-31 2021-05-30 2018 2021
## 17910 2018-09-30 2021-09-29 2018 2021
## 17911 2018-05-31 2021-05-31 2018 2021
## 17912 2018-06-30 2021-06-27 2018 2021
## 17913 2018-08-31 2021-08-30 2018 2021
## 17914 2018-03-13 2021-03-12 2018 2021
## 17915 2018-01-14 2021-01-13 2018 2021
## 17916 2017-11-14 2020-11-13 2017 2020
## 17917 2018-05-31 2019-05-30 2018 2019
## 17918 2018-06-26 2021-06-25 2018 2021
## 17919 2018-07-31 2021-07-31 2018 2021
## 17920 2018-10-13 2021-10-12 2018 2021
## 17921 2018-09-03 2021-09-02 2018 2021
## 17922 2018-01-29 2020-01-28 2018 2020
## 17923 2018-07-22 2021-07-21 2018 2021
## 17924 2018-04-09 2021-04-08 2018 2021
## 17925 2018-08-29 2021-08-29 2018 2021
## 17926 2018-09-06 2021-09-06 2018 2021
## 17927 2018-01-04 2021-01-03 2018 2021
## 17928 2018-09-06 2021-09-05 2018 2021
## 17929 2018-07-08 2021-07-07 2018 2021
## 17930 2018-04-23 2021-04-23 2018 2021
## 17931 2018-08-31 2021-08-30 2018 2021
## 17932 2018-09-18 2021-09-17 2018 2021
## 17933 2018-08-19 2021-08-18 2018 2021
## 17934 2018-08-23 2021-08-20 2018 2021
## 17935 2018-08-21 2021-08-20 2018 2021
## 17936 2018-07-08 2021-07-07 2018 2021
## 17937 2018-12-10 2021-12-09 2018 2021
## 17938 2018-09-30 2021-09-30 2018 2021
## 17939 2018-04-03 2021-04-02 2018 2021
## 17940 2018-06-20 2021-06-19 2018 2021
## 17941 2018-09-01 2021-08-31 2018 2021
## 17942 2018-08-07 2020-09-08 2018 2020
## 17943 2018-06-17 2021-06-16 2018 2021
## 17944 2018-07-03 2021-07-02 2018 2021
## 17945 2018-12-31 2021-12-31 2018 2021
## 17946 2018-06-28 2021-06-28 2018 2021
## 17947 2018-06-30 2021-06-29 2018 2021
## 17948 2018-11-16 2019-11-15 2018 2019
## 17949 2018-09-15 2021-09-14 2018 2021
## 17950 2018-04-18 2021-04-17 2018 2021
## 17951 2018-08-31 2021-08-31 2018 2021
## 17952 2018-11-15 2021-11-14 2018 2021
## 17953 2018-07-15 2021-07-14 2018 2021
## 17954 2018-03-06 2021-03-06 2018 2021
## 17955 2018-11-08 2021-11-07 2018 2021
## 17956 2018-08-14 2021-08-13 2018 2021
## 17957 2018-09-08 2021-09-08 2018 2021
## 17958 2018-09-18 2021-09-18 2018 2021
## 17959 2018-07-31 2021-07-31 2018 2021
## 17960 2018-09-12 2021-09-11 2018 2021
## 17961 2018-03-29 2021-03-28 2018 2021
## 17962 2018-03-23 2021-03-22 2018 2021
## 17963 2018-06-18 2021-06-15 2018 2021
## 17964 2018-08-31 2021-08-29 2018 2021
## 17965 2018-10-02 2021-10-01 2018 2021
## 17966 2018-08-15 2021-08-14 2018 2021
## 17967 2018-08-31 2021-08-31 2018 2021
## 17968 2018-09-02 2021-09-01 2018 2021
## 17969 2019-02-18 2022-02-17 2019 2022
## 17970 2018-09-11 2021-09-11 2018 2021
## 17971 2018-05-27 2021-05-27 2018 2021
## 17972 2017-11-30 2020-11-27 2017 2020
## 17973 2018-09-09 2021-09-08 2018 2021
## 17974 2018-11-08 2021-09-29 2018 2021
## 17975 2018-08-31 2021-08-30 2018 2021
## 17976 2018-09-07 2021-09-06 2018 2021
## 17977 2018-03-01 2021-02-28 2018 2021
## 17978 2018-05-20 2021-05-19 2018 2021
## 17979 2018-09-14 2021-09-13 2018 2021
## 17980 2018-06-04 2021-06-03 2018 2021
## 17981 2018-05-29 2021-05-28 2018 2021
## 17982 2018-08-14 2021-08-13 2018 2021
## 17983 2017-11-29 2020-11-28 2017 2020
## 17984 2018-09-09 2021-09-09 2018 2021
## 17985 2018-09-20 2021-09-19 2018 2021
## 17986 2018-05-20 2021-05-19 2018 2021
## 17987 2018-07-16 2021-07-15 2018 2021
## 17988 2018-07-24 2021-07-23 2018 2021
## 17989 2018-05-01 2021-04-30 2018 2021
## 17990 2018-04-10 2021-04-10 2018 2021
## 17991 2018-08-19 2021-08-18 2018 2021
## 17992 2018-08-01 2021-07-31 2018 2021
## 17993 2018-07-31 2021-07-31 2018 2021
## 17994 2018-09-01 2021-09-01 2018 2021
## 17995 2017-10-30 2020-10-29 2017 2020
## 17996 2018-08-12 2021-08-12 2018 2021
## 17997 2018-01-07 2021-01-06 2018 2021
## 17998 2018-02-18 2021-02-18 2018 2021
## 17999 2018-06-10 2021-06-10 2018 2021
## 18000 2018-12-05 2021-12-04 2018 2021
## 18001 2018-04-14 2021-04-13 2018 2021
## 18002 2019-01-16 2022-01-15 2019 2022
## 18003 2018-08-17 2021-08-16 2018 2021
## 18004 2018-07-29 2021-07-28 2018 2021
## 18005 2018-02-18 2020-05-13 2018 2020
## 18006 2018-01-15 2021-01-15 2018 2021
## 18007 2018-08-12 2020-07-30 2018 2020
## 18008 2018-09-08 2021-09-07 2018 2021
## 18009 2018-03-31 2021-03-30 2018 2021
## 18010 2017-10-22 2020-10-21 2017 2020
## 18011 2018-09-23 2021-09-22 2018 2021
## 18012 2018-09-09 2021-09-08 2018 2021
## 18013 2018-08-20 2021-08-19 2018 2021
## 18014 2018-09-09 2021-09-08 2018 2021
## 18015 2018-02-27 2021-02-27 2018 2021
## 18016 2018-05-06 2021-05-05 2018 2021
## 18017 2017-10-22 2019-04-12 2017 2019
## 18018 2018-03-19 2021-03-18 2018 2021
## 18019 2018-08-14 2021-08-14 2018 2021
## 18020 2018-09-19 2021-09-19 2018 2021
## 18021 2018-08-31 2021-08-30 2018 2021
## 18022 2018-06-07 2021-06-06 2018 2021
## 18023 2018-02-19 2021-02-18 2018 2021
## 18024 2018-08-23 2021-08-22 2018 2021
## 18025 2018-09-12 2020-09-29 2018 2020
## 18026 2018-02-09 2021-02-08 2018 2021
## 18027 2018-05-13 2021-05-12 2018 2021
## 18028 2018-09-30 2020-09-30 2018 2020
## 18029 2018-03-31 2020-09-17 2018 2020
## 18030 2018-08-14 2021-08-13 2018 2021
## 18031 2018-07-31 2021-07-31 2018 2021
## 18032 2018-09-11 2021-09-10 2018 2021
## 18033 2018-03-11 2021-03-11 2018 2021
## 18034 2018-09-17 2021-09-16 2018 2021
## 18035 2018-09-01 2021-08-31 2018 2021
## 18036 2018-01-28 2021-01-27 2018 2021
## 18037 2017-10-22 2020-10-21 2017 2020
## 18038 2018-04-01 2021-03-31 2018 2021
## 18039 2018-09-04 2021-09-03 2018 2021
## 18040 2018-08-25 2021-08-24 2018 2021
## 18041 2018-07-19 2021-07-18 2018 2021
## 18042 2018-08-19 2021-08-19 2018 2021
## 18043 2018-05-02 2021-05-01 2018 2021
## 18044 2018-09-22 2021-09-22 2018 2021
## 18045 2018-05-28 2021-05-28 2018 2021
## 18046 2018-03-18 2021-03-17 2018 2021
## 18047 2018-03-23 2021-03-23 2018 2021
## 18048 2018-07-04 2021-07-03 2018 2021
## 18049 2018-06-29 2021-06-28 2018 2021
## 18050 2017-12-28 2020-12-27 2017 2020
## 18051 2018-09-16 2021-09-15 2018 2021
## 18052 2017-12-28 2020-12-27 2017 2020
## 18053 2017-10-31 2020-10-30 2017 2020
## 18054 2017-10-22 2018-09-29 2017 2018
## 18055 2018-08-24 2021-08-24 2018 2021
## 18056 2018-08-19 2021-08-19 2018 2021
## 18057 2017-11-16 2020-11-15 2017 2020
## 18058 2018-09-22 2021-09-21 2018 2021
## 18059 2018-09-20 2021-09-20 2018 2021
## 18060 2018-05-01 2021-04-30 2018 2021
## 18061 2018-08-02 2021-08-01 2018 2021
## 18062 2017-11-21 2020-11-19 2017 2020
## 18063 2018-08-23 2021-08-22 2018 2021
## 18064 2018-09-04 2021-09-04 2018 2021
## 18065 2018-09-11 2021-09-10 2018 2021
## 18066 2017-10-29 2020-10-29 2017 2020
## 18067 2018-08-14 2021-08-13 2018 2021
## 18068 2018-08-31 2021-08-31 2018 2021
## 18069 2018-08-27 2021-08-26 2018 2021
## 18070 2018-08-09 2021-08-08 2018 2021
## 18071 2018-06-17 2021-06-17 2018 2021
## 18072 2018-08-31 2021-08-30 2018 2021
## 18073 2018-05-11 2021-05-10 2018 2021
## 18074 2018-08-20 2021-08-19 2018 2021
## 18075 2018-09-10 2021-09-09 2018 2021
## 18076 2018-07-11 2021-07-11 2018 2021
## 18077 2018-04-01 2021-03-31 2018 2021
## 18078 2018-03-25 2021-03-25 2018 2021
## 18079 2018-04-09 2021-04-08 2018 2021
## 18080 2018-09-18 2021-09-18 2018 2021
## 18081 2018-08-25 2021-08-24 2018 2021
## 18082 2018-02-06 2021-02-05 2018 2021
## 18083 2018-04-22 2021-04-21 2018 2021
## 18084 2018-08-31 2021-08-30 2018 2021
## 18085 2018-09-01 2021-08-31 2018 2021
## 18086 2018-09-10 2021-09-09 2018 2021
## 18087 2017-12-04 2020-12-03 2017 2020
## 18088 2018-07-31 2020-07-30 2018 2020
## 18089 2018-09-01 2021-08-31 2018 2021
## 18090 2018-05-31 2021-05-30 2018 2021
## 18091 2018-09-25 2021-09-24 2018 2021
## 18092 2018-05-12 2021-05-12 2018 2021
## 18093 2018-09-19 2021-09-18 2018 2021
## 18094 2018-09-13 2021-09-12 2018 2021
## 18095 2018-09-30 2021-08-27 2018 2021
## 18096 2018-03-25 2021-03-24 2018 2021
## 18097 2018-06-03 2021-05-07 2018 2021
## 18098 2018-09-10 2021-09-10 2018 2021
## 18099 2018-08-17 2021-08-17 2018 2021
## 18100 2018-05-27 2021-05-27 2018 2021
## 18101 2018-05-01 2021-04-30 2018 2021
## 18102 2018-04-18 2021-04-17 2018 2021
## 18103 2018-04-30 2021-04-29 2018 2021
## 18104 2018-09-14 2021-09-14 2018 2021
## 18105 2018-09-20 2021-09-20 2018 2021
## 18106 2018-09-13 2020-06-14 2018 2020
## 18107 2018-03-05 2019-08-09 2018 2019
## 18108 2018-04-22 2021-04-21 2018 2021
## 18109 2018-08-30 2021-08-29 2018 2021
## 18110 2017-11-29 2018-06-29 2017 2018
## 18111 2018-08-23 2021-08-22 2018 2021
## 18112 2018-07-01 2021-06-30 2018 2021
## 18113 2018-02-20 2021-02-19 2018 2021
## 18114 2018-08-21 2021-08-20 2018 2021
## 18115 2018-09-30 2021-09-29 2018 2021
## 18116 2018-11-30 2021-11-29 2018 2021
## 18117 2017-12-03 2020-12-02 2017 2020
## 18118 2018-07-26 2021-07-25 2018 2021
## 18119 2018-06-20 2021-06-19 2018 2021
## 18120 2018-03-11 2019-08-30 2018 2019
## 18121 2018-08-14 2021-08-13 2018 2021
## 18122 2017-11-14 2020-11-13 2017 2020
## 18123 2018-09-28 2021-09-28 2018 2021
## 18124 2018-09-09 2021-09-08 2018 2021
## 18125 2018-10-31 2021-10-30 2018 2021
## 18126 2018-07-01 2021-06-30 2018 2021
## 18127 2018-07-03 2021-07-02 2018 2021
## 18128 2018-07-23 2021-07-22 2018 2021
## 18129 2018-09-15 2021-09-14 2018 2021
## 18130 2018-03-31 2021-03-31 2018 2021
## 18131 2017-10-14 2020-10-14 2017 2020
## 18132 2018-06-17 2021-06-16 2018 2021
## 18133 2018-04-25 2021-04-24 2018 2021
## 18134 2018-01-07 2021-01-07 2018 2021
## 18135 2018-08-14 2021-08-14 2018 2021
## 18136 2018-09-07 2021-09-06 2018 2021
## 18137 2018-09-20 2021-09-19 2018 2021
## 18138 2018-04-15 2021-04-14 2018 2021
## 18139 2018-08-22 2021-08-22 2018 2021
## 18140 2018-09-20 2021-09-19 2018 2021
## 18141 2018-06-14 2021-06-14 2018 2021
## 18142 2018-09-08 2019-09-07 2018 2019
## 18143 2018-09-04 2021-09-04 2018 2021
## 18144 2018-05-10 2021-05-10 2018 2021
## 18145 2018-08-05 2021-08-04 2018 2021
## 18146 2018-09-15 2021-09-14 2018 2021
## 18147 2018-10-19 2021-10-18 2018 2021
## 18148 2018-07-31 2021-07-30 2018 2021
## 18149 2018-08-04 2021-08-04 2018 2021
## 18150 2017-11-09 2020-11-08 2017 2020
## 18151 2017-12-10 2020-12-09 2017 2020
## 18152 2018-04-06 2021-04-06 2018 2021
## 18153 2018-04-25 2021-04-24 2018 2021
## 18154 2017-11-20 2020-11-20 2017 2020
## 18155 2018-04-23 2021-04-22 2018 2021
## 18156 2018-09-19 2021-09-18 2018 2021
## 18157 2018-10-22 2021-10-14 2018 2021
## 18158 2018-08-14 2021-08-13 2018 2021
## 18159 2018-09-25 2021-09-24 2018 2021
## 18160 2018-07-27 2021-07-26 2018 2021
## 18161 2018-09-30 2021-09-29 2018 2021
## 18162 2018-05-09 2021-05-08 2018 2021
## 18163 2018-09-04 2021-09-03 2018 2021
## 18164 2018-09-03 2021-09-03 2018 2021
## 18165 2018-05-20 2021-05-19 2018 2021
## 18166 2018-03-11 2021-03-10 2018 2021
## 18167 2018-08-10 2021-08-09 2018 2021
## 18168 2018-05-31 2021-05-30 2018 2021
## 18169 2018-09-09 2021-09-09 2018 2021
## 18170 2018-09-27 2021-09-26 2018 2021
## 18171 2018-09-03 2021-09-03 2018 2021
## 18172 2018-05-22 2021-05-21 2018 2021
## 18173 2018-06-14 2018-12-10 2018 2018
## 18174 2018-11-01 2021-10-31 2018 2021
## 18175 2018-09-20 2021-09-16 2018 2021
## 18176 2018-08-10 2021-08-07 2018 2021
## 18177 2018-08-19 2021-08-18 2018 2021
## 18178 2018-09-10 2021-09-09 2018 2021
## 18179 2018-09-16 2021-09-15 2018 2021
## 18180 2018-03-22 2021-03-22 2018 2021
## 18181 2017-10-02 2020-10-02 2017 2020
## 18182 2018-06-30 2021-06-29 2018 2021
## 18183 2018-08-31 2021-08-31 2018 2021
## 18184 2017-10-31 2020-10-30 2017 2020
## 18185 2018-01-31 2021-01-30 2018 2021
## 18186 2018-06-12 2021-06-11 2018 2021
## 18187 2018-08-31 2021-08-30 2018 2021
## 18188 2018-07-01 2021-07-01 2018 2021
## 18189 2017-12-14 2020-12-13 2017 2020
## 18190 2018-09-14 2021-09-14 2018 2021
## 18191 2018-03-31 2021-03-30 2018 2021
## 18192 2018-02-25 2021-02-24 2018 2021
## 18193 2018-02-28 2021-02-27 2018 2021
## 18194 2018-07-31 2021-07-30 2018 2021
## 18195 2018-01-07 2021-01-04 2018 2021
## 18196 2018-08-04 2021-08-03 2018 2021
## 18197 2018-09-06 2021-09-05 2018 2021
## 18198 2018-01-21 2021-01-20 2018 2021
## 18199 2018-01-21 2021-01-20 2018 2021
## 18200 2018-06-01 2021-05-31 2018 2021
## 18201 2018-09-06 2021-09-05 2018 2021
## 18202 2018-09-19 2021-09-18 2018 2021
## 18203 2018-08-13 2020-12-30 2018 2020
## 18204 2018-09-06 2020-09-05 2018 2020
## 18205 2018-08-19 2021-08-19 2018 2021
## 18206 2018-05-21 2021-05-20 2018 2021
## 18207 2018-08-03 2021-07-31 2018 2021
## 18208 2018-07-29 2021-07-29 2018 2021
## 18209 2018-01-14 2021-01-13 2018 2021
## 18210 2018-04-30 2021-04-30 2018 2021
## 18211 2018-07-31 2021-07-30 2018 2021
## 18212 2018-08-29 2021-08-28 2018 2021
## 18213 2018-09-07 2021-09-06 2018 2021
## 18214 2018-07-22 2021-07-22 2018 2021
## 18215 2018-04-08 2021-04-05 2018 2021
## 18216 2018-08-31 2021-08-30 2018 2021
## 18217 2018-08-31 2021-08-31 2018 2021
## 18218 2018-08-13 2021-08-13 2018 2021
## 18219 2018-07-31 2020-08-08 2018 2020
## 18220 2018-09-01 2021-08-31 2018 2021
## 18221 2017-11-05 2020-11-04 2017 2020
## 18222 2018-09-18 2021-09-17 2018 2021
## 18223 2018-09-30 2021-08-23 2018 2021
## 18224 2018-08-11 2021-08-10 2018 2021
## 18225 2018-08-31 2021-08-30 2018 2021
## 18226 2018-07-09 2020-07-08 2018 2020
## 18227 2018-07-16 2021-07-15 2018 2021
## 18228 2018-08-19 2021-08-18 2018 2021
## 18229 2018-09-16 2021-09-16 2018 2021
## 18230 2018-01-01 2020-12-31 2018 2020
## 18231 2018-06-30 2021-06-29 2018 2021
## 18232 2018-09-03 2021-09-02 2018 2021
## 18233 2017-11-14 2020-11-14 2017 2020
## 18234 2018-06-17 2021-06-16 2018 2021
## 18235 2018-09-11 2021-09-11 2018 2021
## 18236 2018-06-14 2021-06-14 2018 2021
## 18237 2018-09-06 2021-09-05 2018 2021
## 18238 2018-07-22 2021-07-21 2018 2021
## 18239 2018-05-30 2021-05-27 2018 2021
## 18240 2018-09-14 2021-09-13 2018 2021
## 18241 2018-01-16 2021-01-15 2018 2021
## 18242 2018-08-31 2021-08-30 2018 2021
## 18243 2018-04-26 2021-04-25 2018 2021
## 18244 2018-09-09 2021-09-08 2018 2021
## 18245 2018-08-05 2021-08-05 2018 2021
## 18246 2018-08-31 2021-08-30 2018 2021
## 18247 2018-09-06 2021-09-05 2018 2021
## 18248 2018-08-11 2021-08-10 2018 2021
## 18249 2017-10-29 2020-10-28 2017 2020
## 18250 2018-08-31 2021-08-30 2018 2021
## 18251 2018-07-17 2021-07-16 2018 2021
## 18252 2018-08-05 2021-08-04 2018 2021
## 18253 2018-08-27 2021-08-26 2018 2021
## 18254 2018-01-31 2021-01-30 2018 2021
## 18255 2018-10-30 2021-10-30 2018 2021
## 18256 2018-08-06 2021-08-06 2018 2021
## 18257 2018-10-01 2021-09-30 2018 2021
## 18258 2018-05-31 2021-05-28 2018 2021
## 18259 2017-11-26 2020-08-30 2017 2020
## 18260 2018-01-30 2021-01-29 2018 2021
## 18261 2018-09-26 2021-09-25 2018 2021
## 18262 2017-10-25 2020-10-20 2017 2020
## 18263 2018-08-24 2021-08-24 2018 2021
## 18264 2018-09-03 2021-09-02 2018 2021
## 18265 2018-07-30 2021-07-29 2018 2021
## 18266 2018-03-31 2021-03-30 2018 2021
## 18267 2017-10-29 2018-10-28 2017 2018
## 18268 2018-09-07 2021-09-07 2018 2021
## 18269 2018-09-12 2021-09-11 2018 2021
## 18270 2018-04-03 2021-04-02 2018 2021
## 18271 2018-09-04 2021-09-03 2018 2021
## 18272 2018-11-11 2021-11-11 2018 2021
## 18273 2017-10-30 2020-10-30 2017 2020
## 18274 2017-10-22 2020-10-22 2017 2020
## 18275 2018-07-31 2021-07-30 2018 2021
## 18276 2018-02-01 2021-02-01 2018 2021
## 18277 2017-12-09 2020-12-06 2017 2020
## 18278 2018-08-05 2021-08-04 2018 2021
## 18279 2018-08-31 2021-08-30 2018 2021
## 18280 2018-09-12 2021-09-12 2018 2021
## 18281 2018-08-21 2021-08-21 2018 2021
## 18282 2018-09-01 2021-08-31 2018 2021
## 18283 2018-06-26 2021-06-25 2018 2021
## 18284 2018-05-29 2021-05-28 2018 2021
## 18285 2018-07-31 2021-07-31 2018 2021
## 18286 2018-01-07 2021-01-07 2018 2021
## 18287 2018-07-31 2021-07-31 2018 2021
## 18288 2018-07-31 2021-07-30 2018 2021
## 18289 2018-03-24 2021-03-23 2018 2021
## 18290 2017-09-26 2020-08-31 2017 2020
## 18291 2018-08-31 2021-08-30 2018 2021
## 18292 2018-06-30 2021-06-29 2018 2021
## 18293 2018-10-17 2021-10-17 2018 2021
## 18294 2018-07-01 2021-05-18 2018 2021
## 18295 2018-08-15 2021-08-14 2018 2021
## 18296 2018-03-16 2021-03-13 2018 2021
## 18297 2018-09-09 2021-09-08 2018 2021
## 18298 2018-08-08 2021-08-07 2018 2021
## 18299 2018-01-23 2021-01-22 2018 2021
## 18300 2018-05-30 2021-05-29 2018 2021
## 18301 2018-04-29 2021-04-28 2018 2021
## 18302 2018-12-07 2021-12-06 2018 2021
## 18303 2018-01-23 2021-01-22 2018 2021
## 18304 2018-06-29 2021-06-28 2018 2021
## 18305 2018-08-19 2021-08-18 2018 2021
## 18306 2018-08-12 2021-08-11 2018 2021
## 18307 2017-11-14 2020-11-13 2017 2020
## 18308 2018-03-31 2021-03-31 2018 2021
## 18309 2018-09-02 2021-09-01 2018 2021
## 18310 2018-02-25 2021-02-24 2018 2021
## 18311 2018-08-30 2021-08-29 2018 2021
## 18312 2018-06-30 2021-06-29 2018 2021
## 18313 2018-06-28 2021-06-27 2018 2021
## 18314 2018-04-19 2021-04-18 2018 2021
## 18315 2018-09-04 2021-09-03 2018 2021
## 18316 2018-09-17 2021-09-16 2018 2021
## 18317 2018-09-04 2021-09-03 2018 2021
## 18318 2018-09-01 2021-08-31 2018 2021
## 18319 2018-09-04 2021-09-04 2018 2021
## 18320 2018-08-04 2021-08-03 2018 2021
## 18321 2018-06-14 2021-06-14 2018 2021
## 18322 2018-05-31 2021-05-30 2018 2021
## 18323 2018-07-31 2021-07-31 2018 2021
## 18324 2018-07-31 2021-07-30 2018 2021
## 18325 2018-08-14 2021-08-13 2018 2021
## 18326 2017-11-19 2020-11-18 2017 2020
## 18327 2018-06-30 2021-06-29 2018 2021
## 18328 2018-04-30 2021-04-27 2018 2021
## 18329 2018-09-12 2021-09-11 2018 2021
## 18330 2018-07-31 2019-07-30 2018 2019
## 18331 2018-12-17 2021-12-16 2018 2021
## 18332 2017-12-26 2020-12-25 2017 2020
## 18333 2018-09-11 2021-09-09 2018 2021
## 18334 2018-09-11 2021-09-10 2018 2021
## 18335 2018-05-24 2020-08-31 2018 2020
## 18336 2018-09-16 2021-09-15 2018 2021
## 18337 2018-08-25 2021-08-25 2018 2021
## 18338 2018-08-13 2021-08-12 2018 2021
## 18339 2018-05-06 2021-05-06 2018 2021
## 18340 2018-08-19 2021-08-18 2018 2021
## 18341 2018-12-31 2021-12-30 2018 2021
## 18342 2018-09-22 2021-09-22 2018 2021
## 18343 2018-09-05 2021-08-29 2018 2021
## 18344 2018-06-10 2021-06-09 2018 2021
## 18345 2018-08-16 2021-08-15 2018 2021
## 18346 2018-02-04 2021-02-03 2018 2021
## 18347 2018-09-09 2021-09-08 2018 2021
## 18348 2018-02-23 2021-02-22 2018 2021
## 18349 2018-04-07 2021-04-06 2018 2021
## 18350 2018-05-10 2021-05-09 2018 2021
## 18351 2018-06-22 2021-06-21 2018 2021
## 18352 2018-06-13 2021-06-12 2018 2021
## 18353 2018-09-13 2021-09-13 2018 2021
## 18354 2018-02-28 2021-02-28 2018 2021
## 18355 2018-09-13 2021-09-12 2018 2021
## 18356 2018-07-30 2021-07-29 2018 2021
## 18357 2018-08-31 2021-08-30 2018 2021
## 18358 2018-02-08 2021-02-08 2018 2021
## 18359 2018-09-19 2021-09-18 2018 2021
## 18360 2018-01-07 2021-01-06 2018 2021
## 18361 2018-09-11 2021-09-10 2018 2021
## 18362 2018-05-13 2021-05-12 2018 2021
## 18363 2018-03-11 2021-03-08 2018 2021
## 18364 2018-09-18 2021-09-17 2018 2021
## 18365 2017-12-26 2020-12-25 2017 2020
## 18366 2018-08-19 2021-08-18 2018 2021
## 18367 2018-08-31 2021-08-29 2018 2021
## 18368 2018-10-10 2021-10-09 2018 2021
## 18369 2018-09-01 2021-08-31 2018 2021
## 18370 2018-07-31 2021-07-30 2018 2021
## 18371 2018-06-07 2019-09-07 2018 2019
## 18372 2018-07-14 2021-07-13 2018 2021
## 18373 2018-07-24 2021-07-23 2018 2021
## 18374 2018-04-15 2021-04-14 2018 2021
## 18375 2018-09-13 2021-09-12 2018 2021
## 18376 2018-04-08 2021-04-07 2018 2021
## 18377 2018-04-16 2021-04-16 2018 2021
## 18378 2017-09-30 2020-09-30 2017 2020
## 18379 2018-03-01 2020-06-14 2018 2020
## 18380 2018-05-22 2021-05-21 2018 2021
## 18381 2018-05-09 2021-05-08 2018 2021
## 18382 2018-07-29 2021-07-29 2018 2021
## 18383 2018-08-29 2021-08-28 2018 2021
## 18384 2018-07-19 2021-07-19 2018 2021
## 18385 2017-10-31 2019-04-29 2017 2019
## 18386 2017-11-30 2020-11-30 2017 2020
## 18387 2018-05-17 2021-05-16 2018 2021
## 18388 2017-11-19 2020-11-19 2017 2020
## 18389 2018-09-10 2021-09-09 2018 2021
## 18390 2018-08-29 2021-08-28 2018 2021
## 18391 2018-04-30 2021-04-29 2018 2021
## 18392 2018-02-18 2019-09-05 2018 2019
## 18393 2018-05-13 2021-05-12 2018 2021
## 18394 2018-09-04 2021-09-04 2018 2021
## 18395 2018-08-14 2021-08-13 2018 2021
## 18396 2017-10-22 2020-10-21 2017 2020
## 18397 2018-07-31 2019-01-30 2018 2019
## 18398 2018-11-20 2021-11-19 2018 2021
## 18399 2018-09-08 2021-09-07 2018 2021
## 18400 2018-03-31 2021-03-30 2018 2021
## 18401 2018-05-07 2021-05-05 2018 2021
## 18402 2018-09-04 2021-09-04 2018 2021
## 18403 2017-10-26 2020-10-26 2017 2020
## 18404 2018-09-14 2021-09-14 2018 2021
## 18405 2017-10-03 2020-10-02 2017 2020
## 18406 2018-07-27 2021-07-26 2018 2021
## 18407 2018-09-04 2021-08-30 2018 2021
## 18408 2018-07-31 2021-07-30 2018 2021
## 18409 2018-08-28 2021-08-27 2018 2021
## 18410 2017-12-06 2020-12-05 2017 2020
## 18411 2018-08-31 2021-08-30 2018 2021
## 18412 2017-11-26 2020-11-26 2017 2020
## 18413 2017-11-30 2018-11-29 2017 2018
## 18414 2017-10-23 2020-10-22 2017 2020
## 18415 2017-10-31 2020-10-31 2017 2020
## 18416 2018-03-18 2021-03-17 2018 2021
## 18417 2018-08-25 2021-08-24 2018 2021
## 18418 2018-08-31 2021-08-30 2018 2021
## 18419 2018-07-29 2021-07-29 2018 2021
## 18420 2017-10-29 2020-10-29 2017 2020
## 18421 2018-09-30 2021-09-23 2018 2021
## 18422 2018-08-14 2021-08-14 2018 2021
## 18423 2019-01-11 2022-01-11 2019 2022
## 18424 2018-07-16 2021-07-16 2018 2021
## 18425 2017-12-03 2020-12-02 2017 2020
## 18426 2017-12-07 2019-12-30 2017 2019
## 18427 2018-08-28 2021-08-28 2018 2021
## 18428 2018-09-10 2021-09-09 2018 2021
## 18429 2018-04-08 2021-04-07 2018 2021
## 18430 2018-09-13 2021-09-10 2018 2021
## 18431 2018-08-31 2021-08-30 2018 2021
## 18432 2018-06-01 2021-06-01 2018 2021
## 18433 2018-10-26 2021-10-25 2018 2021
## 18434 2018-02-21 2021-02-21 2018 2021
## 18435 2018-03-11 2019-04-07 2018 2019
## 18436 2018-08-17 2021-08-16 2018 2021
## 18437 2018-09-12 2021-09-12 2018 2021
## 18438 2018-08-20 2021-08-19 2018 2021
## 18439 2019-02-14 2022-02-13 2019 2022
## 18440 2018-02-01 2021-01-29 2018 2021
## 18441 2018-08-31 2021-08-31 2018 2021
## 18442 2018-09-20 2021-09-19 2018 2021
## 18443 2018-07-31 2021-07-31 2018 2021
## 18444 2018-03-01 2021-02-28 2018 2021
## 18445 2018-08-02 2021-08-01 2018 2021
## 18446 2018-09-19 2021-09-19 2018 2021
## 18447 2018-08-28 2021-08-28 2018 2021
## 18448 2018-08-31 2021-08-31 2018 2021
## 18449 2018-08-06 2021-08-05 2018 2021
## 18450 2018-08-06 2021-08-05 2018 2021
## 18451 2018-01-02 2020-08-30 2018 2020
## 18452 2018-08-31 2021-08-30 2018 2021
## 18453 2018-02-27 2021-02-26 2018 2021
## 18454 2018-04-23 2021-04-22 2018 2021
## 18455 2017-12-11 2020-12-10 2017 2020
## 18456 2018-08-12 2021-08-11 2018 2021
## 18457 2018-09-07 2021-09-07 2018 2021
## 18458 2018-09-14 2019-09-29 2018 2019
## 18459 2018-09-12 2021-09-12 2018 2021
## 18460 2018-02-04 2021-02-03 2018 2021
## 18461 2018-09-07 2021-09-06 2018 2021
## 18462 2018-09-06 2021-09-05 2018 2021
## 18463 2018-08-31 2021-08-31 2018 2021
## 18464 2018-02-09 2021-02-09 2018 2021
## 18465 2018-09-23 2021-09-22 2018 2021
## 18466 2018-08-28 2021-08-28 2018 2021
## 18467 2018-09-11 2021-09-11 2018 2021
## 18468 2018-02-01 2021-01-31 2018 2021
## 18469 2018-09-15 2021-09-14 2018 2021
## 18470 2018-07-29 2021-07-28 2018 2021
## 18471 2018-11-10 2021-11-09 2018 2021
## 18472 2018-04-08 2020-09-09 2018 2020
## 18473 2018-08-19 2021-08-18 2018 2021
## 18474 2017-10-29 2020-10-28 2017 2020
## 18475 2018-03-22 2021-03-21 2018 2021
## 18476 2018-08-18 2021-08-17 2018 2021
## 18477 2018-05-28 2021-05-27 2018 2021
## 18478 2018-06-14 2021-06-14 2018 2021
## 18479 2018-09-06 2021-09-05 2018 2021
## 18480 2018-09-09 2021-09-08 2018 2021
## 18481 2018-06-30 2021-06-29 2018 2021
## 18482 2018-08-16 2021-08-16 2018 2021
## 18483 2018-05-17 2021-05-14 2018 2021
## 18484 2018-09-16 2021-09-15 2018 2021
## 18485 2018-09-02 2021-09-02 2018 2021
## 18486 2018-09-03 2021-09-03 2018 2021
## 18487 2017-10-24 2020-10-23 2017 2020
## 18488 2018-02-04 2021-02-03 2018 2021
## 18489 2018-05-21 2021-05-20 2018 2021
## 18490 2018-08-30 2021-08-29 2018 2021
## 18491 2018-05-07 2021-05-06 2018 2021
## 18492 2018-08-14 2021-08-13 2018 2021
## 18493 2018-01-31 2021-01-30 2018 2021
## 18494 2018-09-30 2021-09-29 2018 2021
## 18495 2018-09-06 2021-09-05 2018 2021
## 18496 2018-07-31 2020-12-29 2018 2020
## 18497 2018-08-16 2021-08-16 2018 2021
## 18498 2017-11-12 2020-11-11 2017 2020
## 18499 2018-09-05 2021-09-04 2018 2021
## 18500 2018-06-14 2021-06-14 2018 2021
## 18501 2018-07-22 2021-07-21 2018 2021
## 18502 2018-04-30 2021-04-29 2018 2021
## 18503 2018-09-12 2021-09-12 2018 2021
## 18504 2019-02-11 2022-02-08 2019 2022
## 18505 2018-05-06 2021-05-06 2018 2021
## 18506 2018-08-20 2021-08-19 2018 2021
## 18507 2018-06-21 2021-06-20 2018 2021
## 18508 2018-07-31 2021-07-31 2018 2021
## 18509 2018-08-31 2021-08-30 2018 2021
## 18510 2018-09-10 2021-09-09 2018 2021
## 18511 2018-09-05 2021-09-04 2018 2021
## 18512 2017-10-18 2020-10-17 2017 2020
## 18513 2018-08-14 2021-08-13 2018 2021
## 18514 2018-07-29 2021-07-29 2018 2021
## 18515 2017-12-15 2020-12-14 2017 2020
## 18516 2017-11-05 2020-11-04 2017 2020
## 18517 2018-03-08 2021-03-07 2018 2021
## 18518 2018-05-24 2021-05-23 2018 2021
## 18519 2018-07-11 2021-07-11 2018 2021
## 18520 2018-05-02 2021-05-02 2018 2021
## 18521 2018-09-09 2021-09-08 2018 2021
## 18522 2018-07-03 2021-07-02 2018 2021
## 18523 2018-09-24 2021-09-23 2018 2021
## 18524 2017-11-26 2018-11-25 2017 2018
## 18525 2018-06-17 2021-06-16 2018 2021
## 18526 2018-08-19 2021-08-18 2018 2021
## 18527 2018-01-24 2021-01-23 2018 2021
## 18528 2018-09-09 2021-09-09 2018 2021
## 18529 2018-08-25 2021-08-24 2018 2021
## 18530 2018-09-02 2021-09-01 2018 2021
## 18531 2018-12-31 2021-12-31 2018 2021
## 18532 2018-07-31 2021-07-31 2018 2021
## 18533 2018-08-16 2021-08-16 2018 2021
## 18534 2018-10-07 2021-10-06 2018 2021
## 18535 2018-04-17 2021-04-16 2018 2021
## 18536 2018-06-29 2021-06-28 2018 2021
## 18537 2018-09-11 2021-09-10 2018 2021
## 18538 2017-12-29 2020-12-26 2017 2020
## 18539 2018-06-14 2021-06-13 2018 2021
## 18540 2018-07-31 2021-07-30 2018 2021
## 18541 2018-08-31 2021-08-31 2018 2021
## 18542 2018-09-04 2021-09-03 2018 2021
## 18543 2018-06-30 2021-06-29 2018 2021
## 18544 2018-02-11 2021-02-11 2018 2021
## 18545 2018-08-27 2021-08-27 2018 2021
## 18546 2018-09-03 2021-09-02 2018 2021
## 18547 2018-04-29 2021-04-29 2018 2021
## 18548 2018-03-25 2021-03-24 2018 2021
## 18549 2018-06-30 2021-06-29 2018 2021
## 18550 2018-08-05 2021-08-04 2018 2021
## 18551 2018-08-06 2021-08-05 2018 2021
## 18552 2018-07-12 2021-07-11 2018 2021
## 18553 2018-09-07 2021-09-06 2018 2021
## 18554 2018-05-31 2021-05-30 2018 2021
## 18555 2018-09-04 2021-09-03 2018 2021
## 18556 2018-09-14 2021-09-14 2018 2021
## 18557 2018-06-13 2021-06-13 2018 2021
## 18558 2018-07-31 2021-07-14 2018 2021
## 18559 2018-01-23 2021-01-23 2018 2021
## 18560 2017-10-18 2020-10-17 2017 2020
## 18561 2018-09-19 2021-09-18 2018 2021
## 18562 2018-09-04 2021-09-04 2018 2021
## 18563 2018-07-22 2021-07-21 2018 2021
## 18564 2018-08-31 2021-08-31 2018 2021
## 18565 2017-11-07 2020-11-07 2017 2020
## 18566 2017-11-19 2020-11-18 2017 2020
## 18567 2018-08-29 2021-08-28 2018 2021
## 18568 2018-01-14 2021-01-13 2018 2021
## 18569 2018-01-21 2021-01-20 2018 2021
## 18570 2018-09-16 2021-09-15 2018 2021
## 18571 2018-08-14 2021-08-13 2018 2021
## 18572 2018-05-27 2021-05-26 2018 2021
## 18573 2018-09-15 2021-09-14 2018 2021
## 18574 2017-10-08 2020-10-08 2017 2020
## 18575 2018-08-19 2021-08-18 2018 2021
## 18576 2018-06-17 2021-06-16 2018 2021
## 18577 2018-08-30 2021-08-29 2018 2021
## 18578 2018-07-25 2021-07-24 2018 2021
## 18579 2018-04-11 2021-04-10 2018 2021
## 18580 2018-03-08 2021-03-08 2018 2021
## 18581 2018-09-17 2021-09-16 2018 2021
## 18582 2017-12-19 2020-12-18 2017 2020
## 18583 2018-09-02 2021-09-01 2018 2021
## 18584 2018-09-17 2021-09-16 2018 2021
## 18585 2018-06-19 2021-06-18 2018 2021
## 18586 2018-02-28 2021-02-27 2018 2021
## 18587 2018-06-14 2021-06-14 2018 2021
## 18588 2018-09-20 2021-09-19 2018 2021
## 18589 2018-04-04 2021-04-03 2018 2021
## 18590 2018-08-11 2021-08-11 2018 2021
## 18591 2018-06-20 2021-06-20 2018 2021
## 18592 2018-07-31 2021-07-30 2018 2021
## 18593 2018-03-22 2021-03-21 2018 2021
## 18594 2018-10-10 2021-10-09 2018 2021
## 18595 2018-07-12 2021-07-11 2018 2021
## 18596 2017-10-24 2020-10-24 2017 2020
## 18597 2018-06-10 2021-06-10 2018 2021
## 18598 2018-09-06 2021-09-05 2018 2021
## 18599 2017-12-03 2020-12-02 2017 2020
## 18600 2018-11-02 2021-11-01 2018 2021
## 18601 2018-08-12 2021-08-12 2018 2021
## 18602 2017-10-05 2020-10-04 2017 2020
## 18603 2018-08-27 2021-08-27 2018 2021
## 18604 2018-01-31 2021-01-30 2018 2021
## 18605 2018-06-27 2021-06-26 2018 2021
## 18606 2018-09-06 2021-09-05 2018 2021
## 18607 2018-09-19 2021-09-19 2018 2021
## 18608 2018-06-07 2021-06-07 2018 2021
## 18609 2018-09-05 2021-08-29 2018 2021
## 18610 2018-08-31 2021-08-30 2018 2021
## 18611 2018-05-07 2021-05-06 2018 2021
## 18612 2018-08-19 2019-06-26 2018 2019
## 18613 2018-03-29 2021-03-26 2018 2021
## 18614 2018-09-30 2021-08-31 2018 2021
## 18615 2018-09-02 2020-12-30 2018 2020
## 18616 2018-04-12 2021-04-11 2018 2021
## 18617 2018-11-05 2021-11-04 2018 2021
## 18618 2018-04-01 2021-03-31 2018 2021
## 18619 2018-06-14 2021-06-14 2018 2021
## 18620 2017-10-31 2019-09-10 2017 2019
## 18621 2017-10-31 2020-10-31 2017 2020
## 18622 2018-08-25 2021-08-24 2018 2021
## 18623 2018-01-14 2018-08-30 2018 2018
## 18624 2018-08-14 2021-08-13 2018 2021
## 18625 2018-08-30 2021-08-30 2018 2021
## 18626 2018-07-27 2021-07-27 2018 2021
## 18627 2018-08-31 2021-08-31 2018 2021
## 18628 2018-02-18 2021-02-17 2018 2021
## 18629 2018-07-18 2021-07-17 2018 2021
## 18630 2018-08-08 2021-08-07 2018 2021
## 18631 2018-01-26 2021-01-26 2018 2021
## 18632 2018-08-22 2021-08-21 2018 2021
## 18633 2018-07-11 2021-07-11 2018 2021
## 18634 2018-08-12 2021-08-11 2018 2021
## 18635 2018-07-15 2021-07-14 2018 2021
## 18636 2018-05-31 2021-05-30 2018 2021
## 18637 2018-08-08 2021-08-07 2018 2021
## 18638 2018-08-15 2021-08-15 2018 2021
## 18639 2018-09-23 2021-09-22 2018 2021
## 18640 2018-03-05 2021-03-05 2018 2021
## 18641 2018-04-15 2021-04-14 2018 2021
## 18642 2017-10-01 2020-09-30 2017 2020
## 18643 2017-12-18 2020-12-18 2017 2020
## 18644 2018-03-22 2021-03-21 2018 2021
## 18645 2018-06-10 2021-06-10 2018 2021
## 18646 2018-08-31 2021-08-31 2018 2021
## 18647 2018-08-01 2021-08-01 2018 2021
## 18648 2018-09-05 2021-09-04 2018 2021
## 18649 2018-06-30 2021-06-29 2018 2021
## 18650 2018-08-31 2021-08-30 2018 2021
## 18651 2018-09-13 2021-09-12 2018 2021
## 18652 2018-03-31 2021-03-28 2018 2021
## 18653 2018-08-31 2021-08-30 2018 2021
## 18654 2018-04-13 2021-04-12 2018 2021
## 18655 2018-08-14 2021-08-13 2018 2021
## 18656 2018-02-22 2021-02-21 2018 2021
## 18657 2018-06-04 2021-06-03 2018 2021
## 18658 2018-08-05 2021-08-04 2018 2021
## 18659 2018-09-10 2021-09-09 2018 2021
## 18660 2018-08-15 2021-08-14 2018 2021
## 18661 2018-08-30 2020-08-22 2018 2020
## 18662 2018-06-20 2021-06-19 2018 2021
## 18663 2018-07-31 2020-12-31 2018 2020
## 18664 2018-07-01 2021-06-28 2018 2021
## 18665 2018-08-04 2021-08-04 2018 2021
## 18666 2018-07-15 2021-07-14 2018 2021
## 18667 2018-02-22 2021-02-22 2018 2021
## 18668 2018-02-04 2021-02-03 2018 2021
## 18669 2018-08-31 2021-08-30 2018 2021
## 18670 2018-06-14 2021-06-14 2018 2021
## 18671 2018-07-14 2021-07-13 2018 2021
## 18672 2018-06-05 2021-06-05 2018 2021
## 18673 2018-03-04 2021-03-04 2018 2021
## 18674 2018-01-07 2021-01-06 2018 2021
## 18675 2018-09-15 2021-09-14 2018 2021
## 18676 2019-01-19 2022-01-18 2019 2022
## 18677 2018-09-15 2021-09-14 2018 2021
## 18678 2018-10-07 2019-09-29 2018 2019
## 18679 2018-07-31 2021-07-30 2018 2021
## 18680 2019-01-14 2022-01-13 2019 2022
## 18681 2018-09-14 2021-09-13 2018 2021
## 18682 2018-09-03 2021-09-03 2018 2021
## 18683 2018-05-13 2021-05-12 2018 2021
## 18684 2018-08-20 2021-08-19 2018 2021
## 18685 2018-05-29 2021-05-28 2018 2021
## 18686 2018-09-27 2021-09-26 2018 2021
## 18687 2018-08-21 2021-08-20 2018 2021
## 18688 2018-09-21 2021-09-20 2018 2021
## 18689 2018-06-27 2021-06-26 2018 2021
## 18690 2018-09-14 2020-09-13 2018 2020
## 18691 2018-07-31 2021-07-30 2018 2021
## 18692 2018-06-03 2021-06-02 2018 2021
## 18693 2018-08-11 2021-08-08 2018 2021
## 18694 2018-05-31 2021-05-30 2018 2021
## 18695 2018-10-07 2021-10-07 2018 2021
## 18696 2018-09-03 2021-09-03 2018 2021
## 18697 2018-08-22 2021-08-21 2018 2021
## 18698 2018-09-16 2021-09-16 2018 2021
## 18699 2017-12-19 2020-12-18 2017 2020
## 18700 2018-12-03 2021-12-02 2018 2021
## 18701 2018-08-31 2021-08-29 2018 2021
## 18702 2018-09-30 2021-09-29 2018 2021
## 18703 2018-09-03 2021-09-02 2018 2021
## 18704 2018-03-08 2021-03-07 2018 2021
## 18705 2018-08-02 2021-08-02 2018 2021
## 18706 2017-10-30 2020-10-29 2017 2020
## 18707 2017-12-07 2020-12-06 2017 2020
## 18708 2018-09-10 2021-09-10 2018 2021
## 18709 2018-09-19 2021-09-18 2018 2021
## 18710 2018-03-27 2021-03-26 2018 2021
## 18711 2017-11-28 2020-11-27 2017 2020
## 18712 2018-09-30 2021-09-29 2018 2021
## 18713 2018-08-15 2021-08-14 2018 2021
## 18714 2018-04-09 2021-04-09 2018 2021
## 18715 2018-01-04 2021-01-03 2018 2021
## 18716 2018-04-15 2021-04-14 2018 2021
## 18717 2018-04-05 2021-04-04 2018 2021
## 18718 2018-06-14 2021-06-14 2018 2021
## 18719 2018-09-15 2021-09-14 2018 2021
## 18720 2018-09-11 2021-09-10 2018 2021
## 18721 2018-07-08 2021-07-01 2018 2021
## 18722 2018-07-06 2021-07-04 2018 2021
## 18723 2018-07-22 2021-07-21 2018 2021
## 18724 2018-07-15 2021-07-14 2018 2021
## 18725 2017-10-29 2020-10-28 2017 2020
## 18726 2018-10-06 2021-10-05 2018 2021
## 18727 2018-09-04 2021-09-03 2018 2021
## 18728 2018-05-13 2021-05-12 2018 2021
## 18729 2018-09-06 2021-09-05 2018 2021
## 18730 2018-09-14 2020-09-13 2018 2020
## 18731 2017-11-26 2020-11-26 2017 2020
## 18732 2018-10-21 2021-10-20 2018 2021
## 18733 2018-08-31 2021-08-30 2018 2021
## 18734 2018-07-29 2021-07-28 2018 2021
## 18735 2018-06-03 2021-06-02 2018 2021
## 18736 2018-07-17 2021-07-17 2018 2021
## 18737 2018-08-31 2021-08-30 2018 2021
## 18738 2018-08-15 2021-08-14 2018 2021
## 18739 2018-09-05 2021-09-04 2018 2021
## 18740 2018-05-22 2021-05-21 2018 2021
## 18741 2018-08-01 2021-07-31 2018 2021
## 18742 2018-05-21 2021-05-21 2018 2021
## 18743 2018-01-01 2020-12-31 2018 2020
## 18744 2018-06-30 2021-06-29 2018 2021
## 18745 2018-01-17 2021-01-16 2018 2021
## 18746 2018-07-11 2020-02-12 2018 2020
## 18747 2018-09-07 2021-09-06 2018 2021
## 18748 2018-06-20 2021-06-20 2018 2021
## 18749 2018-05-31 2021-05-30 2018 2021
## 18750 2018-07-09 2021-07-08 2018 2021
## 18751 2017-12-31 2020-12-30 2017 2020
## 18752 2017-10-15 2020-10-15 2017 2020
## 18753 2018-09-10 2020-08-30 2018 2020
## 18754 2018-09-18 2021-09-17 2018 2021
## 18755 2018-09-01 2021-08-31 2018 2021
## 18756 2018-03-30 2021-03-29 2018 2021
## 18757 2018-03-31 2021-03-30 2018 2021
## 18758 2018-09-02 2021-09-01 2018 2021
## 18759 2018-09-30 2021-09-29 2018 2021
## 18760 2018-09-01 2021-08-29 2018 2021
## 18761 2018-06-30 2021-06-29 2018 2021
## 18762 2018-04-02 2021-04-01 2018 2021
## 18763 2018-07-31 2021-07-30 2018 2021
## 18764 2017-10-15 2020-10-14 2017 2020
## 18765 2018-08-07 2021-08-06 2018 2021
## 18766 2018-05-31 2021-05-30 2018 2021
## 18767 2017-12-31 2020-12-30 2017 2020
## 18768 2018-08-24 2021-08-24 2018 2021
## 18769 2018-04-16 2021-04-14 2018 2021
## 18770 2018-08-23 2021-08-22 2018 2021
## 18771 2018-09-18 2021-09-17 2018 2021
## 18772 2018-09-14 2021-09-13 2018 2021
## 18773 2018-10-31 2020-10-30 2018 2020
## 18774 2018-09-09 2021-09-08 2018 2021
## 18775 2018-07-08 2021-07-07 2018 2021
## 18776 2018-04-17 2021-04-17 2018 2021
## 18777 2018-06-24 2020-08-10 2018 2020
## 18778 2018-09-29 2021-09-28 2018 2021
## 18779 2018-01-21 2021-01-20 2018 2021
## 18780 2018-09-19 2021-09-18 2018 2021
## 18781 2017-11-19 2020-11-18 2017 2020
## 18782 2018-03-08 2021-03-07 2018 2021
## 18783 2018-08-07 2021-08-06 2018 2021
## 18784 2018-09-05 2021-09-04 2018 2021
## 18785 2018-09-18 2021-09-17 2018 2021
## 18786 2018-08-31 2021-08-30 2018 2021
## 18787 2018-03-31 2021-03-31 2018 2021
## 18788 2018-02-13 2019-11-19 2018 2019
## 18789 2017-11-02 2020-11-02 2017 2020
## 18790 2018-08-31 2021-08-31 2018 2021
## 18791 2017-10-01 2020-09-30 2017 2020
## 18792 2018-04-22 2021-04-21 2018 2021
## 18793 2018-03-30 2021-03-30 2018 2021
## 18794 2018-09-14 2021-09-14 2018 2021
## 18795 2018-08-31 2021-08-30 2018 2021
## 18796 2018-08-26 2021-08-25 2018 2021
## 18797 2018-07-16 2021-07-16 2018 2021
## 18798 2018-08-20 2021-08-19 2018 2021
## 18799 2018-06-22 2021-06-21 2018 2021
## 18800 2018-09-06 2021-09-05 2018 2021
## 18801 2018-07-17 2021-07-16 2018 2021
## 18802 2018-06-17 2021-06-14 2018 2021
## 18803 2018-09-06 2021-09-05 2018 2021
## 18804 2018-07-03 2021-07-01 2018 2021
## 18805 2018-09-05 2021-09-05 2018 2021
## 18806 2018-08-22 2021-08-21 2018 2021
## 18807 2018-04-23 2021-02-19 2018 2021
## 18808 2018-07-11 2021-07-10 2018 2021
## 18809 2018-07-11 2021-07-11 2018 2021
## 18810 2018-02-25 2021-02-24 2018 2021
## 18811 2018-09-03 2021-09-03 2018 2021
## 18812 2018-09-11 2021-09-10 2018 2021
## 18813 2018-06-07 2021-06-06 2018 2021
## 18814 2017-10-08 2020-10-07 2017 2020
## 18815 2018-07-31 2021-07-30 2018 2021
## 18816 2018-08-31 2021-08-30 2018 2021
## 18817 2018-09-29 2021-09-28 2018 2021
## 18818 2018-09-12 2021-09-12 2018 2021
## 18819 2017-10-24 2020-10-23 2017 2020
## 18820 2018-01-31 2021-01-31 2018 2021
## 18821 2018-05-31 2021-05-30 2018 2021
## 18822 2018-07-31 2021-07-30 2018 2021
## 18823 2018-08-31 2021-08-31 2018 2021
## 18824 2018-04-24 2021-04-23 2018 2021
## 18825 2017-10-31 2020-04-22 2017 2020
## 18826 2018-09-15 2021-09-14 2018 2021
## 18827 2018-05-20 2021-05-19 2018 2021
## 18828 2018-10-31 2021-09-29 2018 2021
## 18829 2019-02-12 2022-02-11 2019 2022
## 18830 2017-10-01 2020-03-05 2017 2020
## 18831 2018-08-26 2021-08-25 2018 2021
## 18832 2018-03-13 2021-03-12 2018 2021
## 18833 2018-07-25 2021-07-24 2018 2021
## 18834 2018-09-16 2021-09-15 2018 2021
## 18835 2017-11-26 2020-11-26 2017 2020
## 18836 2017-11-12 2020-11-12 2017 2020
## 18837 2018-09-25 2021-09-24 2018 2021
## 18838 2018-09-19 2021-09-18 2018 2021
## 18839 2017-12-27 2020-12-26 2017 2020
## 18840 2018-06-17 2021-06-16 2018 2021
## 18841 2018-09-01 2021-08-31 2018 2021
## 18842 2018-08-31 2021-08-28 2018 2021
## 18843 2018-10-15 2021-10-14 2018 2021
## 18844 2018-03-10 2021-03-09 2018 2021
## 18845 2018-04-11 2021-04-10 2018 2021
## 18846 2018-09-17 2021-09-16 2018 2021
## 18847 2018-01-28 2021-01-27 2018 2021
## 18848 2018-08-31 2021-08-31 2018 2021
## 18849 2018-03-06 2021-03-05 2018 2021
## 18850 2017-12-07 2020-12-06 2017 2020
## 18851 2018-02-28 2021-02-27 2018 2021
## 18852 2018-04-16 2021-04-15 2018 2021
## 18853 2018-08-31 2021-08-30 2018 2021
## 18854 2018-08-31 2021-08-30 2018 2021
## 18855 2017-12-06 2020-12-05 2017 2020
## 18856 2018-09-29 2021-08-30 2018 2021
## 18857 2018-08-23 2021-08-22 2018 2021
## 18858 2018-09-10 2021-09-09 2018 2021
## 18859 2018-08-31 2021-08-31 2018 2021
## 18860 2018-08-16 2021-08-16 2018 2021
## 18861 2017-12-31 2020-12-30 2017 2020
## 18862 2018-08-28 2021-08-15 2018 2021
## 18863 2018-03-08 2021-03-07 2018 2021
## 18864 2018-08-12 2021-08-11 2018 2021
## 18865 2018-01-28 2021-01-27 2018 2021
## 18866 2018-03-26 2021-03-25 2018 2021
## 18867 2017-11-05 2020-08-22 2017 2020
## 18868 2018-09-02 2021-09-02 2018 2021
## 18869 2018-09-08 2021-09-07 2018 2021
## 18870 2018-08-30 2021-08-30 2018 2021
## 18871 2018-11-15 2021-11-15 2018 2021
## 18872 2017-10-09 2020-09-29 2017 2020
## 18873 2018-08-25 2021-08-25 2018 2021
## 18874 2018-07-31 2021-07-30 2018 2021
## 18875 2018-09-08 2021-09-07 2018 2021
## 18876 2017-10-15 2020-10-15 2017 2020
## 18877 2018-01-14 2021-01-13 2018 2021
## 18878 2018-08-09 2021-08-09 2018 2021
## 18879 2018-04-01 2021-03-31 2018 2021
## 18880 2018-07-24 2021-07-23 2018 2021
## 18881 2017-10-30 2020-10-29 2017 2020
## 18882 2017-12-17 2020-12-17 2017 2020
## 18883 2018-09-28 2021-09-27 2018 2021
## 18884 2018-09-23 2021-09-22 2018 2021
## 18885 2018-09-03 2021-09-02 2018 2021
## 18886 2018-09-09 2021-09-08 2018 2021
## 18887 2018-06-27 2021-06-26 2018 2021
## 18888 2018-03-11 2021-03-10 2018 2021
## 18889 2018-02-19 2021-02-18 2018 2021
## 18890 2018-06-24 2021-06-24 2018 2021
## 18891 2018-05-06 2021-05-05 2018 2021
## 18892 2017-12-03 2020-12-02 2017 2020
## 18893 2018-08-31 2021-08-30 2018 2021
## 18894 2018-07-20 2021-07-19 2018 2021
## 18895 2018-12-31 2021-12-31 2018 2021
## 18896 2019-01-24 2022-01-23 2019 2022
## 18897 2018-09-30 2021-09-29 2018 2021
## 18898 2017-12-03 2020-12-02 2017 2020
## 18899 2018-10-26 2021-10-25 2018 2021
## 18900 2017-11-29 2020-11-28 2017 2020
## 18901 2018-09-13 2021-09-13 2018 2021
## 18902 2018-08-31 2021-08-31 2018 2021
## 18903 2018-09-09 2021-09-09 2018 2021
## 18904 2017-10-22 2020-10-22 2017 2020
## 18905 2018-08-13 2021-08-10 2018 2021
## 18906 2018-03-12 2020-09-08 2018 2020
## 18907 2018-01-06 2021-01-06 2018 2021
## 18908 2018-02-04 2020-09-02 2018 2020
## 18909 2018-07-08 2021-07-08 2018 2021
## 18910 2018-08-28 2021-08-27 2018 2021
## 18911 2018-10-03 2021-10-03 2018 2021
## 18912 2018-07-16 2021-07-15 2018 2021
## 18913 2018-02-04 2021-02-03 2018 2021
## 18914 2017-12-25 2020-12-24 2017 2020
## 18915 2017-12-10 2020-12-09 2017 2020
## 18916 2018-06-03 2021-06-02 2018 2021
## 18917 2018-03-31 2021-03-30 2018 2021
## 18918 2018-09-10 2021-09-09 2018 2021
## 18919 2017-12-16 2020-12-15 2017 2020
## 18920 2018-08-06 2021-08-06 2018 2021
## 18921 2018-09-18 2021-09-17 2018 2021
## 18922 2018-07-27 2021-07-26 2018 2021
## 18923 2018-09-09 2021-09-08 2018 2021
## 18924 2017-11-26 2020-11-25 2017 2020
## 18925 2018-09-30 2021-09-30 2018 2021
## 18926 2018-03-29 2021-03-28 2018 2021
## 18927 2018-09-06 2021-09-05 2018 2021
## 18928 2018-09-11 2021-09-10 2018 2021
## 18929 2018-08-31 2021-08-30 2018 2021
## 18930 2018-02-11 2021-02-11 2018 2021
## 18931 2018-05-31 2021-05-28 2018 2021
## 18932 2018-01-12 2021-01-11 2018 2021
## 18933 2018-08-05 2021-08-02 2018 2021
## 18934 2018-04-05 2021-04-04 2018 2021
## 18935 2018-08-27 2021-08-26 2018 2021
## 18936 2018-08-22 2021-08-22 2018 2021
## 18937 2018-08-04 2021-08-03 2018 2021
## 18938 2018-09-14 2021-09-13 2018 2021
## 18939 2018-10-26 2020-04-19 2018 2020
## 18940 2018-09-01 2021-08-31 2018 2021
## 18941 2018-04-08 2021-04-07 2018 2021
## 18942 2018-08-19 2021-08-18 2018 2021
## 18943 2018-04-15 2021-04-14 2018 2021
## 18944 2018-09-15 2021-09-15 2018 2021
## 18945 2018-06-25 2021-06-24 2018 2021
## 18946 2018-09-13 2021-09-13 2018 2021
## 18947 2018-09-23 2021-09-22 2018 2021
## 18948 2018-07-30 2021-07-30 2018 2021
## 18949 2018-06-14 2021-06-14 2018 2021
## 18950 2018-09-03 2021-09-03 2018 2021
## 18951 2018-09-06 2021-09-05 2018 2021
## 18952 2017-10-11 2020-10-10 2017 2020
## 18953 2018-07-29 2021-07-28 2018 2021
## 18954 2018-09-13 2021-09-12 2018 2021
## 18955 2018-01-10 2021-01-09 2018 2021
## 18956 2018-08-12 2019-08-12 2018 2019
## 18957 2018-08-23 2021-08-23 2018 2021
## 18958 2018-06-24 2021-06-23 2018 2021
## 18959 2018-02-22 2021-02-20 2018 2021
## 18960 2018-09-06 2021-09-05 2018 2021
## 18961 2018-09-19 2021-09-19 2018 2021
## 18962 2018-02-06 2020-09-28 2018 2020
## 18963 2018-05-06 2021-05-05 2018 2021
## 18964 2018-05-13 2021-05-12 2018 2021
## 18965 2018-09-30 2021-09-29 2018 2021
## 18966 2018-08-12 2021-08-12 2018 2021
## 18967 2018-04-30 2021-04-29 2018 2021
## 18968 2018-08-20 2021-08-20 2018 2021
## 18969 2018-07-31 2021-07-30 2018 2021
## 18970 2018-09-01 2021-08-31 2018 2021
## 18971 2018-02-18 2021-02-18 2018 2021
## 18972 2018-04-27 2021-04-27 2018 2021
## 18973 2018-08-23 2021-08-23 2018 2021
## 18974 2018-06-14 2021-06-14 2018 2021
## 18975 2018-09-02 2021-09-01 2018 2021
## 18976 2017-09-30 2020-09-30 2017 2020
## 18977 2018-09-09 2020-09-29 2018 2020
## 18978 2018-05-31 2021-05-30 2018 2021
## 18979 2018-09-30 2021-09-30 2018 2021
## 18980 2018-03-15 2021-03-14 2018 2021
## 18981 2018-09-10 2021-09-10 2018 2021
## 18982 2018-09-17 2021-09-17 2018 2021
## 18983 2018-07-09 2021-07-09 2018 2021
## 18984 2018-09-12 2021-09-12 2018 2021
## 18985 2018-09-22 2021-09-21 2018 2021
## 18986 2017-10-22 2020-10-21 2017 2020
## 18987 2018-09-04 2021-09-04 2018 2021
## 18988 2018-09-11 2021-09-11 2018 2021
## 18989 2018-09-11 2021-09-10 2018 2021
## 18990 2018-09-12 2021-09-11 2018 2021
## 18991 2018-09-30 2021-09-29 2018 2021
## 18992 2017-11-14 2020-11-13 2017 2020
## 18993 2018-09-23 2021-09-22 2018 2021
## 18994 2018-08-14 2021-08-13 2018 2021
## 18995 2018-05-18 2021-05-18 2018 2021
## 18996 2018-04-08 2021-04-08 2018 2021
## 18997 2017-12-23 2020-12-22 2017 2020
## 18998 2017-12-14 2020-12-14 2017 2020
## 18999 2018-09-18 2021-09-17 2018 2021
## 19000 2018-12-03 2021-12-02 2018 2021
## 19001 2018-07-27 2021-07-27 2018 2021
## 19002 2018-04-25 2021-04-25 2018 2021
## 19003 2018-07-27 2021-07-26 2018 2021
## 19004 2018-02-13 2021-02-12 2018 2021
## 19005 2018-08-23 2021-08-22 2018 2021
## 19006 2018-09-12 2021-09-11 2018 2021
## 19007 2018-07-12 2021-07-12 2018 2021
## 19008 2018-08-01 2021-07-29 2018 2021
## 19009 2018-10-07 2021-10-07 2018 2021
## 19010 2017-11-26 2020-09-08 2017 2020
## 19011 2018-08-08 2021-08-07 2018 2021
## 19012 2017-12-28 2020-12-27 2017 2020
## 19013 2018-11-30 2021-11-29 2018 2021
## 19014 2018-03-31 2021-03-28 2018 2021
## 19015 2018-08-31 2021-08-30 2018 2021
## 19016 2018-09-13 2021-09-12 2018 2021
## 19017 2018-09-19 2021-09-18 2018 2021
## 19018 2018-03-01 2021-02-28 2018 2021
## 19019 2018-07-31 2021-07-30 2018 2021
## 19020 2017-11-10 2020-11-07 2017 2020
## 19021 2018-09-06 2021-09-05 2018 2021
## 19022 2018-09-12 2021-09-11 2018 2021
## 19023 2018-05-24 2021-05-23 2018 2021
## 19024 2018-09-06 2021-09-05 2018 2021
## 19025 2018-09-13 2021-09-13 2018 2021
## 19026 2018-08-15 2021-08-14 2018 2021
## 19027 2018-08-31 2021-08-30 2018 2021
## 19028 2018-04-08 2021-04-07 2018 2021
## 19029 2018-08-15 2021-08-14 2018 2021
## 19030 2018-08-27 2021-08-26 2018 2021
## 19031 2018-09-29 2021-09-28 2018 2021
## 19032 2018-01-23 2021-01-23 2018 2021
## 19033 2018-09-03 2021-09-02 2018 2021
## 19034 2018-03-25 2021-03-24 2018 2021
## 19035 2018-06-17 2021-06-16 2018 2021
## 19036 2018-03-29 2021-03-28 2018 2021
## 19037 2018-09-06 2021-09-05 2018 2021
## 19038 2018-05-19 2021-05-19 2018 2021
## 19039 2018-12-30 2021-12-30 2018 2021
## 19040 2018-09-03 2021-09-02 2018 2021
## 19041 2018-08-13 2021-08-12 2018 2021
## 19042 2018-05-31 2021-05-30 2018 2021
## 19043 2018-02-27 2021-02-27 2018 2021
## 19044 2018-05-20 2021-05-19 2018 2021
## 19045 2018-08-22 2021-08-21 2018 2021
## 19046 2018-08-29 2021-06-24 2018 2021
## 19047 2018-09-04 2021-09-04 2018 2021
## 19048 2017-12-14 2020-12-13 2017 2020
## 19049 2018-04-10 2021-04-09 2018 2021
## 19050 2018-09-02 2021-09-02 2018 2021
## 19051 2018-01-31 2021-01-30 2018 2021
## 19052 2018-08-30 2021-08-29 2018 2021
## 19053 2018-03-11 2021-03-10 2018 2021
## 19054 2018-08-10 2021-08-10 2018 2021
## 19055 2018-06-26 2021-06-25 2018 2021
## 19056 2018-09-17 2021-09-16 2018 2021
## 19057 2018-09-23 2021-09-23 2018 2021
## 19058 2017-12-21 2020-12-21 2017 2020
## 19059 2017-09-30 2020-09-30 2017 2020
## 19060 2018-09-14 2021-09-13 2018 2021
## 19061 2018-08-12 2021-08-11 2018 2021
## 19062 2018-09-03 2021-09-02 2018 2021
## 19063 2018-09-09 2021-09-09 2018 2021
## 19064 2019-01-04 2022-01-04 2019 2022
## 19065 2018-01-03 2021-01-02 2018 2021
## 19066 2018-06-30 2021-06-29 2018 2021
## 19067 2018-09-30 2021-09-29 2018 2021
## 19068 2018-05-06 2021-05-06 2018 2021
## 19069 2017-10-16 2020-10-13 2017 2020
## 19070 2018-09-30 2021-09-29 2018 2021
## 19071 2018-06-30 2021-06-27 2018 2021
## 19072 2018-09-10 2021-09-10 2018 2021
## 19073 2019-01-10 2022-01-09 2019 2022
## 19074 2017-12-28 2020-12-27 2017 2020
## 19075 2018-06-07 2021-06-06 2018 2021
## 19076 2018-09-05 2021-09-05 2018 2021
## 19077 2018-04-12 2021-04-11 2018 2021
## 19078 2018-08-25 2021-08-24 2018 2021
## 19079 2018-09-09 2021-09-09 2018 2021
## 19080 2017-11-25 2020-11-24 2017 2020
## 19081 2018-07-09 2021-07-08 2018 2021
## 19082 2018-09-20 2021-09-19 2018 2021
## 19083 2018-03-31 2021-03-31 2018 2021
## 19084 2018-07-25 2021-07-25 2018 2021
## 19085 2018-04-09 2021-04-08 2018 2021
## 19086 2018-06-30 2021-06-29 2018 2021
## 19087 2018-03-19 2021-03-18 2018 2021
## 19088 2018-09-13 2021-09-12 2018 2021
## 19089 2018-09-14 2021-09-14 2018 2021
## 19090 2018-08-05 2021-08-04 2018 2021
## 19091 2017-11-15 2020-11-14 2017 2020
## 19092 2018-09-30 2021-09-30 2018 2021
## 19093 2018-07-09 2021-07-08 2018 2021
## 19094 2018-09-12 2021-09-11 2018 2021
## 19095 2019-02-04 2022-02-03 2019 2022
## 19096 2018-09-21 2021-09-20 2018 2021
## 19097 2018-09-14 2021-09-13 2018 2021
## 19098 2018-08-25 2021-08-25 2018 2021
## 19099 2018-03-15 2021-03-14 2018 2021
## 19100 2018-12-26 2021-12-25 2018 2021
## 19101 2018-09-24 2021-09-23 2018 2021
## 19102 2018-07-08 2021-07-07 2018 2021
## 19103 2018-09-30 2020-02-18 2018 2020
## 19104 2018-03-27 2021-03-20 2018 2021
## 19105 2017-12-09 2020-11-25 2017 2020
## 19106 2018-05-24 2021-05-23 2018 2021
## 19107 2018-09-14 2021-09-13 2018 2021
## 19108 2018-05-14 2019-04-10 2018 2019
## 19109 2018-05-20 2021-05-20 2018 2021
## 19110 2018-07-16 2021-07-16 2018 2021
## 19111 2017-10-01 2018-08-31 2017 2018
## 19112 2018-07-08 2021-07-07 2018 2021
## 19113 2018-06-20 2021-06-19 2018 2021
## 19114 2018-09-10 2021-09-09 2018 2021
## 19115 2018-08-15 2021-08-12 2018 2021
## 19116 2018-10-14 2021-10-13 2018 2021
## 19117 2017-11-06 2020-11-05 2017 2020
## 19118 2018-01-04 2021-01-03 2018 2021
## 19119 2017-11-26 2020-11-25 2017 2020
## 19120 2018-08-30 2021-08-29 2018 2021
## 19121 2018-07-26 2021-07-26 2018 2021
## 19122 2018-03-08 2021-03-08 2018 2021
## 19123 2018-07-10 2021-07-10 2018 2021
## 19124 2018-08-31 2021-08-30 2018 2021
## 19125 2018-08-31 2021-08-31 2018 2021
## 19126 2018-06-21 2021-06-20 2018 2021
## 19127 2018-08-19 2021-08-19 2018 2021
## 19128 2018-07-15 2021-07-14 2018 2021
## 19129 2017-12-03 2020-12-03 2017 2020
## 19130 2018-09-02 2021-09-01 2018 2021
## 19131 2018-07-31 2021-07-30 2018 2021
## 19132 2018-09-06 2021-09-05 2018 2021
## 19133 2018-05-24 2021-05-23 2018 2021
## 19134 2018-09-17 2021-09-17 2018 2021
## 19135 2018-09-10 2021-09-09 2018 2021
## 19136 2018-03-12 2021-03-11 2018 2021
## 19137 2017-12-21 2020-12-21 2017 2020
## 19138 2018-08-23 2021-08-22 2018 2021
## 19139 2018-09-07 2021-09-06 2018 2021
## 19140 2018-08-31 2021-08-29 2018 2021
## 19141 2018-08-31 2021-08-30 2018 2021
## 19142 2018-08-20 2021-08-19 2018 2021
## 19143 2018-09-18 2021-09-18 2018 2021
## 19144 2017-11-30 2020-11-30 2017 2020
## 19145 2017-12-10 2020-12-10 2017 2020
## 19146 2018-08-05 2021-08-04 2018 2021
## 19147 2018-07-17 2021-07-16 2018 2021
## 19148 2018-08-10 2021-08-10 2018 2021
## 19149 2018-09-10 2021-09-09 2018 2021
## 19150 2017-11-19 2020-11-19 2017 2020
## 19151 2018-03-25 2021-03-24 2018 2021
## 19152 2018-04-18 2021-04-17 2018 2021
## 19153 2018-08-15 2021-08-14 2018 2021
## 19154 2018-09-23 2021-09-22 2018 2021
## 19155 2018-12-13 2021-12-12 2018 2021
## 19156 2018-08-23 2021-08-22 2018 2021
## 19157 2018-07-08 2021-07-07 2018 2021
## 19158 2018-08-27 2021-08-26 2018 2021
## 19159 2018-09-30 2021-09-29 2018 2021
## 19160 2018-08-14 2021-08-13 2018 2021
## 19161 2018-06-03 2021-06-02 2018 2021
## 19162 2018-06-28 2021-06-27 2018 2021
## 19163 2018-06-25 2021-06-24 2018 2021
## 19164 2018-08-27 2021-08-26 2018 2021
## 19165 2018-02-27 2021-02-26 2018 2021
## 19166 2018-06-14 2021-06-14 2018 2021
## 19167 2017-11-30 2020-11-29 2017 2020
## 19168 2018-09-05 2021-09-04 2018 2021
## 19169 2018-05-14 2021-05-14 2018 2021
## 19170 2018-01-14 2021-01-13 2018 2021
## 19171 2018-07-31 2021-07-30 2018 2021
## 19172 2018-09-30 2021-09-29 2018 2021
## 19173 2018-07-11 2021-07-10 2018 2021
## 19174 2018-07-17 2021-07-16 2018 2021
## 19175 2018-09-06 2020-09-05 2018 2020
## 19176 2018-03-18 2021-03-17 2018 2021
## 19177 2018-07-22 2021-07-21 2018 2021
## 19178 2018-05-07 2021-05-06 2018 2021
## 19179 2018-08-31 2021-08-30 2018 2021
## 19180 2018-06-24 2021-06-24 2018 2021
## 19181 2018-09-13 2021-09-13 2018 2021
## 19182 2018-07-22 2021-07-21 2018 2021
## 19183 2018-05-08 2021-05-07 2018 2021
## 19184 2018-02-18 2021-02-17 2018 2021
## 19185 2018-09-19 2021-09-19 2018 2021
## 19186 2018-09-11 2021-09-11 2018 2021
## 19187 2018-03-04 2021-03-03 2018 2021
## 19188 2018-09-02 2021-09-01 2018 2021
## 19189 2018-01-30 2021-01-30 2018 2021
## 19190 2018-08-29 2021-08-29 2018 2021
## 19191 2018-08-31 2021-08-31 2018 2021
## 19192 2018-08-31 2021-08-30 2018 2021
## 19193 2018-04-02 2021-04-01 2018 2021
## 19194 2018-10-09 2021-10-08 2018 2021
## 19195 2018-08-27 2021-08-27 2018 2021
## 19196 2018-08-19 2021-08-19 2018 2021
## 19197 2018-09-09 2021-09-08 2018 2021
## 19198 2017-10-25 2020-10-20 2017 2020
## 19199 2018-09-22 2021-09-21 2018 2021
## 19200 2018-05-01 2021-04-30 2018 2021
## 19201 2018-10-21 2021-10-21 2018 2021
## 19202 2018-06-30 2021-06-29 2018 2021
## 19203 2018-11-14 2021-11-13 2018 2021
## 19204 2017-10-04 2020-10-03 2017 2020
## 19205 2018-08-06 2021-08-05 2018 2021
## 19206 2018-06-20 2021-06-19 2018 2021
## 19207 2019-01-01 2021-12-31 2019 2021
## 19208 2018-08-31 2021-08-30 2018 2021
## 19209 2018-08-31 2021-08-31 2018 2021
## 19210 2018-08-19 2021-08-18 2018 2021
## 19211 2017-11-06 2020-11-05 2017 2020
## 19212 2018-09-07 2021-09-06 2018 2021
## 19213 2018-09-12 2021-09-11 2018 2021
## 19214 2018-08-24 2021-08-24 2018 2021
## 19215 2018-09-20 2021-09-19 2018 2021
## 19216 2018-01-22 2021-01-21 2018 2021
## 19217 2018-09-05 2021-09-05 2018 2021
## 19218 2018-08-31 2021-08-30 2018 2021
## 19219 2018-08-24 2021-08-21 2018 2021
## 19220 2018-09-21 2021-09-20 2018 2021
## 19221 2018-02-06 2021-02-05 2018 2021
## 19222 2018-09-15 2021-09-14 2018 2021
## 19223 2018-08-15 2021-08-14 2018 2021
## 19224 2018-08-03 2021-08-02 2018 2021
## 19225 2018-07-31 2021-07-30 2018 2021
## 19226 2018-03-31 2021-03-30 2018 2021
## 19227 2018-08-09 2019-08-14 2018 2019
## 19228 2017-09-25 2020-09-24 2017 2020
## 19229 2018-08-23 2021-08-23 2018 2021
## 19230 2018-09-13 2021-09-12 2018 2021
## 19231 2018-06-10 2020-08-30 2018 2020
## 19232 2018-04-20 2021-04-20 2018 2021
## 19233 2018-08-21 2021-08-20 2018 2021
## 19234 2018-09-18 2021-09-18 2018 2021
## 19235 2018-02-19 2021-02-16 2018 2021
## 19236 2018-09-08 2021-09-07 2018 2021
## 19237 2018-05-26 2021-05-25 2018 2021
## 19238 2018-05-15 2021-05-15 2018 2021
## 19239 2017-11-01 2020-07-01 2017 2020
## 19240 2018-09-16 2021-09-15 2018 2021
## 19241 2018-03-31 2021-03-30 2018 2021
## 19242 2018-09-19 2021-09-18 2018 2021
## 19243 2018-09-19 2021-09-18 2018 2021
## 19244 2018-08-19 2021-08-19 2018 2021
## 19245 2018-06-24 2020-02-16 2018 2020
## 19246 2018-08-06 2021-08-05 2018 2021
## 19247 2018-09-30 2021-09-29 2018 2021
## 19248 2018-06-14 2021-06-14 2018 2021
## 19249 2018-07-27 2021-07-27 2018 2021
## 19250 2018-07-21 2021-03-29 2018 2021
## 19251 2018-06-30 2021-06-27 2018 2021
## 19252 2018-05-21 2021-05-21 2018 2021
## 19253 2018-09-09 2021-09-08 2018 2021
## 19254 2018-07-17 2021-07-17 2018 2021
## 19255 2018-04-22 2021-04-21 2018 2021
## 19256 2018-09-06 2021-09-05 2018 2021
## 19257 2018-08-14 2021-08-13 2018 2021
## 19258 2018-01-25 2021-01-24 2018 2021
## 19259 2018-01-18 2021-01-18 2018 2021
## 19260 2018-04-05 2021-04-05 2018 2021
## 19261 2018-09-02 2021-09-01 2018 2021
## 19262 2018-02-04 2021-02-03 2018 2021
## 19263 2018-09-15 2021-09-14 2018 2021
## 19264 2018-02-09 2021-02-08 2018 2021
## 19265 2018-08-31 2021-08-31 2018 2021
## 19266 2017-11-26 2020-11-26 2017 2020
## 19267 2018-07-29 2021-07-29 2018 2021
## 19268 2018-09-18 2021-09-18 2018 2021
## 19269 2018-04-15 2021-04-06 2018 2021
## 19270 2018-09-03 2021-09-02 2018 2021
## 19271 2018-09-01 2021-08-31 2018 2021
## 19272 2018-08-16 2020-09-29 2018 2020
## 19273 2018-09-23 2021-09-23 2018 2021
## 19274 2018-12-13 2021-12-12 2018 2021
## 19275 2018-05-31 2021-05-30 2018 2021
## 19276 2018-07-11 2021-04-29 2018 2021
## 19277 2017-09-27 2020-09-26 2017 2020
## 19278 2018-09-25 2021-09-25 2018 2021
## 19279 2018-08-26 2021-08-25 2018 2021
## 19280 2018-09-11 2021-09-11 2018 2021
## 19281 2018-08-27 2021-08-26 2018 2021
## 19282 2018-06-06 2021-06-05 2018 2021
## 19283 2018-08-30 2021-08-29 2018 2021
## 19284 2018-09-28 2021-09-28 2018 2021
## 19285 2017-11-06 2020-11-06 2017 2020
## 19286 2018-08-19 2021-08-19 2018 2021
## 19287 2018-09-04 2021-09-03 2018 2021
## 19288 2017-10-03 2020-10-02 2017 2020
## 19289 2018-08-12 2021-08-11 2018 2021
## 19290 2017-12-19 2020-12-18 2017 2020
## 19291 2018-05-30 2021-05-29 2018 2021
## 19292 2018-07-14 2021-07-14 2018 2021
## 19293 2017-10-29 2020-10-28 2017 2020
## 19294 2018-08-06 2021-08-05 2018 2021
## 19295 2018-06-13 2021-06-13 2018 2021
## 19296 2017-12-21 2020-12-18 2017 2020
## 19297 2018-07-19 2021-07-18 2018 2021
## 19298 2018-08-05 2021-08-04 2018 2021
## 19299 2018-05-31 2020-05-30 2018 2020
## 19300 2018-08-06 2021-08-05 2018 2021
## 19301 2018-08-20 2021-08-19 2018 2021
## 19302 2018-08-02 2021-08-01 2018 2021
## 19303 2018-08-02 2021-08-01 2018 2021
## 19304 2018-09-10 2021-09-09 2018 2021
## 19305 2018-09-11 2021-09-10 2018 2021
## 19306 2018-09-09 2021-09-09 2018 2021
## 19307 2017-10-08 2020-10-08 2017 2020
## 19308 2018-07-28 2021-07-28 2018 2021
## 19309 2018-05-20 2021-05-20 2018 2021
## 19310 2018-08-31 2021-08-30 2018 2021
## 19311 2018-05-21 2021-05-20 2018 2021
## 19312 2018-01-10 2021-01-09 2018 2021
## 19313 2018-06-14 2021-06-14 2018 2021
## 19314 2018-09-12 2021-09-11 2018 2021
## 19315 2018-04-30 2021-04-29 2018 2021
## 19316 2018-09-20 2021-09-20 2018 2021
## 19317 2017-10-16 2020-10-15 2017 2020
## 19318 2018-03-30 2021-03-29 2018 2021
## 19319 2018-01-31 2021-01-28 2018 2021
## 19320 2018-09-18 2021-09-17 2018 2021
## 19321 2018-03-22 2021-03-22 2018 2021
## 19322 2018-03-30 2021-03-29 2018 2021
## 19323 2018-06-21 2020-06-20 2018 2020
## 19324 2018-09-12 2021-09-12 2018 2021
## 19325 2018-04-22 2021-04-21 2018 2021
## 19326 2018-03-26 2021-03-26 2018 2021
## 19327 2018-06-30 2021-06-30 2018 2021
## 19328 2018-09-06 2021-09-05 2018 2021
## 19329 2018-09-02 2021-09-01 2018 2021
## 19330 2018-04-10 2021-04-10 2018 2021
## 19331 2018-09-03 2021-09-02 2018 2021
## 19332 2018-08-31 2021-08-30 2018 2021
## 19333 2018-08-27 2021-08-26 2018 2021
## 19334 2018-08-19 2021-08-18 2018 2021
## 19335 2018-04-30 2018-09-27 2018 2018
## 19336 2018-08-28 2021-08-28 2018 2021
## 19337 2018-03-19 2021-03-19 2018 2021
## 19338 2018-08-19 2021-08-18 2018 2021
## 19339 2018-01-10 2018-12-30 2018 2018
## 19340 2017-12-03 2020-12-02 2017 2020
## 19341 2018-09-06 2021-09-05 2018 2021
## 19342 2018-10-05 2021-10-05 2018 2021
## 19343 2018-08-22 2021-08-22 2018 2021
## 19344 2018-09-17 2021-09-17 2018 2021
## 19345 2018-09-09 2021-09-08 2018 2021
## 19346 2018-06-30 2021-06-29 2018 2021
## 19347 2018-04-15 2021-04-14 2018 2021
## 19348 2017-11-13 2020-11-12 2017 2020
## 19349 2018-07-11 2021-07-10 2018 2021
## 19350 2018-08-01 2021-07-31 2018 2021
## 19351 2018-05-30 2021-05-29 2018 2021
## 19352 2017-10-26 2020-10-25 2017 2020
## 19353 2018-09-18 2021-09-17 2018 2021
## 19354 2018-07-02 2021-07-02 2018 2021
## 19355 2018-08-24 2021-08-23 2018 2021
## 19356 2018-07-22 2021-07-21 2018 2021
## 19357 2018-05-15 2021-05-14 2018 2021
## 19358 2018-07-08 2021-07-07 2018 2021
## 19359 2018-09-09 2021-09-09 2018 2021
## 19360 2018-05-07 2021-05-06 2018 2021
## 19361 2018-09-19 2021-09-18 2018 2021
## 19362 2018-08-28 2021-08-27 2018 2021
## 19363 2017-11-12 2020-11-11 2017 2020
## 19364 2017-11-06 2020-11-05 2017 2020
## 19365 2018-09-30 2021-09-30 2018 2021
## 19366 2018-08-31 2021-08-30 2018 2021
## 19367 2018-05-31 2021-05-30 2018 2021
## 19368 2018-09-17 2021-09-16 2018 2021
## 19369 2018-06-14 2021-06-14 2018 2021
## 19370 2018-09-02 2021-09-02 2018 2021
## 19371 2017-10-24 2020-10-23 2017 2020
## 19372 2018-05-20 2021-05-20 2018 2021
## 19373 2018-08-03 2021-08-02 2018 2021
## 19374 2018-09-08 2021-09-07 2018 2021
## 19375 2018-06-30 2021-06-29 2018 2021
## 19376 2017-10-09 2020-10-09 2017 2020
## 19377 2017-11-30 2020-11-29 2017 2020
## 19378 2018-09-06 2021-09-05 2018 2021
## 19379 2018-08-28 2021-08-27 2018 2021
## 19380 2018-01-29 2018-09-04 2018 2018
## 19381 2018-08-30 2021-08-29 2018 2021
## 19382 2018-07-16 2021-07-15 2018 2021
## 19383 2018-03-31 2021-03-30 2018 2021
## 19384 2018-04-07 2021-04-06 2018 2021
## 19385 2018-08-01 2021-07-31 2018 2021
## 19386 2018-04-21 2021-04-20 2018 2021
## 19387 2018-06-30 2021-06-29 2018 2021
## 19388 2018-03-11 2021-03-10 2018 2021
## 19389 2018-06-14 2021-06-14 2018 2021
## 19390 2018-09-30 2021-09-29 2018 2021
## 19391 2018-08-05 2021-08-04 2018 2021
## 19392 2018-08-31 2021-08-30 2018 2021
## 19393 2018-08-31 2021-08-30 2018 2021
## 19394 2018-09-12 2021-09-11 2018 2021
## 19395 2018-09-30 2021-09-30 2018 2021
## 19396 2018-04-23 2021-04-22 2018 2021
## 19397 2018-09-30 2021-09-29 2018 2021
## 19398 2018-02-25 2021-02-25 2018 2021
## 19399 2018-08-30 2021-08-29 2018 2021
## 19400 2018-08-07 2021-08-07 2018 2021
## 19401 2018-08-30 2021-08-30 2018 2021
## 19402 2018-03-17 2021-03-16 2018 2021
## 19403 2018-01-21 2021-01-20 2018 2021
## 19404 2018-04-12 2021-04-09 2018 2021
## 19405 2018-07-22 2021-07-21 2018 2021
## 19406 2018-09-15 2021-09-15 2018 2021
## 19407 2017-11-07 2020-11-06 2017 2020
## 19408 2018-02-04 2021-02-04 2018 2021
## 19409 2018-09-01 2021-08-31 2018 2021
## 19410 2018-11-04 2021-11-04 2018 2021
## 19411 2018-08-19 2021-08-18 2018 2021
## 19412 2019-02-10 2022-02-09 2019 2022
## 19413 2018-06-30 2018-10-25 2018 2018
## 19414 2018-09-14 2021-09-13 2018 2021
## 19415 2018-08-31 2021-08-31 2018 2021
## 19416 2018-02-28 2021-02-28 2018 2021
## 19417 2018-05-21 2021-05-18 2018 2021
## 19418 2018-01-28 2021-01-27 2018 2021
## 19419 2018-03-25 2021-03-25 2018 2021
## 19420 2018-07-18 2021-07-17 2018 2021
## 19421 2017-12-12 2020-12-11 2017 2020
## 19422 2018-08-31 2021-08-30 2018 2021
## 19423 2018-05-27 2021-05-26 2018 2021
## 19424 2018-09-03 2021-09-02 2018 2021
## 19425 2018-04-13 2021-04-12 2018 2021
## 19426 2018-10-02 2021-10-01 2018 2021
## 19427 2018-08-14 2021-08-14 2018 2021
## 19428 2018-05-14 2021-05-13 2018 2021
## 19429 2018-09-11 2021-09-10 2018 2021
## 19430 2018-09-05 2021-09-04 2018 2021
## 19431 2018-08-31 2019-06-29 2018 2019
## 19432 2018-08-12 2021-08-11 2018 2021
## 19433 2018-03-31 2021-03-30 2018 2021
## 19434 2018-06-14 2021-06-14 2018 2021
## 19435 2018-08-29 2021-07-31 2018 2021
## 19436 2018-04-30 2019-06-29 2018 2019
## 19437 2018-09-17 2021-09-16 2018 2021
## 19438 2018-01-08 2021-01-07 2018 2021
## 19439 2018-09-05 2021-09-04 2018 2021
## 19440 2018-07-28 2021-07-27 2018 2021
## 19441 2018-08-21 2021-08-20 2018 2021
## 19442 2018-09-04 2021-09-03 2018 2021
## 19443 2017-10-05 2020-10-04 2017 2020
## 19444 2018-09-29 2021-09-28 2018 2021
## 19445 2018-02-04 2018-09-30 2018 2018
## 19446 2018-09-10 2021-09-09 2018 2021
## 19447 2017-12-31 2020-12-30 2017 2020
## 19448 2018-10-14 2021-10-13 2018 2021
## 19449 2017-12-25 2020-12-25 2017 2020
## 19450 2018-08-03 2021-08-02 2018 2021
## 19451 2018-12-23 2021-12-23 2018 2021
## 19452 2018-01-01 2021-01-01 2018 2021
## 19453 2018-01-28 2020-01-27 2018 2020
## 19454 2018-09-18 2021-09-18 2018 2021
## 19455 2017-12-19 2020-12-18 2017 2020
## 19456 2018-07-31 2021-07-30 2018 2021
## 19457 2018-08-21 2021-08-20 2018 2021
## 19458 2018-06-19 2021-06-18 2018 2021
## 19459 2018-08-26 2021-08-25 2018 2021
## 19460 2018-07-31 2021-07-14 2018 2021
## 19461 2018-08-25 2021-08-24 2018 2021
## 19462 2018-08-26 2021-08-25 2018 2021
## 19463 2018-06-24 2021-06-23 2018 2021
## 19464 2018-09-19 2021-09-19 2018 2021
## 19465 2018-08-31 2021-08-30 2018 2021
## 19466 2018-07-18 2021-07-17 2018 2021
## 19467 2018-06-18 2021-06-18 2018 2021
## 19468 2018-03-31 2021-03-30 2018 2021
## 19469 2018-08-19 2021-08-18 2018 2021
## 19470 2019-01-03 2022-01-02 2019 2022
## 19471 2018-06-14 2021-06-14 2018 2021
## 19472 2018-07-01 2021-06-30 2018 2021
## 19473 2018-10-15 2021-10-15 2018 2021
## 19474 2017-11-14 2020-11-14 2017 2020
## 19475 2018-12-30 2021-12-30 2018 2021
## 19476 2018-08-25 2021-08-25 2018 2021
## 19477 2018-08-22 2021-08-22 2018 2021
## 19478 2018-03-18 2020-01-15 2018 2020
## 19479 2018-06-06 2020-06-05 2018 2020
## 19480 2018-08-08 2021-08-08 2018 2021
## 19481 2018-08-29 2021-08-28 2018 2021
## 19482 2018-07-31 2021-07-28 2018 2021
## 19483 2018-01-28 2021-01-27 2018 2021
## 19484 2018-08-01 2021-07-31 2018 2021
## 19485 2018-03-31 2021-03-31 2018 2021
## 19486 2017-11-12 2018-11-11 2017 2018
## 19487 2018-02-20 2020-12-30 2018 2020
## 19488 2018-07-01 2021-06-30 2018 2021
## 19489 2018-06-14 2021-06-14 2018 2021
## 19490 2018-04-22 2021-04-21 2018 2021
## 19491 2018-03-08 2021-03-03 2018 2021
## 19492 2018-09-10 2021-09-09 2018 2021
## 19493 2017-10-19 2020-10-19 2017 2020
## 19494 2018-02-25 2019-02-26 2018 2019
## 19495 2018-04-01 2021-03-31 2018 2021
## 19496 2018-03-31 2021-03-30 2018 2021
## 19497 2018-06-20 2021-06-19 2018 2021
## 19498 2018-09-30 2021-09-29 2018 2021
## 19499 2018-09-10 2021-09-09 2018 2021
## 19500 2018-09-20 2021-09-20 2018 2021
## 19501 2018-09-05 2021-09-04 2018 2021
## 19502 2018-09-04 2021-09-03 2018 2021
## 19503 2018-09-21 2021-09-20 2018 2021
## 19504 2018-09-06 2021-09-06 2018 2021
## 19505 2018-08-31 2021-08-30 2018 2021
## 19506 2017-10-25 2020-10-24 2017 2020
## 19507 2018-07-05 2021-07-04 2018 2021
## 19508 2018-05-22 2021-05-21 2018 2021
## 19509 2018-05-21 2021-05-19 2018 2021
## 19510 2017-12-21 2020-12-20 2017 2020
## 19511 2018-04-16 2019-12-26 2018 2019
## 19512 2018-09-07 2021-09-07 2018 2021
## 19513 2018-04-02 2020-08-30 2018 2020
## 19514 2018-08-31 2019-12-30 2018 2019
## 19515 2018-06-30 2021-06-29 2018 2021
## 19516 2018-05-28 2021-05-26 2018 2021
## 19517 2018-08-31 2021-08-30 2018 2021
## 19518 2018-01-31 2021-01-30 2018 2021
## 19519 2018-09-03 2021-09-03 2018 2021
## 19520 2018-09-11 2021-09-10 2018 2021
## 19521 2017-11-30 2020-11-29 2017 2020
## 19522 2018-09-15 2021-09-14 2018 2021
## 19523 2018-09-06 2021-09-05 2018 2021
## 19524 2018-09-06 2021-09-05 2018 2021
## 19525 2018-08-25 2021-08-25 2018 2021
## 19526 2018-09-25 2021-09-24 2018 2021
## 19527 2018-07-31 2021-07-30 2018 2021
## 19528 2018-09-09 2021-09-08 2018 2021
## 19529 2018-08-20 2021-08-19 2018 2021
## 19530 2018-08-31 2021-08-29 2018 2021
## 19531 2018-08-16 2021-08-15 2018 2021
## 19532 2017-10-29 2020-10-28 2017 2020
## 19533 2018-02-11 2021-02-11 2018 2021
## 19534 2018-05-07 2021-05-06 2018 2021
## 19535 2018-09-08 2021-09-07 2018 2021
## 19536 2018-08-30 2021-08-29 2018 2021
## 19537 2018-07-31 2021-07-30 2018 2021
## 19538 2019-03-11 2022-03-11 2019 2022
## 19539 2018-08-24 2021-08-23 2018 2021
## 19540 2018-04-11 2021-04-10 2018 2021
## 19541 2018-08-31 2021-08-31 2018 2021
## 19542 2018-04-02 2021-04-01 2018 2021
## 19543 2018-04-19 2021-04-18 2018 2021
## 19544 2017-11-06 2018-09-15 2017 2018
## 19545 2018-08-19 2021-08-18 2018 2021
## 19546 2018-08-05 2021-08-05 2018 2021
## 19547 2017-10-31 2020-10-30 2017 2020
## 19548 2018-05-31 2021-05-31 2018 2021
## 19549 2018-07-21 2021-07-20 2018 2021
## 19550 2018-08-31 2021-08-29 2018 2021
## 19551 2018-09-09 2021-09-08 2018 2021
## 19552 2018-08-12 2021-08-12 2018 2021
## 19553 2018-09-30 2021-09-29 2018 2021
## 19554 2018-08-28 2021-08-27 2018 2021
## 19555 2018-06-30 2019-12-30 2018 2019
## 19556 2018-09-19 2021-09-18 2018 2021
## 19557 2018-06-30 2021-06-29 2018 2021
## 19558 2018-08-29 2021-08-29 2018 2021
## 19559 2018-09-19 2021-09-18 2018 2021
## 19560 2018-06-30 2021-06-29 2018 2021
## 19561 2018-07-31 2021-07-31 2018 2021
## 19562 2018-02-04 2021-02-03 2018 2021
## 19563 2018-09-14 2021-09-14 2018 2021
## 19564 2018-10-29 2021-10-29 2018 2021
## 19565 2018-04-29 2021-04-29 2018 2021
## 19566 2017-12-14 2019-12-30 2017 2019
## 19567 2018-01-27 2021-01-22 2018 2021
## 19568 2018-03-10 2021-03-07 2018 2021
## 19569 2018-07-08 2021-07-07 2018 2021
## 19570 2018-09-01 2021-08-31 2018 2021
## 19571 2018-06-15 2021-06-14 2018 2021
## 19572 2018-08-31 2021-08-31 2018 2021
## 19573 2018-06-13 2020-06-29 2018 2020
## 19574 2018-06-11 2021-06-10 2018 2021
## 19575 2018-09-01 2021-08-31 2018 2021
## 19576 2018-09-20 2021-09-20 2018 2021
## 19577 2018-10-07 2021-10-06 2018 2021
## 19578 2018-08-30 2021-08-29 2018 2021
## 19579 2018-08-07 2021-08-07 2018 2021
## 19580 2018-09-14 2021-09-13 2018 2021
## 19581 2018-08-31 2021-08-30 2018 2021
## 19582 2018-09-11 2021-09-11 2018 2021
## 19583 2018-07-20 2021-07-19 2018 2021
## 19584 2018-09-08 2021-09-08 2018 2021
## 19585 2018-08-13 2021-08-13 2018 2021
## 19586 2018-09-11 2021-09-10 2018 2021
## 19587 2018-06-19 2021-06-18 2018 2021
## 19588 2018-06-24 2021-06-23 2018 2021
## 19589 2017-11-20 2020-11-19 2017 2020
## 19590 2018-09-06 2021-09-05 2018 2021
## 19591 2018-04-01 2021-03-31 2018 2021
## 19592 2018-08-01 2020-07-31 2018 2020
## 19593 2018-03-27 2021-03-26 2018 2021
## 19594 2018-09-04 2021-09-03 2018 2021
## 19595 2017-10-22 2020-10-21 2017 2020
## 19596 2018-11-25 2021-11-24 2018 2021
## 19597 2018-09-07 2021-09-06 2018 2021
## 19598 2018-09-04 2021-09-03 2018 2021
## 19599 2017-10-31 2020-10-30 2017 2020
## 19600 2018-07-30 2020-05-19 2018 2020
## 19601 2018-06-30 2021-06-29 2018 2021
## 19602 2018-05-06 2020-04-24 2018 2020
## 19603 2018-09-30 2021-09-30 2018 2021
## 19604 2017-12-19 2020-12-18 2017 2020
## 19605 2018-03-06 2021-03-05 2018 2021
## 19606 2018-07-25 2021-07-24 2018 2021
## 19607 2018-06-17 2021-06-14 2018 2021
## 19608 2018-03-05 2021-03-05 2018 2021
## 19609 2018-07-30 2021-07-30 2018 2021
## 19610 2018-09-03 2021-09-03 2018 2021
## 19611 2018-09-03 2021-09-02 2018 2021
## 19612 2018-08-05 2021-08-04 2018 2021
## 19613 2018-02-13 2020-01-31 2018 2020
## 19614 2018-09-19 2021-09-18 2018 2021
## 19615 2018-01-31 2021-01-30 2018 2021
## 19616 2018-09-16 2021-09-15 2018 2021
## 19617 2018-07-26 2021-07-25 2018 2021
## 19618 2019-03-15 2022-03-14 2019 2022
## 19619 2018-09-07 2021-09-07 2018 2021
## 19620 2018-08-31 2021-08-30 2018 2021
## 19621 2018-09-07 2021-09-06 2018 2021
## 19622 2018-09-19 2021-09-18 2018 2021
## 19623 2018-08-13 2021-08-13 2018 2021
## 19624 2018-02-28 2021-02-27 2018 2021
## 19625 2018-02-28 2021-02-27 2018 2021
## 19626 2017-11-27 2020-11-26 2017 2020
## 19627 2018-04-15 2021-04-14 2018 2021
## 19628 2018-07-31 2021-07-30 2018 2021
## 19629 2018-09-03 2021-09-02 2018 2021
## 19630 2018-08-15 2021-08-14 2018 2021
## 19631 2018-11-07 2021-11-06 2018 2021
## 19632 2018-09-01 2021-08-31 2018 2021
## 19633 2018-07-11 2021-07-10 2018 2021
## 19634 2018-07-27 2021-07-26 2018 2021
## 19635 2018-07-19 2021-07-19 2018 2021
## 19636 2018-09-16 2021-09-15 2018 2021
## 19637 2018-06-29 2021-06-27 2018 2021
## 19638 2018-06-30 2021-06-29 2018 2021
## 19639 2018-08-26 2021-08-26 2018 2021
## 19640 2017-11-02 2020-11-01 2017 2020
## 19641 2018-09-09 2021-09-08 2018 2021
## 19642 2018-07-31 2021-07-30 2018 2021
## 19643 2018-06-14 2021-06-14 2018 2021
## 19644 2018-07-24 2021-07-23 2018 2021
## 19645 2018-02-03 2021-01-31 2018 2021
## 19646 2018-08-14 2021-08-13 2018 2021
## 19647 2018-09-29 2021-09-28 2018 2021
## 19648 2017-10-29 2020-10-28 2017 2020
## 19649 2018-03-05 2021-03-04 2018 2021
## 19650 2018-04-04 2021-04-04 2018 2021
## 19651 2018-08-14 2021-08-14 2018 2021
## 19652 2018-01-11 2021-01-08 2018 2021
## 19653 2018-01-28 2021-01-28 2018 2021
## 19654 2018-09-02 2021-09-01 2018 2021
## 19655 2018-06-02 2021-06-02 2018 2021
## 19656 2018-08-31 2020-08-31 2018 2020
## 19657 2018-03-07 2021-03-06 2018 2021
## 19658 2018-09-04 2021-09-03 2018 2021
## 19659 2018-09-20 2021-09-19 2018 2021
## 19660 2018-08-26 2021-08-25 2018 2021
## 19661 2018-05-03 2021-05-02 2018 2021
## 19662 2018-05-20 2021-05-19 2018 2021
## 19663 2018-07-25 2021-07-24 2018 2021
## 19664 2018-09-08 2021-09-07 2018 2021
## 19665 2018-08-09 2021-08-08 2018 2021
## 19666 2017-11-09 2020-11-09 2017 2020
## 19667 2018-03-31 2021-03-30 2018 2021
## 19668 2018-08-31 2021-08-30 2018 2021
## 19669 2018-09-12 2021-09-11 2018 2021
## 19670 2018-09-10 2021-09-10 2018 2021
## 19671 2018-02-14 2021-02-14 2018 2021
## 19672 2018-08-07 2021-08-06 2018 2021
## 19673 2018-09-08 2021-09-07 2018 2021
## 19674 2018-08-14 2021-08-13 2018 2021
## 19675 2018-08-26 2021-08-25 2018 2021
## 19676 2018-07-12 2021-07-10 2018 2021
## 19677 2018-09-04 2021-09-03 2018 2021
## 19678 2018-08-27 2021-08-27 2018 2021
## 19679 2017-12-04 2020-12-01 2017 2020
## 19680 2018-09-06 2021-09-05 2018 2021
## 19681 2018-09-14 2021-09-14 2018 2021
## 19682 2018-09-10 2021-09-09 2018 2021
## 19683 2018-01-25 2021-01-24 2018 2021
## 19684 2018-08-27 2021-08-26 2018 2021
## 19685 2018-07-08 2021-07-07 2018 2021
## 19686 2019-03-16 2022-03-15 2019 2022
## 19687 2018-09-13 2021-09-12 2018 2021
## 19688 2018-08-30 2021-08-30 2018 2021
## 19689 2018-12-31 2021-12-30 2018 2021
## 19690 2017-12-14 2020-12-13 2017 2020
## 19691 2018-04-29 2021-04-28 2018 2021
## 19692 2017-11-21 2020-11-20 2017 2020
## 19693 2018-03-15 2021-03-12 2018 2021
## 19694 2018-07-01 2021-06-28 2018 2021
## 19695 2017-11-16 2020-11-15 2017 2020
## 19696 2018-05-08 2021-05-08 2018 2021
## 19697 2018-08-09 2021-08-08 2018 2021
## 19698 2017-12-20 2020-12-19 2017 2020
## 19699 2018-01-25 2020-09-29 2018 2020
## 19700 2018-07-15 2021-07-14 2018 2021
## 19701 2018-07-07 2019-07-30 2018 2019
## 19702 2018-01-14 2021-01-13 2018 2021
## 19703 2018-09-17 2021-09-16 2018 2021
## 19704 2018-09-03 2021-09-02 2018 2021
## 19705 2018-01-16 2021-01-15 2018 2021
## 19706 2017-12-11 2020-12-11 2017 2020
## 19707 2018-09-18 2021-09-18 2018 2021
## 19708 2018-09-30 2021-08-19 2018 2021
## 19709 2018-09-06 2021-09-05 2018 2021
## 19710 2017-11-14 2019-10-30 2017 2019
## 19711 2018-01-07 2021-01-06 2018 2021
## 19712 2018-09-10 2021-09-09 2018 2021
## 19713 2018-08-14 2021-08-13 2018 2021
## 19714 2018-09-30 2021-09-29 2018 2021
## 19715 2017-11-07 2020-11-06 2017 2020
## 19716 2018-09-27 2021-09-26 2018 2021
## 19717 2018-08-15 2021-08-14 2018 2021
## 19718 2018-09-13 2021-09-12 2018 2021
## 19719 2018-06-30 2021-06-29 2018 2021
## 19720 2018-08-15 2021-08-14 2018 2021
## 19721 2018-09-19 2021-09-19 2018 2021
## 19722 2018-08-17 2021-08-16 2018 2021
## 19723 2018-09-09 2021-09-08 2018 2021
## 19724 2018-08-31 2021-08-31 2018 2021
## 19725 2018-07-31 2021-07-30 2018 2021
## 19726 2018-09-21 2021-09-21 2018 2021
## 19727 2018-07-08 2021-07-07 2018 2021
## 19728 2018-05-10 2021-05-10 2018 2021
## 19729 2018-09-14 2021-09-13 2018 2021
## 19730 2018-06-30 2021-06-29 2018 2021
## 19731 2017-11-20 2020-11-19 2017 2020
## 19732 2018-07-31 2021-07-30 2018 2021
## 19733 2018-05-28 2021-05-27 2018 2021
## 19734 2018-07-12 2021-07-11 2018 2021
## 19735 2018-03-22 2021-03-22 2018 2021
## 19736 2017-12-27 2020-12-26 2017 2020
## 19737 2018-09-20 2021-09-19 2018 2021
## 19738 2018-03-01 2021-02-28 2018 2021
## 19739 2018-09-07 2021-09-07 2018 2021
## 19740 2018-02-19 2021-02-18 2018 2021
## 19741 2018-09-09 2021-09-08 2018 2021
## 19742 2018-08-22 2021-08-21 2018 2021
## 19743 2018-08-31 2021-08-31 2018 2021
## 19744 2018-08-05 2021-08-05 2018 2021
## 19745 2018-09-07 2021-09-07 2018 2021
## 19746 2018-09-15 2021-09-14 2018 2021
## 19747 2018-03-26 2021-03-26 2018 2021
## 19748 2018-09-18 2021-09-17 2018 2021
## 19749 2018-09-14 2021-09-14 2018 2021
## 19750 2018-09-13 2021-09-12 2018 2021
## 19751 2018-07-31 2021-07-31 2018 2021
## 19752 2018-07-25 2021-07-24 2018 2021
## 19753 2017-11-07 2020-11-05 2017 2020
## 19754 2018-07-08 2021-07-07 2018 2021
## 19755 2018-03-25 2021-03-25 2018 2021
## 19756 2018-08-19 2021-08-18 2018 2021
## 19757 2018-09-04 2021-09-03 2018 2021
## 19758 2018-05-03 2021-05-02 2018 2021
## 19759 2018-06-03 2021-06-02 2018 2021
## 19760 2018-09-12 2021-09-11 2018 2021
## 19761 2018-09-12 2021-09-12 2018 2021
## 19762 2018-07-22 2021-07-21 2018 2021
## 19763 2018-07-31 2021-07-28 2018 2021
## 19764 2018-04-19 2021-04-18 2018 2021
## 19765 2018-08-25 2021-08-24 2018 2021
## 19766 2017-10-11 2020-10-10 2017 2020
## 19767 2018-06-28 2021-06-28 2018 2021
## 19768 2018-09-30 2021-09-29 2018 2021
## 19769 2018-02-04 2021-02-04 2018 2021
## 19770 2018-09-30 2021-09-30 2018 2021
## 19771 2018-03-27 2021-03-26 2018 2021
## 19772 2018-07-22 2021-07-21 2018 2021
## 19773 2017-10-15 2020-10-14 2017 2020
## 19774 2018-08-31 2021-08-31 2018 2021
## 19775 2018-09-02 2021-08-30 2018 2021
## 19776 2019-03-13 2022-03-12 2019 2022
## 19777 2018-03-18 2021-03-17 2018 2021
## 19778 2018-09-14 2021-09-13 2018 2021
## 19779 2018-09-12 2021-09-11 2018 2021
## 19780 2018-05-27 2021-05-27 2018 2021
## 19781 2018-07-01 2021-06-23 2018 2021
## 19782 2018-09-09 2021-09-08 2018 2021
## 19783 2017-12-17 2020-12-16 2017 2020
## 19784 2018-09-17 2021-09-17 2018 2021
## 19785 2018-02-26 2020-11-07 2018 2020
## 19786 2018-04-22 2021-04-21 2018 2021
## 19787 2018-09-04 2021-09-03 2018 2021
## 19788 2018-01-23 2021-01-22 2018 2021
## 19789 2018-06-14 2021-06-14 2018 2021
## 19790 2018-09-11 2021-09-11 2018 2021
## 19791 2018-06-17 2021-06-17 2018 2021
## 19792 2018-02-28 2021-02-27 2018 2021
## 19793 2018-09-19 2021-09-18 2018 2021
## 19794 2018-08-31 2021-08-30 2018 2021
## 19795 2018-09-04 2021-09-03 2018 2021
## 19796 2018-09-09 2021-09-08 2018 2021
## 19797 2018-07-17 2021-07-17 2018 2021
## 19798 2018-09-17 2021-09-16 2018 2021
## 19799 2018-07-04 2021-07-03 2018 2021
## 19800 2018-08-08 2021-08-07 2018 2021
## 19801 2018-09-10 2021-09-09 2018 2021
## 19802 2018-05-18 2021-05-15 2018 2021
## 19803 2018-10-28 2021-10-27 2018 2021
## 19804 2018-09-11 2021-09-11 2018 2021
## 19805 2018-09-04 2021-09-03 2018 2021
## 19806 2018-08-31 2021-08-30 2018 2021
## 19807 2018-09-06 2021-09-06 2018 2021
## 19808 2018-07-15 2021-06-29 2018 2021
## 19809 2018-09-07 2021-09-06 2018 2021
## 19810 2018-08-27 2021-08-26 2018 2021
## 19811 2018-08-31 2021-08-30 2018 2021
## 19812 2018-07-25 2021-07-24 2018 2021
## 19813 2018-09-09 2021-09-08 2018 2021
## 19814 2018-07-31 2021-07-30 2018 2021
## 19815 2017-12-20 2020-12-19 2017 2020
## 19816 2019-01-10 2022-01-10 2019 2022
## 19817 2018-07-08 2021-07-07 2018 2021
## 19818 2017-11-12 2020-11-11 2017 2020
## 19819 2018-09-03 2021-09-03 2018 2021
## 19820 2018-05-14 2021-05-13 2018 2021
## 19821 2018-06-04 2020-07-31 2018 2020
## 19822 2018-08-31 2021-08-30 2018 2021
## 19823 2017-11-08 2020-11-08 2017 2020
## 19824 2018-07-30 2021-07-29 2018 2021
## 19825 2018-07-10 2021-07-09 2018 2021
## 19826 2018-08-31 2021-08-30 2018 2021
## 19827 2018-07-24 2021-07-24 2018 2021
## 19828 2017-10-24 2020-10-23 2017 2020
## 19829 2018-07-23 2021-07-22 2018 2021
## 19830 2018-08-19 2021-08-18 2018 2021
## 19831 2018-01-28 2021-01-28 2018 2021
## 19832 2018-09-06 2021-09-05 2018 2021
## 19833 2018-07-04 2021-07-04 2018 2021
## 19834 2018-08-21 2021-08-21 2018 2021
## 19835 2018-09-08 2021-09-08 2018 2021
## 19836 2018-04-06 2021-04-05 2018 2021
## 19837 2018-08-23 2021-08-22 2018 2021
## 19838 2018-08-31 2021-08-31 2018 2021
## 19839 2018-02-24 2021-02-21 2018 2021
## 19840 2018-05-16 2021-05-16 2018 2021
## 19841 2018-08-31 2021-08-30 2018 2021
## 19842 2018-09-17 2021-09-16 2018 2021
## 19843 2018-09-09 2021-09-08 2018 2021
## 19844 2018-07-05 2021-07-04 2018 2021
## 19845 2018-09-03 2021-09-02 2018 2021
## 19846 2018-02-14 2021-02-14 2018 2021
## 19847 2018-01-18 2021-01-17 2018 2021
## 19848 2018-06-30 2021-06-29 2018 2021
## 19849 2018-08-04 2021-08-03 2018 2021
## 19850 2018-06-17 2021-06-14 2018 2021
## 19851 2018-01-29 2021-01-29 2018 2021
## 19852 2018-08-28 2021-08-28 2018 2021
## 19853 2018-09-02 2021-09-01 2018 2021
## 19854 2018-05-27 2021-05-26 2018 2021
## 19855 2018-07-31 2021-07-30 2018 2021
## 19856 2018-09-07 2021-09-07 2018 2021
## 19857 2018-09-24 2021-09-24 2018 2021
## 19858 2018-07-11 2021-07-10 2018 2021
## 19859 2018-08-03 2021-08-02 2018 2021
## 19860 2018-11-09 2021-11-09 2018 2021
## 19861 2017-11-15 2020-09-08 2017 2020
## 19862 2018-06-05 2021-06-04 2018 2021
## 19863 2018-04-27 2021-04-26 2018 2021
## 19864 2018-05-20 2021-05-20 2018 2021
## 19865 2018-08-24 2021-08-23 2018 2021
## 19866 2018-08-26 2021-08-25 2018 2021
## 19867 2018-09-16 2021-09-15 2018 2021
## 19868 2018-03-26 2021-03-26 2018 2021
## 19869 2018-01-28 2021-01-27 2018 2021
## 19870 2018-09-08 2021-09-07 2018 2021
## 19871 2017-10-25 2020-10-24 2017 2020
## 19872 2018-07-28 2021-07-27 2018 2021
## 19873 2018-05-17 2021-05-09 2018 2021
## 19874 2018-04-06 2021-04-06 2018 2021
## 19875 2018-09-02 2021-09-01 2018 2021
## 19876 2018-08-26 2021-08-25 2018 2021
## 19877 2018-06-29 2021-06-26 2018 2021
## 19878 2018-08-31 2021-08-31 2018 2021
## 19879 2019-01-10 2022-01-09 2019 2022
## 19880 2018-04-22 2021-04-21 2018 2021
## 19881 2018-09-30 2021-09-30 2018 2021
## 19882 2018-05-30 2021-05-29 2018 2021
## 19883 2017-11-12 2020-11-11 2017 2020
## 19884 2018-06-14 2021-06-14 2018 2021
## 19885 2018-08-30 2021-08-30 2018 2021
## 19886 2018-09-09 2021-09-08 2018 2021
## 19887 2018-08-02 2021-08-01 2018 2021
## 19888 2018-04-30 2021-04-29 2018 2021
## 19889 2018-08-30 2021-08-29 2018 2021
## 19890 2018-08-12 2021-08-11 2018 2021
## 19891 2018-09-02 2021-09-01 2018 2021
## 19892 2018-08-05 2021-08-04 2018 2021
## 19893 2018-02-28 2021-02-28 2018 2021
## 19894 2018-09-27 2021-09-26 2018 2021
## 19895 2018-07-21 2021-07-20 2018 2021
## 19896 2018-08-01 2021-07-31 2018 2021
## 19897 2018-04-17 2021-04-16 2018 2021
## 19898 2018-09-30 2021-09-30 2018 2021
## 19899 2018-08-25 2021-08-24 2018 2021
## 19900 2018-09-30 2021-09-29 2018 2021
## 19901 2018-12-21 2019-12-20 2018 2019
## 19902 2018-06-12 2021-06-11 2018 2021
## 19903 2018-07-26 2021-07-26 2018 2021
## 19904 2018-07-01 2021-07-01 2018 2021
## 19905 2018-03-04 2021-03-03 2018 2021
## 19906 2018-09-06 2021-09-05 2018 2021
## 19907 2018-09-10 2021-09-09 2018 2021
## 19908 2018-02-06 2021-02-05 2018 2021
## 19909 2018-09-25 2021-09-24 2018 2021
## 19910 2018-09-14 2021-05-30 2018 2021
## 19911 2018-08-31 2021-08-30 2018 2021
## 19912 2018-09-11 2021-09-08 2018 2021
## 19913 2018-03-30 2021-03-30 2018 2021
## 19914 2018-08-20 2021-08-20 2018 2021
## 19915 2017-10-08 2020-10-08 2017 2020
## 19916 2018-05-28 2021-05-27 2018 2021
## 19917 2017-10-29 2020-10-28 2017 2020
## 19918 2018-09-09 2021-09-08 2018 2021
## 19919 2018-08-30 2021-08-29 2018 2021
## 19920 2018-05-12 2021-05-11 2018 2021
## 19921 2018-02-20 2021-02-17 2018 2021
## 19922 2018-09-03 2021-09-02 2018 2021
## 19923 2017-11-27 2018-11-26 2017 2018
## 19924 2018-08-14 2021-08-14 2018 2021
## 19925 2018-01-15 2021-01-14 2018 2021
## 19926 2018-09-17 2021-09-17 2018 2021
## 19927 2018-08-30 2021-08-29 2018 2021
## 19928 2018-08-27 2021-08-26 2018 2021
## 19929 2018-09-14 2021-09-14 2018 2021
## 19930 2018-08-27 2021-08-26 2018 2021
## 19931 2018-03-08 2021-03-07 2018 2021
## 19932 2018-03-12 2021-03-11 2018 2021
## 19933 2018-08-01 2021-08-01 2018 2021
## 19934 2017-11-05 2020-04-05 2017 2020
## 19935 2018-08-31 2021-08-31 2018 2021
## 19936 2018-11-10 2021-11-09 2018 2021
## 19937 2018-08-05 2021-08-04 2018 2021
## 19938 2018-06-21 2021-06-20 2018 2021
## 19939 2017-12-03 2020-12-02 2017 2020
## 19940 2018-01-29 2020-01-28 2018 2020
## 19941 2018-04-15 2021-04-14 2018 2021
## 19942 2018-08-14 2021-08-14 2018 2021
## 19943 2018-08-23 2021-08-23 2018 2021
## 19944 2018-08-22 2021-08-22 2018 2021
## 19945 2018-09-05 2021-09-04 2018 2021
## 19946 2018-06-20 2021-06-19 2018 2021
## 19947 2018-04-30 2021-04-29 2018 2021
## 19948 2018-09-30 2021-09-30 2018 2021
## 19949 2018-05-17 2021-05-17 2018 2021
## 19950 2018-09-14 2021-09-13 2018 2021
## 19951 2018-09-12 2021-09-11 2018 2021
## 19952 2018-11-01 2020-10-05 2018 2020
## 19953 2017-11-08 2020-11-07 2017 2020
## 19954 2018-04-05 2021-04-04 2018 2021
## 19955 2018-12-06 2021-12-05 2018 2021
## 19956 2018-09-13 2020-09-29 2018 2020
## 19957 2018-09-25 2021-09-25 2018 2021
## 19958 2017-10-25 2020-08-21 2017 2020
## 19959 2018-06-30 2021-06-29 2018 2021
## 19960 2018-08-28 2021-08-27 2018 2021
## 19961 2018-07-01 2019-06-30 2018 2019
## 19962 2018-10-21 2021-10-20 2018 2021
## 19963 2018-10-25 2021-10-24 2018 2021
## 19964 2018-09-26 2021-09-26 2018 2021
## 19965 2017-10-11 2020-10-11 2017 2020
## 19966 2018-07-22 2021-07-22 2018 2021
## 19967 2019-01-12 2022-01-11 2019 2022
## 19968 2018-03-18 2021-03-17 2018 2021
## 19969 2018-08-14 2021-08-13 2018 2021
## 19970 2018-01-07 2021-01-06 2018 2021
## 19971 2018-08-25 2021-04-05 2018 2021
## 19972 2018-02-28 2021-02-27 2018 2021
## 19973 2018-09-21 2021-09-20 2018 2021
## 19974 2018-05-02 2021-05-01 2018 2021
## 19975 2018-12-23 2021-12-23 2018 2021
## 19976 2018-09-06 2021-09-05 2018 2021
## 19977 2018-05-31 2021-05-31 2018 2021
## 19978 2018-05-24 2021-05-23 2018 2021
## 19979 2018-09-05 2021-09-04 2018 2021
## 19980 2017-10-22 2020-10-21 2017 2020
## 19981 2018-02-25 2021-02-24 2018 2021
## 19982 2018-09-20 2021-09-20 2018 2021
## 19983 2018-09-07 2021-09-06 2018 2021
## 19984 2017-11-09 2020-11-08 2017 2020
## 19985 2018-09-18 2021-09-17 2018 2021
## 19986 2018-07-01 2021-06-29 2018 2021
## 19987 2018-06-20 2021-06-19 2018 2021
## 19988 2018-07-20 2021-07-19 2018 2021
## 19989 2017-12-17 2020-12-17 2017 2020
## 19990 2018-08-31 2021-08-31 2018 2021
## 19991 2018-01-31 2021-01-30 2018 2021
## 19992 2018-02-28 2021-02-27 2018 2021
## 19993 2017-11-19 2019-06-29 2017 2019
## 19994 2018-01-07 2021-01-06 2018 2021
## 19995 2018-09-10 2021-09-10 2018 2021
## 19996 2018-09-08 2021-09-06 2018 2021
## 19997 2018-05-23 2021-05-23 2018 2021
## 19998 2017-11-19 2020-11-18 2017 2020
## 19999 2018-08-12 2021-08-12 2018 2021
## length_time
## 1 3
## 2 3
## 3 3
## 4 3
## 5 3
## 6 3
## 7 3
## 8 3
## 9 3
## 10 3
## 11 3
## 12 3
## 13 3
## 14 3
## 15 3
## 16 3
## 17 3
## 18 3
## 19 1
## 20 3
## 21 3
## 22 3
## 23 3
## 24 3
## 25 3
## 26 3
## 27 3
## 28 3
## 29 3
## 30 3
## 31 3
## 32 3
## 33 3
## 34 3
## 35 3
## 36 3
## 37 3
## 38 3
## 39 3
## 40 3
## 41 3
## 42 1
## 43 3
## 44 3
## 45 3
## 46 3
## 47 3
## 48 3
## 49 3
## 50 3
## 51 3
## 52 3
## 53 0
## 54 3
## 55 3
## 56 3
## 57 3
## 58 3
## 59 3
## 60 3
## 61 3
## 62 3
## 63 3
## 64 3
## 65 3
## 66 3
## 67 3
## 68 3
## 69 3
## 70 3
## 71 3
## 72 3
## 73 3
## 74 3
## 75 3
## 76 3
## 77 3
## 78 3
## 79 3
## 80 3
## 81 1
## 82 3
## 83 2
## 84 3
## 85 3
## 86 3
## 87 3
## 88 3
## 89 2
## 90 2
## 91 3
## 92 3
## 93 3
## 94 3
## 95 3
## 96 3
## 97 3
## 98 3
## 99 3
## 100 3
## 101 3
## 102 3
## 103 3
## 104 3
## 105 3
## 106 3
## 107 3
## 108 3
## 109 3
## 110 3
## 111 3
## 112 3
## 113 3
## 114 3
## 115 3
## 116 3
## 117 3
## 118 3
## 119 3
## 120 3
## 121 3
## 122 3
## 123 3
## 124 3
## 125 2
## 126 3
## 127 3
## 128 3
## 129 3
## 130 3
## 131 3
## 132 3
## 133 3
## 134 3
## 135 3
## 136 3
## 137 3
## 138 3
## 139 3
## 140 3
## 141 3
## 142 3
## 143 3
## 144 3
## 145 3
## 146 3
## 147 3
## 148 3
## 149 3
## 150 3
## 151 3
## 152 3
## 153 3
## 154 3
## 155 3
## 156 3
## 157 1
## 158 3
## 159 3
## 160 3
## 161 3
## 162 1
## 163 3
## 164 3
## 165 3
## 166 3
## 167 3
## 168 3
## 169 3
## 170 3
## 171 3
## 172 3
## 173 2
## 174 3
## 175 3
## 176 3
## 177 3
## 178 3
## 179 3
## 180 3
## 181 3
## 182 3
## 183 3
## 184 3
## 185 3
## 186 3
## 187 3
## 188 3
## 189 3
## 190 3
## 191 3
## 192 3
## 193 3
## 194 3
## 195 3
## 196 3
## 197 3
## 198 3
## 199 3
## 200 3
## 201 3
## 202 3
## 203 3
## 204 3
## 205 3
## 206 3
## 207 3
## 208 3
## 209 3
## 210 3
## 211 3
## 212 3
## 213 3
## 214 2
## 215 2
## 216 3
## 217 3
## 218 3
## 219 3
## 220 3
## 221 3
## 222 3
## 223 3
## 224 3
## 225 3
## 226 3
## 227 3
## 228 3
## 229 3
## 230 2
## 231 3
## 232 3
## 233 3
## 234 3
## 235 3
## 236 3
## 237 3
## 238 3
## 239 3
## 240 3
## 241 3
## 242 3
## 243 3
## 244 3
## 245 3
## 246 3
## 247 3
## 248 3
## 249 3
## 250 3
## 251 3
## 252 3
## 253 3
## 254 3
## 255 3
## 256 3
## 257 3
## 258 3
## 259 3
## 260 3
## 261 3
## 262 3
## 263 3
## 264 3
## 265 3
## 266 3
## 267 3
## 268 0
## 269 3
## 270 3
## 271 3
## 272 3
## 273 3
## 274 3
## 275 3
## 276 3
## 277 3
## 278 3
## 279 3
## 280 3
## 281 3
## 282 3
## 283 3
## 284 3
## 285 3
## 286 3
## 287 3
## 288 3
## 289 3
## 290 3
## 291 3
## 292 3
## 293 3
## 294 3
## 295 3
## 296 3
## 297 3
## 298 3
## 299 3
## 300 3
## 301 3
## 302 3
## 303 3
## 304 3
## 305 3
## 306 3
## 307 3
## 308 3
## 309 2
## 310 3
## 311 3
## 312 3
## 313 1
## 314 3
## 315 3
## 316 2
## 317 3
## 318 3
## 319 3
## 320 3
## 321 3
## 322 3
## 323 3
## 324 3
## 325 3
## 326 3
## 327 3
## 328 3
## 329 3
## 330 3
## 331 1
## 332 3
## 333 3
## 334 3
## 335 3
## 336 1
## 337 3
## 338 3
## 339 3
## 340 3
## 341 1
## 342 3
## 343 3
## 344 1
## 345 3
## 346 2
## 347 3
## 348 3
## 349 3
## 350 3
## 351 3
## 352 3
## 353 2
## 354 3
## 355 3
## 356 3
## 357 3
## 358 3
## 359 3
## 360 3
## 361 3
## 362 1
## 363 2
## 364 3
## 365 3
## 366 3
## 367 3
## 368 3
## 369 3
## 370 3
## 371 2
## 372 3
## 373 2
## 374 3
## 375 3
## 376 3
## 377 3
## 378 3
## 379 3
## 380 3
## 381 3
## 382 3
## 383 3
## 384 3
## 385 3
## 386 3
## 387 3
## 388 3
## 389 3
## 390 3
## 391 3
## 392 3
## 393 3
## 394 3
## 395 2
## 396 3
## 397 3
## 398 3
## 399 3
## 400 3
## 401 3
## 402 3
## 403 3
## 404 3
## 405 3
## 406 3
## 407 3
## 408 3
## 409 3
## 410 3
## 411 3
## 412 3
## 413 3
## 414 3
## 415 3
## 416 3
## 417 3
## 418 3
## 419 3
## 420 2
## 421 3
## 422 3
## 423 3
## 424 3
## 425 3
## 426 3
## 427 3
## 428 3
## 429 3
## 430 3
## 431 3
## 432 3
## 433 2
## 434 3
## 435 3
## 436 3
## 437 3
## 438 3
## 439 2
## 440 3
## 441 3
## 442 3
## 443 3
## 444 3
## 445 3
## 446 3
## 447 3
## 448 3
## 449 3
## 450 3
## 451 3
## 452 3
## 453 3
## 454 3
## 455 3
## 456 3
## 457 2
## 458 3
## 459 2
## 460 2
## 461 3
## 462 3
## 463 2
## 464 3
## 465 3
## 466 3
## 467 2
## 468 3
## 469 3
## 470 3
## 471 2
## 472 2
## 473 3
## 474 3
## 475 3
## 476 3
## 477 3
## 478 3
## 479 3
## 480 3
## 481 0
## 482 3
## 483 3
## 484 3
## 485 3
## 486 3
## 487 3
## 488 3
## 489 3
## 490 3
## 491 3
## 492 3
## 493 3
## 494 3
## 495 3
## 496 3
## 497 3
## 498 3
## 499 3
## 500 3
## 501 3
## 502 3
## 503 3
## 504 3
## 505 3
## 506 3
## 507 1
## 508 3
## 509 3
## 510 3
## 511 3
## 512 3
## 513 3
## 514 0
## 515 3
## 516 3
## 517 1
## 518 3
## 519 3
## 520 3
## 521 3
## 522 3
## 523 3
## 524 3
## 525 3
## 526 3
## 527 3
## 528 3
## 529 3
## 530 3
## 531 3
## 532 3
## 533 3
## 534 3
## 535 3
## 536 3
## 537 3
## 538 3
## 539 3
## 540 3
## 541 3
## 542 0
## 543 3
## 544 3
## 545 3
## 546 3
## 547 3
## 548 3
## 549 3
## 550 3
## 551 3
## 552 3
## 553 3
## 554 3
## 555 3
## 556 3
## 557 3
## 558 1
## 559 3
## 560 3
## 561 3
## 562 3
## 563 3
## 564 3
## 565 3
## 566 3
## 567 3
## 568 3
## 569 3
## 570 3
## 571 3
## 572 3
## 573 3
## 574 3
## 575 3
## 576 3
## 577 3
## 578 3
## 579 3
## 580 3
## 581 3
## 582 3
## 583 3
## 584 3
## 585 3
## 586 3
## 587 3
## 588 3
## 589 3
## 590 3
## 591 1
## 592 3
## 593 3
## 594 3
## 595 3
## 596 3
## 597 3
## 598 3
## 599 3
## 600 3
## 601 3
## 602 3
## 603 3
## 604 3
## 605 3
## 606 3
## 607 3
## 608 3
## 609 3
## 610 3
## 611 3
## 612 3
## 613 3
## 614 2
## 615 3
## 616 3
## 617 3
## 618 3
## 619 3
## 620 3
## 621 3
## 622 3
## 623 3
## 624 3
## 625 3
## 626 3
## 627 3
## 628 3
## 629 3
## 630 3
## 631 3
## 632 3
## 633 3
## 634 3
## 635 3
## 636 3
## 637 3
## 638 3
## 639 3
## 640 3
## 641 3
## 642 3
## 643 3
## 644 3
## 645 3
## 646 3
## 647 3
## 648 3
## 649 3
## 650 3
## 651 3
## 652 3
## 653 2
## 654 3
## 655 3
## 656 3
## 657 3
## 658 3
## 659 3
## 660 3
## 661 2
## 662 3
## 663 3
## 664 3
## 665 3
## 666 3
## 667 3
## 668 3
## 669 3
## 670 3
## 671 3
## 672 3
## 673 3
## 674 3
## 675 3
## 676 3
## 677 2
## 678 3
## 679 3
## 680 3
## 681 3
## 682 3
## 683 3
## 684 3
## 685 3
## 686 3
## 687 3
## 688 3
## 689 2
## 690 3
## 691 3
## 692 3
## 693 3
## 694 3
## 695 3
## 696 3
## 697 3
## 698 3
## 699 3
## 700 3
## 701 3
## 702 3
## 703 3
## 704 3
## 705 3
## 706 3
## 707 1
## 708 3
## 709 3
## 710 1
## 711 3
## 712 3
## 713 3
## 714 3
## 715 3
## 716 3
## 717 3
## 718 3
## 719 3
## 720 3
## 721 3
## 722 3
## 723 3
## 724 3
## 725 3
## 726 3
## 727 3
## 728 3
## 729 3
## 730 3
## 731 3
## 732 3
## 733 3
## 734 3
## 735 3
## 736 3
## 737 3
## 738 3
## 739 1
## 740 3
## 741 1
## 742 3
## 743 3
## 744 1
## 745 3
## 746 3
## 747 3
## 748 3
## 749 3
## 750 3
## 751 3
## 752 3
## 753 3
## 754 3
## 755 3
## 756 3
## 757 3
## 758 3
## 759 3
## 760 3
## 761 3
## 762 3
## 763 3
## 764 3
## 765 3
## 766 2
## 767 3
## 768 3
## 769 3
## 770 3
## 771 3
## 772 3
## 773 3
## 774 3
## 775 3
## 776 3
## 777 3
## 778 3
## 779 3
## 780 2
## 781 3
## 782 3
## 783 3
## 784 3
## 785 3
## 786 3
## 787 3
## 788 3
## 789 3
## 790 3
## 791 3
## 792 3
## 793 3
## 794 3
## 795 3
## 796 3
## 797 3
## 798 3
## 799 3
## 800 3
## 801 3
## 802 3
## 803 3
## 804 3
## 805 3
## 806 3
## 807 3
## 808 3
## 809 3
## 810 3
## 811 2
## 812 3
## 813 3
## 814 3
## 815 3
## 816 3
## 817 3
## 818 3
## 819 3
## 820 3
## 821 3
## 822 3
## 823 3
## 824 3
## 825 3
## 826 3
## 827 3
## 828 3
## 829 3
## 830 3
## 831 1
## 832 3
## 833 3
## 834 3
## 835 3
## 836 3
## 837 3
## 838 3
## 839 3
## 840 3
## 841 3
## 842 3
## 843 3
## 844 3
## 845 3
## 846 3
## 847 3
## 848 3
## 849 3
## 850 3
## 851 3
## 852 3
## 853 3
## 854 3
## 855 3
## 856 3
## 857 1
## 858 3
## 859 3
## 860 3
## 861 3
## 862 1
## 863 3
## 864 3
## 865 3
## 866 3
## 867 3
## 868 3
## 869 3
## 870 3
## 871 3
## 872 3
## 873 3
## 874 3
## 875 2
## 876 3
## 877 3
## 878 3
## 879 3
## 880 3
## 881 3
## 882 3
## 883 3
## 884 1
## 885 3
## 886 3
## 887 3
## 888 3
## 889 3
## 890 3
## 891 3
## 892 3
## 893 3
## 894 3
## 895 1
## 896 3
## 897 3
## 898 3
## 899 3
## 900 3
## 901 3
## 902 3
## 903 3
## 904 3
## 905 3
## 906 3
## 907 3
## 908 3
## 909 3
## 910 3
## 911 3
## 912 3
## 913 3
## 914 3
## 915 3
## 916 1
## 917 1
## 918 3
## 919 3
## 920 3
## 921 3
## 922 3
## 923 3
## 924 3
## 925 3
## 926 3
## 927 3
## 928 3
## 929 3
## 930 3
## 931 3
## 932 3
## 933 3
## 934 3
## 935 3
## 936 3
## 937 3
## 938 3
## 939 3
## 940 3
## 941 3
## 942 3
## 943 3
## 944 3
## 945 3
## 946 3
## 947 3
## 948 3
## 949 3
## 950 3
## 951 2
## 952 3
## 953 3
## 954 3
## 955 1
## 956 2
## 957 3
## 958 3
## 959 3
## 960 3
## 961 3
## 962 3
## 963 3
## 964 3
## 965 3
## 966 3
## 967 3
## 968 3
## 969 3
## 970 3
## 971 3
## 972 3
## 973 3
## 974 3
## 975 3
## 976 3
## 977 3
## 978 3
## 979 3
## 980 3
## 981 3
## 982 3
## 983 3
## 984 3
## 985 3
## 986 3
## 987 3
## 988 3
## 989 3
## 990 3
## 991 2
## 992 3
## 993 3
## 994 3
## 995 1
## 996 3
## 997 3
## 998 3
## 999 3
## 1000 3
## 1001 3
## 1002 3
## 1003 3
## 1004 3
## 1005 3
## 1006 3
## 1007 3
## 1008 3
## 1009 3
## 1010 3
## 1011 3
## 1012 3
## 1013 3
## 1014 3
## 1015 3
## 1016 3
## 1017 3
## 1018 1
## 1019 3
## 1020 3
## 1021 3
## 1022 3
## 1023 3
## 1024 3
## 1025 3
## 1026 3
## 1027 3
## 1028 3
## 1029 3
## 1030 3
## 1031 3
## 1032 3
## 1033 3
## 1034 3
## 1035 3
## 1036 3
## 1037 2
## 1038 3
## 1039 3
## 1040 3
## 1041 3
## 1042 3
## 1043 3
## 1044 3
## 1045 3
## 1046 3
## 1047 3
## 1048 3
## 1049 3
## 1050 3
## 1051 3
## 1052 3
## 1053 3
## 1054 3
## 1055 3
## 1056 3
## 1057 3
## 1058 3
## 1059 3
## 1060 3
## 1061 3
## 1062 3
## 1063 3
## 1064 3
## 1065 3
## 1066 3
## 1067 3
## 1068 3
## 1069 3
## 1070 3
## 1071 3
## 1072 3
## 1073 3
## 1074 3
## 1075 3
## 1076 3
## 1077 3
## 1078 3
## 1079 3
## 1080 3
## 1081 3
## 1082 3
## 1083 3
## 1084 3
## 1085 3
## 1086 3
## 1087 3
## 1088 3
## 1089 3
## 1090 3
## 1091 2
## 1092 3
## 1093 3
## 1094 2
## 1095 3
## 1096 3
## 1097 3
## 1098 2
## 1099 0
## 1100 3
## 1101 3
## 1102 3
## 1103 3
## 1104 1
## 1105 2
## 1106 3
## 1107 3
## 1108 3
## 1109 3
## 1110 3
## 1111 3
## 1112 3
## 1113 3
## 1114 3
## 1115 1
## 1116 3
## 1117 3
## 1118 3
## 1119 3
## 1120 3
## 1121 3
## 1122 3
## 1123 3
## 1124 3
## 1125 3
## 1126 3
## 1127 3
## 1128 0
## 1129 3
## 1130 3
## 1131 3
## 1132 3
## 1133 3
## 1134 1
## 1135 3
## 1136 3
## 1137 3
## 1138 3
## 1139 3
## 1140 3
## 1141 3
## 1142 3
## 1143 3
## 1144 3
## 1145 3
## 1146 1
## 1147 3
## 1148 1
## 1149 3
## 1150 3
## 1151 1
## 1152 3
## 1153 3
## 1154 3
## 1155 3
## 1156 3
## 1157 3
## 1158 3
## 1159 3
## 1160 3
## 1161 3
## 1162 3
## 1163 3
## 1164 3
## 1165 3
## 1166 3
## 1167 3
## 1168 3
## 1169 3
## 1170 2
## 1171 3
## 1172 3
## 1173 3
## 1174 3
## 1175 3
## 1176 3
## 1177 3
## 1178 3
## 1179 3
## 1180 3
## 1181 3
## 1182 3
## 1183 3
## 1184 3
## 1185 3
## 1186 3
## 1187 3
## 1188 3
## 1189 3
## 1190 3
## 1191 3
## 1192 3
## 1193 3
## 1194 3
## 1195 3
## 1196 3
## 1197 2
## 1198 3
## 1199 3
## 1200 3
## 1201 3
## 1202 3
## 1203 3
## 1204 3
## 1205 3
## 1206 3
## 1207 3
## 1208 3
## 1209 3
## 1210 3
## 1211 3
## 1212 1
## 1213 3
## 1214 3
## 1215 3
## 1216 3
## 1217 2
## 1218 3
## 1219 3
## 1220 3
## 1221 3
## 1222 3
## 1223 3
## 1224 3
## 1225 3
## 1226 3
## 1227 3
## 1228 3
## 1229 3
## 1230 3
## 1231 3
## 1232 3
## 1233 3
## 1234 3
## 1235 2
## 1236 3
## 1237 3
## 1238 3
## 1239 3
## 1240 3
## 1241 3
## 1242 3
## 1243 3
## 1244 3
## 1245 3
## 1246 3
## 1247 3
## 1248 3
## 1249 3
## 1250 3
## 1251 3
## 1252 3
## 1253 3
## 1254 2
## 1255 3
## 1256 3
## 1257 3
## 1258 3
## 1259 3
## 1260 3
## 1261 3
## 1262 3
## 1263 3
## 1264 3
## 1265 3
## 1266 3
## 1267 3
## 1268 3
## 1269 3
## 1270 3
## 1271 3
## 1272 3
## 1273 3
## 1274 1
## 1275 3
## 1276 3
## 1277 3
## 1278 3
## 1279 3
## 1280 3
## 1281 3
## 1282 3
## 1283 3
## 1284 3
## 1285 2
## 1286 3
## 1287 3
## 1288 3
## 1289 3
## 1290 3
## 1291 3
## 1292 3
## 1293 3
## 1294 3
## 1295 3
## 1296 3
## 1297 3
## 1298 3
## 1299 3
## 1300 3
## 1301 3
## 1302 3
## 1303 3
## 1304 3
## 1305 3
## 1306 2
## 1307 3
## 1308 3
## 1309 3
## 1310 3
## 1311 3
## 1312 3
## 1313 3
## 1314 3
## 1315 3
## 1316 3
## 1317 3
## 1318 3
## 1319 1
## 1320 3
## 1321 3
## 1322 3
## 1323 3
## 1324 3
## 1325 3
## 1326 3
## 1327 3
## 1328 3
## 1329 3
## 1330 3
## 1331 3
## 1332 3
## 1333 3
## 1334 3
## 1335 3
## 1336 3
## 1337 3
## 1338 3
## 1339 3
## 1340 3
## 1341 3
## 1342 3
## 1343 0
## 1344 3
## 1345 3
## 1346 3
## 1347 3
## 1348 3
## 1349 3
## 1350 3
## 1351 3
## 1352 3
## 1353 3
## 1354 3
## 1355 3
## 1356 3
## 1357 3
## 1358 3
## 1359 3
## 1360 3
## 1361 3
## 1362 3
## 1363 2
## 1364 3
## 1365 3
## 1366 3
## 1367 3
## 1368 3
## 1369 2
## 1370 3
## 1371 3
## 1372 3
## 1373 3
## 1374 3
## 1375 3
## 1376 3
## 1377 3
## 1378 3
## 1379 3
## 1380 3
## 1381 3
## 1382 3
## 1383 3
## 1384 3
## 1385 3
## 1386 3
## 1387 3
## 1388 3
## 1389 3
## 1390 3
## 1391 3
## 1392 3
## 1393 3
## 1394 3
## 1395 3
## 1396 3
## 1397 3
## 1398 3
## 1399 3
## 1400 3
## 1401 3
## 1402 3
## 1403 3
## 1404 3
## 1405 3
## 1406 3
## 1407 3
## 1408 3
## 1409 3
## 1410 3
## 1411 3
## 1412 3
## 1413 3
## 1414 3
## 1415 3
## 1416 3
## 1417 3
## 1418 3
## 1419 3
## 1420 3
## 1421 3
## 1422 3
## 1423 3
## 1424 3
## 1425 3
## 1426 3
## 1427 3
## 1428 2
## 1429 3
## 1430 3
## 1431 3
## 1432 3
## 1433 3
## 1434 3
## 1435 3
## 1436 3
## 1437 3
## 1438 3
## 1439 3
## 1440 3
## 1441 3
## 1442 3
## 1443 3
## 1444 3
## 1445 3
## 1446 3
## 1447 3
## 1448 3
## 1449 3
## 1450 3
## 1451 3
## 1452 3
## 1453 3
## 1454 3
## 1455 3
## 1456 3
## 1457 3
## 1458 3
## 1459 3
## 1460 3
## 1461 3
## 1462 3
## 1463 3
## 1464 3
## 1465 3
## 1466 3
## 1467 3
## 1468 3
## 1469 3
## 1470 3
## 1471 3
## 1472 3
## 1473 3
## 1474 3
## 1475 3
## 1476 3
## 1477 3
## 1478 3
## 1479 3
## 1480 3
## 1481 3
## 1482 3
## 1483 3
## 1484 3
## 1485 3
## 1486 3
## 1487 3
## 1488 3
## 1489 3
## 1490 3
## 1491 3
## 1492 3
## 1493 3
## 1494 3
## 1495 3
## 1496 3
## 1497 3
## 1498 3
## 1499 3
## 1500 3
## 1501 3
## 1502 3
## 1503 3
## 1504 3
## 1505 3
## 1506 3
## 1507 3
## 1508 2
## 1509 3
## 1510 3
## 1511 3
## 1512 3
## 1513 3
## 1514 3
## 1515 3
## 1516 3
## 1517 3
## 1518 3
## 1519 3
## 1520 3
## 1521 3
## 1522 3
## 1523 3
## 1524 3
## 1525 3
## 1526 3
## 1527 3
## 1528 3
## 1529 3
## 1530 3
## 1531 3
## 1532 3
## 1533 3
## 1534 3
## 1535 0
## 1536 3
## 1537 2
## 1538 3
## 1539 3
## 1540 3
## 1541 3
## 1542 0
## 1543 3
## 1544 3
## 1545 3
## 1546 3
## 1547 3
## 1548 2
## 1549 3
## 1550 3
## 1551 3
## 1552 3
## 1553 3
## 1554 3
## 1555 3
## 1556 3
## 1557 3
## 1558 3
## 1559 3
## 1560 3
## 1561 3
## 1562 3
## 1563 3
## 1564 3
## 1565 3
## 1566 3
## 1567 3
## 1568 3
## 1569 3
## 1570 3
## 1571 3
## 1572 3
## 1573 3
## 1574 3
## 1575 3
## 1576 1
## 1577 3
## 1578 3
## 1579 3
## 1580 3
## 1581 3
## 1582 3
## 1583 3
## 1584 3
## 1585 3
## 1586 3
## 1587 3
## 1588 3
## 1589 2
## 1590 3
## 1591 3
## 1592 3
## 1593 3
## 1594 3
## 1595 3
## 1596 3
## 1597 3
## 1598 3
## 1599 3
## 1600 3
## 1601 3
## 1602 3
## 1603 3
## 1604 3
## 1605 1
## 1606 3
## 1607 3
## 1608 3
## 1609 3
## 1610 3
## 1611 3
## 1612 3
## 1613 3
## 1614 3
## 1615 3
## 1616 3
## 1617 3
## 1618 3
## 1619 3
## 1620 3
## 1621 3
## 1622 3
## 1623 1
## 1624 3
## 1625 3
## 1626 3
## 1627 3
## 1628 3
## 1629 3
## 1630 3
## 1631 2
## 1632 1
## 1633 3
## 1634 3
## 1635 3
## 1636 3
## 1637 3
## 1638 3
## 1639 3
## 1640 3
## 1641 3
## 1642 3
## 1643 3
## 1644 3
## 1645 3
## 1646 3
## 1647 3
## 1648 3
## 1649 3
## 1650 3
## 1651 3
## 1652 2
## 1653 3
## 1654 3
## 1655 3
## 1656 3
## 1657 3
## 1658 3
## 1659 3
## 1660 3
## 1661 3
## 1662 3
## 1663 3
## 1664 3
## 1665 3
## 1666 2
## 1667 3
## 1668 3
## 1669 3
## 1670 3
## 1671 3
## 1672 3
## 1673 3
## 1674 3
## 1675 3
## 1676 3
## 1677 3
## 1678 3
## 1679 3
## 1680 3
## 1681 3
## 1682 3
## 1683 2
## 1684 2
## 1685 3
## 1686 3
## 1687 3
## 1688 3
## 1689 3
## 1690 3
## 1691 3
## 1692 3
## 1693 3
## 1694 3
## 1695 3
## 1696 3
## 1697 3
## 1698 3
## 1699 3
## 1700 3
## 1701 3
## 1702 3
## 1703 3
## 1704 3
## 1705 3
## 1706 3
## 1707 3
## 1708 3
## 1709 3
## 1710 3
## 1711 3
## 1712 3
## 1713 3
## 1714 3
## 1715 1
## 1716 3
## 1717 3
## 1718 3
## 1719 3
## 1720 3
## 1721 3
## 1722 3
## 1723 3
## 1724 2
## 1725 3
## 1726 3
## 1727 1
## 1728 3
## 1729 3
## 1730 3
## 1731 3
## 1732 3
## 1733 3
## 1734 1
## 1735 3
## 1736 3
## 1737 3
## 1738 3
## 1739 3
## 1740 3
## 1741 3
## 1742 2
## 1743 3
## 1744 0
## 1745 3
## 1746 3
## 1747 3
## 1748 3
## 1749 3
## 1750 3
## 1751 3
## 1752 3
## 1753 3
## 1754 3
## 1755 3
## 1756 3
## 1757 2
## 1758 0
## 1759 3
## 1760 3
## 1761 3
## 1762 3
## 1763 3
## 1764 3
## 1765 3
## 1766 3
## 1767 3
## 1768 3
## 1769 3
## 1770 3
## 1771 3
## 1772 3
## 1773 3
## 1774 3
## 1775 3
## 1776 3
## 1777 3
## 1778 3
## 1779 3
## 1780 3
## 1781 3
## 1782 3
## 1783 3
## 1784 3
## 1785 3
## 1786 3
## 1787 3
## 1788 3
## 1789 3
## 1790 3
## 1791 3
## 1792 3
## 1793 3
## 1794 3
## 1795 3
## 1796 3
## 1797 3
## 1798 3
## 1799 3
## 1800 3
## 1801 3
## 1802 3
## 1803 3
## 1804 2
## 1805 3
## 1806 2
## 1807 3
## 1808 3
## 1809 3
## 1810 3
## 1811 3
## 1812 3
## 1813 0
## 1814 3
## 1815 3
## 1816 3
## 1817 3
## 1818 3
## 1819 3
## 1820 3
## 1821 3
## 1822 3
## 1823 3
## 1824 3
## 1825 3
## 1826 3
## 1827 1
## 1828 3
## 1829 3
## 1830 3
## 1831 3
## 1832 3
## 1833 3
## 1834 3
## 1835 3
## 1836 1
## 1837 3
## 1838 3
## 1839 3
## 1840 3
## 1841 3
## 1842 3
## 1843 3
## 1844 3
## 1845 3
## 1846 3
## 1847 1
## 1848 3
## 1849 3
## 1850 1
## 1851 3
## 1852 3
## 1853 3
## 1854 3
## 1855 3
## 1856 3
## 1857 2
## 1858 3
## 1859 3
## 1860 3
## 1861 3
## 1862 3
## 1863 3
## 1864 3
## 1865 3
## 1866 3
## 1867 3
## 1868 3
## 1869 3
## 1870 3
## 1871 3
## 1872 3
## 1873 3
## 1874 3
## 1875 3
## 1876 1
## 1877 3
## 1878 3
## 1879 1
## 1880 3
## 1881 3
## 1882 3
## 1883 3
## 1884 3
## 1885 0
## 1886 3
## 1887 2
## 1888 3
## 1889 3
## 1890 3
## 1891 3
## 1892 3
## 1893 3
## 1894 3
## 1895 2
## 1896 3
## 1897 3
## 1898 3
## 1899 2
## 1900 3
## 1901 3
## 1902 3
## 1903 3
## 1904 3
## 1905 3
## 1906 3
## 1907 3
## 1908 3
## 1909 3
## 1910 3
## 1911 3
## 1912 3
## 1913 3
## 1914 3
## 1915 3
## 1916 3
## 1917 3
## 1918 3
## 1919 3
## 1920 3
## 1921 3
## 1922 3
## 1923 3
## 1924 3
## 1925 3
## 1926 3
## 1927 3
## 1928 3
## 1929 3
## 1930 3
## 1931 3
## 1932 3
## 1933 3
## 1934 3
## 1935 3
## 1936 3
## 1937 3
## 1938 3
## 1939 3
## 1940 3
## 1941 3
## 1942 3
## 1943 3
## 1944 3
## 1945 3
## 1946 3
## 1947 3
## 1948 3
## 1949 3
## 1950 3
## 1951 3
## 1952 3
## 1953 3
## 1954 3
## 1955 3
## 1956 3
## 1957 3
## 1958 3
## 1959 3
## 1960 1
## 1961 3
## 1962 3
## 1963 3
## 1964 2
## 1965 3
## 1966 3
## 1967 3
## 1968 3
## 1969 3
## 1970 2
## 1971 2
## 1972 3
## 1973 3
## 1974 3
## 1975 3
## 1976 3
## 1977 1
## 1978 3
## 1979 3
## 1980 3
## 1981 3
## 1982 1
## 1983 3
## 1984 3
## 1985 2
## 1986 3
## 1987 3
## 1988 3
## 1989 3
## 1990 3
## 1991 3
## 1992 3
## 1993 2
## 1994 3
## 1995 3
## 1996 3
## 1997 3
## 1998 3
## 1999 3
## 2000 3
## 2001 3
## 2002 3
## 2003 3
## 2004 0
## 2005 3
## 2006 3
## 2007 3
## 2008 3
## 2009 3
## 2010 3
## 2011 3
## 2012 3
## 2013 2
## 2014 3
## 2015 3
## 2016 3
## 2017 3
## 2018 3
## 2019 3
## 2020 3
## 2021 3
## 2022 3
## 2023 3
## 2024 3
## 2025 3
## 2026 3
## 2027 3
## 2028 3
## 2029 3
## 2030 3
## 2031 3
## 2032 3
## 2033 3
## 2034 3
## 2035 3
## 2036 3
## 2037 3
## 2038 3
## 2039 3
## 2040 1
## 2041 3
## 2042 3
## 2043 3
## 2044 3
## 2045 3
## 2046 3
## 2047 3
## 2048 3
## 2049 3
## 2050 3
## 2051 3
## 2052 3
## 2053 3
## 2054 3
## 2055 3
## 2056 3
## 2057 3
## 2058 3
## 2059 3
## 2060 3
## 2061 3
## 2062 3
## 2063 3
## 2064 3
## 2065 3
## 2066 3
## 2067 3
## 2068 3
## 2069 3
## 2070 3
## 2071 3
## 2072 3
## 2073 3
## 2074 3
## 2075 3
## 2076 3
## 2077 3
## 2078 3
## 2079 3
## 2080 3
## 2081 3
## 2082 3
## 2083 3
## 2084 1
## 2085 3
## 2086 3
## 2087 3
## 2088 3
## 2089 1
## 2090 3
## 2091 3
## 2092 3
## 2093 3
## 2094 3
## 2095 3
## 2096 3
## 2097 3
## 2098 3
## 2099 3
## 2100 3
## 2101 3
## 2102 3
## 2103 1
## 2104 3
## 2105 3
## 2106 3
## 2107 3
## 2108 3
## 2109 3
## 2110 3
## 2111 3
## 2112 3
## 2113 3
## 2114 3
## 2115 3
## 2116 3
## 2117 3
## 2118 3
## 2119 3
## 2120 3
## 2121 3
## 2122 3
## 2123 3
## 2124 3
## 2125 3
## 2126 3
## 2127 3
## 2128 3
## 2129 3
## 2130 3
## 2131 3
## 2132 2
## 2133 3
## 2134 1
## 2135 3
## 2136 3
## 2137 3
## 2138 3
## 2139 3
## 2140 3
## 2141 3
## 2142 3
## 2143 3
## 2144 3
## 2145 3
## 2146 3
## 2147 3
## 2148 3
## 2149 3
## 2150 3
## 2151 3
## 2152 3
## 2153 3
## 2154 3
## 2155 3
## 2156 3
## 2157 3
## 2158 3
## 2159 3
## 2160 2
## 2161 3
## 2162 3
## 2163 3
## 2164 3
## 2165 3
## 2166 3
## 2167 3
## 2168 3
## 2169 3
## 2170 3
## 2171 3
## 2172 3
## 2173 0
## 2174 3
## 2175 3
## 2176 3
## 2177 2
## 2178 3
## 2179 3
## 2180 3
## 2181 3
## 2182 3
## 2183 3
## 2184 3
## 2185 3
## 2186 3
## 2187 3
## 2188 3
## 2189 3
## 2190 3
## 2191 3
## 2192 3
## 2193 1
## 2194 3
## 2195 3
## 2196 3
## 2197 3
## 2198 3
## 2199 3
## 2200 3
## 2201 3
## 2202 3
## 2203 3
## 2204 3
## 2205 3
## 2206 3
## 2207 3
## 2208 3
## 2209 3
## 2210 3
## 2211 3
## 2212 3
## 2213 3
## 2214 3
## 2215 3
## 2216 3
## 2217 3
## 2218 3
## 2219 3
## 2220 3
## 2221 3
## 2222 3
## 2223 3
## 2224 1
## 2225 3
## 2226 3
## 2227 3
## 2228 3
## 2229 3
## 2230 3
## 2231 3
## 2232 3
## 2233 2
## 2234 3
## 2235 3
## 2236 3
## 2237 3
## 2238 2
## 2239 3
## 2240 3
## 2241 3
## 2242 3
## 2243 3
## 2244 2
## 2245 3
## 2246 1
## 2247 3
## 2248 3
## 2249 3
## 2250 3
## 2251 3
## 2252 2
## 2253 3
## 2254 3
## 2255 3
## 2256 3
## 2257 3
## 2258 1
## 2259 3
## 2260 3
## 2261 3
## 2262 3
## 2263 3
## 2264 3
## 2265 3
## 2266 3
## 2267 3
## 2268 3
## 2269 3
## 2270 3
## 2271 3
## 2272 3
## 2273 3
## 2274 3
## 2275 3
## 2276 3
## 2277 1
## 2278 3
## 2279 3
## 2280 3
## 2281 3
## 2282 2
## 2283 3
## 2284 3
## 2285 3
## 2286 3
## 2287 3
## 2288 3
## 2289 3
## 2290 3
## 2291 3
## 2292 3
## 2293 3
## 2294 3
## 2295 3
## 2296 3
## 2297 3
## 2298 3
## 2299 3
## 2300 3
## 2301 3
## 2302 3
## 2303 2
## 2304 3
## 2305 2
## 2306 3
## 2307 3
## 2308 3
## 2309 3
## 2310 3
## 2311 3
## 2312 3
## 2313 3
## 2314 3
## 2315 3
## 2316 3
## 2317 2
## 2318 3
## 2319 3
## 2320 3
## 2321 3
## 2322 3
## 2323 3
## 2324 3
## 2325 3
## 2326 3
## 2327 3
## 2328 3
## 2329 3
## 2330 3
## 2331 3
## 2332 3
## 2333 3
## 2334 3
## 2335 2
## 2336 3
## 2337 3
## 2338 3
## 2339 3
## 2340 3
## 2341 3
## 2342 3
## 2343 3
## 2344 3
## 2345 3
## 2346 2
## 2347 3
## 2348 3
## 2349 3
## 2350 3
## 2351 3
## 2352 3
## 2353 3
## 2354 3
## 2355 3
## 2356 3
## 2357 3
## 2358 3
## 2359 3
## 2360 2
## 2361 3
## 2362 3
## 2363 3
## 2364 3
## 2365 3
## 2366 3
## 2367 3
## 2368 1
## 2369 3
## 2370 3
## 2371 3
## 2372 3
## 2373 3
## 2374 3
## 2375 3
## 2376 3
## 2377 3
## 2378 3
## 2379 3
## 2380 3
## 2381 3
## 2382 3
## 2383 3
## 2384 3
## 2385 3
## 2386 3
## 2387 3
## 2388 3
## 2389 3
## 2390 3
## 2391 3
## 2392 3
## 2393 3
## 2394 3
## 2395 3
## 2396 3
## 2397 3
## 2398 3
## 2399 3
## 2400 3
## 2401 3
## 2402 3
## 2403 3
## 2404 3
## 2405 3
## 2406 3
## 2407 3
## 2408 3
## 2409 3
## 2410 2
## 2411 3
## 2412 3
## 2413 3
## 2414 3
## 2415 3
## 2416 3
## 2417 3
## 2418 3
## 2419 3
## 2420 1
## 2421 3
## 2422 3
## 2423 3
## 2424 3
## 2425 3
## 2426 3
## 2427 3
## 2428 3
## 2429 3
## 2430 3
## 2431 3
## 2432 3
## 2433 3
## 2434 3
## 2435 3
## 2436 3
## 2437 3
## 2438 2
## 2439 3
## 2440 3
## 2441 3
## 2442 3
## 2443 3
## 2444 0
## 2445 3
## 2446 3
## 2447 3
## 2448 3
## 2449 3
## 2450 3
## 2451 3
## 2452 3
## 2453 3
## 2454 3
## 2455 3
## 2456 3
## 2457 3
## 2458 3
## 2459 3
## 2460 3
## 2461 3
## 2462 3
## 2463 3
## 2464 3
## 2465 2
## 2466 3
## 2467 3
## 2468 2
## 2469 3
## 2470 3
## 2471 3
## 2472 3
## 2473 3
## 2474 3
## 2475 3
## 2476 3
## 2477 1
## 2478 3
## 2479 3
## 2480 3
## 2481 3
## 2482 3
## 2483 3
## 2484 3
## 2485 3
## 2486 3
## 2487 3
## 2488 3
## 2489 3
## 2490 3
## 2491 3
## 2492 3
## 2493 3
## 2494 3
## 2495 3
## 2496 3
## 2497 3
## 2498 3
## 2499 3
## 2500 3
## 2501 3
## 2502 3
## 2503 3
## 2504 3
## 2505 3
## 2506 3
## 2507 3
## 2508 3
## 2509 3
## 2510 3
## 2511 3
## 2512 3
## 2513 3
## 2514 3
## 2515 3
## 2516 3
## 2517 3
## 2518 3
## 2519 2
## 2520 3
## 2521 3
## 2522 3
## 2523 3
## 2524 3
## 2525 3
## 2526 3
## 2527 3
## 2528 3
## 2529 3
## 2530 3
## 2531 3
## 2532 3
## 2533 3
## 2534 3
## 2535 3
## 2536 3
## 2537 3
## 2538 3
## 2539 3
## 2540 3
## 2541 3
## 2542 3
## 2543 3
## 2544 3
## 2545 2
## 2546 3
## 2547 3
## 2548 3
## 2549 3
## 2550 3
## 2551 3
## 2552 3
## 2553 3
## 2554 3
## 2555 3
## 2556 3
## 2557 3
## 2558 3
## 2559 3
## 2560 3
## 2561 3
## 2562 3
## 2563 3
## 2564 3
## 2565 3
## 2566 3
## 2567 3
## 2568 1
## 2569 3
## 2570 3
## 2571 3
## 2572 3
## 2573 3
## 2574 3
## 2575 3
## 2576 3
## 2577 2
## 2578 3
## 2579 3
## 2580 3
## 2581 3
## 2582 3
## 2583 3
## 2584 3
## 2585 2
## 2586 3
## 2587 3
## 2588 3
## 2589 3
## 2590 3
## 2591 3
## 2592 3
## 2593 3
## 2594 3
## 2595 3
## 2596 3
## 2597 3
## 2598 3
## 2599 3
## 2600 3
## 2601 3
## 2602 3
## 2603 3
## 2604 3
## 2605 3
## 2606 3
## 2607 3
## 2608 3
## 2609 3
## 2610 3
## 2611 3
## 2612 3
## 2613 3
## 2614 3
## 2615 2
## 2616 3
## 2617 3
## 2618 3
## 2619 3
## 2620 3
## 2621 3
## 2622 3
## 2623 3
## 2624 3
## 2625 3
## 2626 3
## 2627 3
## 2628 3
## 2629 3
## 2630 3
## 2631 3
## 2632 3
## 2633 3
## 2634 3
## 2635 3
## 2636 3
## 2637 3
## 2638 3
## 2639 3
## 2640 3
## 2641 3
## 2642 3
## 2643 2
## 2644 3
## 2645 3
## 2646 3
## 2647 3
## 2648 3
## 2649 3
## 2650 3
## 2651 3
## 2652 3
## 2653 3
## 2654 3
## 2655 3
## 2656 3
## 2657 3
## 2658 3
## 2659 3
## 2660 3
## 2661 3
## 2662 2
## 2663 3
## 2664 3
## 2665 3
## 2666 3
## 2667 3
## 2668 3
## 2669 3
## 2670 3
## 2671 3
## 2672 3
## 2673 3
## 2674 3
## 2675 3
## 2676 3
## 2677 3
## 2678 3
## 2679 3
## 2680 3
## 2681 3
## 2682 3
## 2683 0
## 2684 3
## 2685 3
## 2686 3
## 2687 3
## 2688 3
## 2689 1
## 2690 3
## 2691 3
## 2692 2
## 2693 3
## 2694 3
## 2695 3
## 2696 3
## 2697 3
## 2698 3
## 2699 3
## 2700 3
## 2701 3
## 2702 3
## 2703 3
## 2704 3
## 2705 3
## 2706 3
## 2707 3
## 2708 3
## 2709 3
## 2710 3
## 2711 3
## 2712 3
## 2713 3
## 2714 3
## 2715 2
## 2716 3
## 2717 3
## 2718 3
## 2719 3
## 2720 3
## 2721 3
## 2722 3
## 2723 3
## 2724 3
## 2725 3
## 2726 3
## 2727 3
## 2728 3
## 2729 3
## 2730 3
## 2731 3
## 2732 3
## 2733 3
## 2734 3
## 2735 3
## 2736 3
## 2737 3
## 2738 3
## 2739 3
## 2740 3
## 2741 3
## 2742 3
## 2743 3
## 2744 3
## 2745 3
## 2746 3
## 2747 3
## 2748 3
## 2749 3
## 2750 3
## 2751 3
## 2752 3
## 2753 3
## 2754 3
## 2755 3
## 2756 3
## 2757 3
## 2758 2
## 2759 3
## 2760 3
## 2761 3
## 2762 3
## 2763 3
## 2764 3
## 2765 3
## 2766 3
## 2767 3
## 2768 3
## 2769 3
## 2770 3
## 2771 3
## 2772 3
## 2773 3
## 2774 3
## 2775 3
## 2776 3
## 2777 1
## 2778 2
## 2779 3
## 2780 3
## 2781 3
## 2782 3
## 2783 3
## 2784 3
## 2785 3
## 2786 3
## 2787 3
## 2788 3
## 2789 3
## 2790 3
## 2791 3
## 2792 3
## 2793 3
## 2794 3
## 2795 3
## 2796 3
## 2797 3
## 2798 3
## 2799 3
## 2800 3
## 2801 2
## 2802 2
## 2803 3
## 2804 3
## 2805 3
## 2806 3
## 2807 3
## 2808 3
## 2809 3
## 2810 3
## 2811 3
## 2812 3
## 2813 3
## 2814 3
## 2815 3
## 2816 1
## 2817 3
## 2818 3
## 2819 1
## 2820 3
## 2821 3
## 2822 1
## 2823 3
## 2824 3
## 2825 3
## 2826 3
## 2827 3
## 2828 3
## 2829 3
## 2830 3
## 2831 3
## 2832 3
## 2833 3
## 2834 3
## 2835 3
## 2836 3
## 2837 3
## 2838 3
## 2839 3
## 2840 3
## 2841 3
## 2842 3
## 2843 3
## 2844 3
## 2845 3
## 2846 3
## 2847 3
## 2848 3
## 2849 3
## 2850 3
## 2851 3
## 2852 3
## 2853 0
## 2854 3
## 2855 3
## 2856 3
## 2857 3
## 2858 3
## 2859 3
## 2860 3
## 2861 3
## 2862 3
## 2863 3
## 2864 3
## 2865 3
## 2866 3
## 2867 3
## 2868 3
## 2869 3
## 2870 3
## 2871 3
## 2872 3
## 2873 3
## 2874 3
## 2875 3
## 2876 3
## 2877 3
## 2878 3
## 2879 3
## 2880 3
## 2881 3
## 2882 3
## 2883 3
## 2884 3
## 2885 3
## 2886 3
## 2887 3
## 2888 3
## 2889 3
## 2890 3
## 2891 3
## 2892 3
## 2893 3
## 2894 3
## 2895 3
## 2896 3
## 2897 3
## 2898 3
## 2899 3
## 2900 3
## 2901 3
## 2902 3
## 2903 3
## 2904 3
## 2905 3
## 2906 3
## 2907 3
## 2908 3
## 2909 3
## 2910 3
## 2911 3
## 2912 3
## 2913 2
## 2914 3
## 2915 3
## 2916 3
## 2917 2
## 2918 3
## 2919 3
## 2920 2
## 2921 3
## 2922 3
## 2923 3
## 2924 3
## 2925 3
## 2926 3
## 2927 3
## 2928 3
## 2929 3
## 2930 1
## 2931 3
## 2932 3
## 2933 3
## 2934 3
## 2935 3
## 2936 3
## 2937 3
## 2938 3
## 2939 3
## 2940 2
## 2941 3
## 2942 3
## 2943 3
## 2944 3
## 2945 3
## 2946 3
## 2947 3
## 2948 3
## 2949 3
## 2950 3
## 2951 3
## 2952 2
## 2953 3
## 2954 3
## 2955 3
## 2956 3
## 2957 3
## 2958 3
## 2959 3
## 2960 3
## 2961 3
## 2962 3
## 2963 3
## 2964 3
## 2965 3
## 2966 2
## 2967 3
## 2968 3
## 2969 3
## 2970 3
## 2971 3
## 2972 3
## 2973 3
## 2974 3
## 2975 3
## 2976 3
## 2977 3
## 2978 3
## 2979 3
## 2980 3
## 2981 3
## 2982 2
## 2983 3
## 2984 3
## 2985 3
## 2986 3
## 2987 3
## 2988 3
## 2989 3
## 2990 3
## 2991 3
## 2992 3
## 2993 3
## 2994 3
## 2995 3
## 2996 3
## 2997 3
## 2998 3
## 2999 3
## 3000 3
## 3001 3
## 3002 3
## 3003 3
## 3004 3
## 3005 3
## 3006 3
## 3007 3
## 3008 3
## 3009 3
## 3010 3
## 3011 3
## 3012 3
## 3013 3
## 3014 3
## 3015 3
## 3016 3
## 3017 3
## 3018 3
## 3019 3
## 3020 3
## 3021 3
## 3022 3
## 3023 3
## 3024 3
## 3025 3
## 3026 3
## 3027 3
## 3028 3
## 3029 3
## 3030 2
## 3031 3
## 3032 3
## 3033 2
## 3034 3
## 3035 3
## 3036 3
## 3037 3
## 3038 3
## 3039 3
## 3040 3
## 3041 3
## 3042 3
## 3043 3
## 3044 3
## 3045 3
## 3046 3
## 3047 3
## 3048 3
## 3049 2
## 3050 3
## 3051 3
## 3052 3
## 3053 3
## 3054 2
## 3055 3
## 3056 3
## 3057 3
## 3058 3
## 3059 3
## 3060 3
## 3061 3
## 3062 3
## 3063 3
## 3064 3
## 3065 3
## 3066 3
## 3067 3
## 3068 3
## 3069 3
## 3070 3
## 3071 3
## 3072 3
## 3073 3
## 3074 3
## 3075 3
## 3076 3
## 3077 3
## 3078 3
## 3079 3
## 3080 3
## 3081 3
## 3082 3
## 3083 3
## 3084 3
## 3085 3
## 3086 3
## 3087 3
## 3088 3
## 3089 3
## 3090 3
## 3091 3
## 3092 3
## 3093 3
## 3094 3
## 3095 3
## 3096 3
## 3097 3
## 3098 3
## 3099 3
## 3100 3
## 3101 3
## 3102 3
## 3103 3
## 3104 3
## 3105 3
## 3106 3
## 3107 3
## 3108 3
## 3109 3
## 3110 3
## 3111 3
## 3112 3
## 3113 3
## 3114 3
## 3115 3
## 3116 3
## 3117 3
## 3118 3
## 3119 3
## 3120 3
## 3121 3
## 3122 2
## 3123 3
## 3124 3
## 3125 1
## 3126 3
## 3127 3
## 3128 3
## 3129 3
## 3130 3
## 3131 3
## 3132 3
## 3133 3
## 3134 3
## 3135 3
## 3136 3
## 3137 3
## 3138 3
## 3139 3
## 3140 3
## 3141 3
## 3142 3
## 3143 3
## 3144 3
## 3145 3
## 3146 3
## 3147 3
## 3148 3
## 3149 3
## 3150 3
## 3151 3
## 3152 3
## 3153 3
## 3154 3
## 3155 3
## 3156 3
## 3157 3
## 3158 3
## 3159 3
## 3160 3
## 3161 3
## 3162 3
## 3163 3
## 3164 3
## 3165 3
## 3166 3
## 3167 3
## 3168 3
## 3169 3
## 3170 3
## 3171 3
## 3172 3
## 3173 3
## 3174 2
## 3175 3
## 3176 3
## 3177 3
## 3178 3
## 3179 3
## 3180 3
## 3181 3
## 3182 3
## 3183 3
## 3184 2
## 3185 3
## 3186 3
## 3187 3
## 3188 3
## 3189 3
## 3190 3
## 3191 3
## 3192 2
## 3193 2
## 3194 3
## 3195 3
## 3196 3
## 3197 3
## 3198 3
## 3199 3
## 3200 3
## 3201 3
## 3202 2
## 3203 3
## 3204 3
## 3205 3
## 3206 3
## 3207 3
## 3208 3
## 3209 3
## 3210 3
## 3211 3
## 3212 3
## 3213 3
## 3214 3
## 3215 3
## 3216 3
## 3217 3
## 3218 3
## 3219 3
## 3220 3
## 3221 3
## 3222 3
## 3223 3
## 3224 3
## 3225 3
## 3226 3
## 3227 3
## 3228 3
## 3229 3
## 3230 3
## 3231 3
## 3232 3
## 3233 1
## 3234 3
## 3235 3
## 3236 3
## 3237 3
## 3238 3
## 3239 1
## 3240 3
## 3241 3
## 3242 3
## 3243 3
## 3244 3
## 3245 3
## 3246 3
## 3247 3
## 3248 3
## 3249 3
## 3250 3
## 3251 3
## 3252 3
## 3253 2
## 3254 2
## 3255 2
## 3256 3
## 3257 3
## 3258 3
## 3259 3
## 3260 3
## 3261 3
## 3262 3
## 3263 3
## 3264 3
## 3265 3
## 3266 3
## 3267 3
## 3268 3
## 3269 3
## 3270 3
## 3271 3
## 3272 3
## 3273 3
## 3274 3
## 3275 3
## 3276 2
## 3277 3
## 3278 2
## 3279 1
## 3280 3
## 3281 3
## 3282 3
## 3283 3
## 3284 3
## 3285 3
## 3286 3
## 3287 3
## 3288 3
## 3289 3
## 3290 3
## 3291 3
## 3292 3
## 3293 3
## 3294 3
## 3295 3
## 3296 3
## 3297 3
## 3298 3
## 3299 3
## 3300 3
## 3301 2
## 3302 3
## 3303 3
## 3304 3
## 3305 3
## 3306 3
## 3307 3
## 3308 3
## 3309 3
## 3310 3
## 3311 3
## 3312 3
## 3313 3
## 3314 3
## 3315 3
## 3316 3
## 3317 3
## 3318 3
## 3319 3
## 3320 3
## 3321 3
## 3322 3
## 3323 3
## 3324 3
## 3325 3
## 3326 3
## 3327 3
## 3328 1
## 3329 3
## 3330 3
## 3331 3
## 3332 3
## 3333 3
## 3334 3
## 3335 3
## 3336 3
## 3337 3
## 3338 3
## 3339 3
## 3340 3
## 3341 3
## 3342 3
## 3343 3
## 3344 3
## 3345 3
## 3346 3
## 3347 3
## 3348 3
## 3349 3
## 3350 3
## 3351 3
## 3352 2
## 3353 3
## 3354 3
## 3355 3
## 3356 3
## 3357 2
## 3358 3
## 3359 3
## 3360 3
## 3361 2
## 3362 3
## 3363 3
## 3364 3
## 3365 3
## 3366 3
## 3367 3
## 3368 3
## 3369 3
## 3370 3
## 3371 3
## 3372 3
## 3373 3
## 3374 3
## 3375 2
## 3376 3
## 3377 3
## 3378 3
## 3379 3
## 3380 3
## 3381 3
## 3382 3
## 3383 3
## 3384 3
## 3385 3
## 3386 3
## 3387 3
## 3388 3
## 3389 3
## 3390 3
## 3391 0
## 3392 3
## 3393 3
## 3394 3
## 3395 3
## 3396 3
## 3397 3
## 3398 3
## 3399 3
## 3400 3
## 3401 3
## 3402 3
## 3403 3
## 3404 3
## 3405 3
## 3406 3
## 3407 3
## 3408 3
## 3409 3
## 3410 3
## 3411 3
## 3412 3
## 3413 3
## 3414 2
## 3415 3
## 3416 3
## 3417 3
## 3418 3
## 3419 3
## 3420 3
## 3421 3
## 3422 3
## 3423 3
## 3424 3
## 3425 1
## 3426 3
## 3427 3
## 3428 3
## 3429 3
## 3430 3
## 3431 3
## 3432 3
## 3433 3
## 3434 3
## 3435 3
## 3436 3
## 3437 3
## 3438 3
## 3439 3
## 3440 3
## 3441 3
## 3442 3
## 3443 3
## 3444 3
## 3445 3
## 3446 3
## 3447 3
## 3448 3
## 3449 3
## 3450 3
## 3451 3
## 3452 3
## 3453 3
## 3454 3
## 3455 3
## 3456 3
## 3457 3
## 3458 3
## 3459 3
## 3460 3
## 3461 3
## 3462 3
## 3463 3
## 3464 3
## 3465 2
## 3466 3
## 3467 3
## 3468 3
## 3469 3
## 3470 3
## 3471 3
## 3472 3
## 3473 3
## 3474 3
## 3475 3
## 3476 3
## 3477 3
## 3478 3
## 3479 3
## 3480 3
## 3481 3
## 3482 3
## 3483 3
## 3484 3
## 3485 3
## 3486 3
## 3487 3
## 3488 3
## 3489 3
## 3490 3
## 3491 3
## 3492 3
## 3493 3
## 3494 3
## 3495 3
## 3496 3
## 3497 3
## 3498 3
## 3499 3
## 3500 3
## 3501 3
## 3502 3
## 3503 3
## 3504 3
## 3505 3
## 3506 3
## 3507 3
## 3508 3
## 3509 3
## 3510 3
## 3511 2
## 3512 3
## 3513 3
## 3514 3
## 3515 3
## 3516 3
## 3517 3
## 3518 3
## 3519 3
## 3520 3
## 3521 3
## 3522 3
## 3523 3
## 3524 1
## 3525 3
## 3526 3
## 3527 3
## 3528 3
## 3529 3
## 3530 3
## 3531 3
## 3532 3
## 3533 3
## 3534 3
## 3535 3
## 3536 3
## 3537 3
## 3538 3
## 3539 3
## 3540 3
## 3541 3
## 3542 3
## 3543 3
## 3544 3
## 3545 3
## 3546 3
## 3547 3
## 3548 3
## 3549 3
## 3550 3
## 3551 3
## 3552 3
## 3553 2
## 3554 3
## 3555 3
## 3556 3
## 3557 3
## 3558 3
## 3559 3
## 3560 3
## 3561 3
## 3562 3
## 3563 3
## 3564 3
## 3565 3
## 3566 3
## 3567 3
## 3568 3
## 3569 3
## 3570 3
## 3571 3
## 3572 3
## 3573 3
## 3574 3
## 3575 3
## 3576 3
## 3577 3
## 3578 3
## 3579 3
## 3580 3
## 3581 3
## 3582 3
## 3583 3
## 3584 3
## 3585 3
## 3586 3
## 3587 3
## 3588 3
## 3589 3
## 3590 3
## 3591 3
## 3592 3
## 3593 3
## 3594 3
## 3595 3
## 3596 3
## 3597 3
## 3598 3
## 3599 3
## 3600 3
## 3601 3
## 3602 3
## 3603 3
## 3604 3
## 3605 3
## 3606 3
## 3607 3
## 3608 3
## 3609 3
## 3610 3
## 3611 3
## 3612 3
## 3613 3
## 3614 3
## 3615 3
## 3616 3
## 3617 3
## 3618 3
## 3619 3
## 3620 3
## 3621 3
## 3622 3
## 3623 3
## 3624 3
## 3625 3
## 3626 2
## 3627 3
## 3628 3
## 3629 3
## 3630 3
## 3631 3
## 3632 3
## 3633 1
## 3634 3
## 3635 3
## 3636 3
## 3637 3
## 3638 3
## 3639 3
## 3640 3
## 3641 3
## 3642 1
## 3643 3
## 3644 3
## 3645 3
## 3646 3
## 3647 3
## 3648 3
## 3649 3
## 3650 3
## 3651 3
## 3652 3
## 3653 3
## 3654 3
## 3655 3
## 3656 3
## 3657 3
## 3658 3
## 3659 3
## 3660 3
## 3661 3
## 3662 3
## 3663 3
## 3664 3
## 3665 3
## 3666 3
## 3667 3
## 3668 3
## 3669 3
## 3670 3
## 3671 3
## 3672 3
## 3673 3
## 3674 3
## 3675 3
## 3676 3
## 3677 3
## 3678 3
## 3679 3
## 3680 3
## 3681 3
## 3682 3
## 3683 3
## 3684 3
## 3685 3
## 3686 3
## 3687 3
## 3688 1
## 3689 3
## 3690 3
## 3691 3
## 3692 3
## 3693 3
## 3694 3
## 3695 2
## 3696 3
## 3697 3
## 3698 3
## 3699 3
## 3700 3
## 3701 3
## 3702 3
## 3703 3
## 3704 3
## 3705 3
## 3706 3
## 3707 3
## 3708 3
## 3709 3
## 3710 3
## 3711 3
## 3712 1
## 3713 3
## 3714 3
## 3715 2
## 3716 3
## 3717 3
## 3718 3
## 3719 3
## 3720 3
## 3721 3
## 3722 3
## 3723 3
## 3724 3
## 3725 3
## 3726 3
## 3727 3
## 3728 3
## 3729 3
## 3730 3
## 3731 3
## 3732 3
## 3733 3
## 3734 3
## 3735 3
## 3736 3
## 3737 3
## 3738 3
## 3739 3
## 3740 3
## 3741 3
## 3742 3
## 3743 3
## 3744 3
## 3745 3
## 3746 3
## 3747 3
## 3748 3
## 3749 3
## 3750 1
## 3751 1
## 3752 3
## 3753 3
## 3754 3
## 3755 3
## 3756 3
## 3757 3
## 3758 3
## 3759 3
## 3760 3
## 3761 3
## 3762 3
## 3763 3
## 3764 3
## 3765 3
## 3766 3
## 3767 3
## 3768 2
## 3769 3
## 3770 3
## 3771 3
## 3772 3
## 3773 3
## 3774 3
## 3775 3
## 3776 3
## 3777 3
## 3778 3
## 3779 3
## 3780 3
## 3781 3
## 3782 3
## 3783 3
## 3784 1
## 3785 3
## 3786 3
## 3787 3
## 3788 3
## 3789 3
## 3790 3
## 3791 3
## 3792 3
## 3793 3
## 3794 3
## 3795 1
## 3796 2
## 3797 3
## 3798 3
## 3799 3
## 3800 3
## 3801 3
## 3802 3
## 3803 3
## 3804 3
## 3805 3
## 3806 3
## 3807 3
## 3808 3
## 3809 3
## 3810 3
## 3811 3
## 3812 3
## 3813 3
## 3814 3
## 3815 3
## 3816 3
## 3817 3
## 3818 3
## 3819 3
## 3820 3
## 3821 3
## 3822 3
## 3823 3
## 3824 3
## 3825 3
## 3826 3
## 3827 3
## 3828 3
## 3829 3
## 3830 3
## 3831 3
## 3832 3
## 3833 3
## 3834 3
## 3835 3
## 3836 3
## 3837 3
## 3838 3
## 3839 3
## 3840 3
## 3841 3
## 3842 3
## 3843 3
## 3844 3
## 3845 3
## 3846 3
## 3847 3
## 3848 2
## 3849 3
## 3850 3
## 3851 3
## 3852 3
## 3853 3
## 3854 3
## 3855 3
## 3856 3
## 3857 3
## 3858 3
## 3859 3
## 3860 3
## 3861 3
## 3862 3
## 3863 3
## 3864 3
## 3865 3
## 3866 3
## 3867 3
## 3868 3
## 3869 3
## 3870 3
## 3871 3
## 3872 3
## 3873 3
## 3874 3
## 3875 3
## 3876 3
## 3877 3
## 3878 3
## 3879 3
## 3880 3
## 3881 3
## 3882 3
## 3883 3
## 3884 3
## 3885 3
## 3886 3
## 3887 3
## 3888 3
## 3889 2
## 3890 3
## 3891 3
## 3892 3
## 3893 3
## 3894 3
## 3895 3
## 3896 3
## 3897 3
## 3898 3
## 3899 3
## 3900 3
## 3901 3
## 3902 3
## 3903 3
## 3904 3
## 3905 3
## 3906 3
## 3907 3
## 3908 3
## 3909 3
## 3910 2
## 3911 1
## 3912 3
## 3913 3
## 3914 3
## 3915 3
## 3916 3
## 3917 3
## 3918 3
## 3919 3
## 3920 2
## 3921 3
## 3922 3
## 3923 3
## 3924 3
## 3925 3
## 3926 3
## 3927 3
## 3928 3
## 3929 3
## 3930 3
## 3931 3
## 3932 3
## 3933 3
## 3934 3
## 3935 3
## 3936 3
## 3937 3
## 3938 3
## 3939 3
## 3940 3
## 3941 3
## 3942 3
## 3943 3
## 3944 3
## 3945 3
## 3946 3
## 3947 3
## 3948 3
## 3949 3
## 3950 3
## 3951 3
## 3952 3
## 3953 3
## 3954 3
## 3955 3
## 3956 3
## 3957 3
## 3958 3
## 3959 3
## 3960 3
## 3961 3
## 3962 3
## 3963 3
## 3964 3
## 3965 3
## 3966 2
## 3967 3
## 3968 3
## 3969 3
## 3970 3
## 3971 3
## 3972 3
## 3973 3
## 3974 3
## 3975 3
## 3976 3
## 3977 3
## 3978 1
## 3979 3
## 3980 3
## 3981 3
## 3982 3
## 3983 3
## 3984 3
## 3985 3
## 3986 3
## 3987 3
## 3988 3
## 3989 3
## 3990 3
## 3991 3
## 3992 3
## 3993 3
## 3994 3
## 3995 3
## 3996 3
## 3997 3
## 3998 3
## 3999 3
## 4000 3
## 4001 3
## 4002 3
## 4003 3
## 4004 2
## 4005 3
## 4006 3
## 4007 3
## 4008 3
## 4009 3
## 4010 3
## 4011 3
## 4012 3
## 4013 3
## 4014 3
## 4015 3
## 4016 3
## 4017 3
## 4018 3
## 4019 3
## 4020 3
## 4021 3
## 4022 3
## 4023 3
## 4024 3
## 4025 3
## 4026 3
## 4027 3
## 4028 3
## 4029 3
## 4030 3
## 4031 3
## 4032 3
## 4033 3
## 4034 3
## 4035 3
## 4036 3
## 4037 3
## 4038 3
## 4039 3
## 4040 3
## 4041 3
## 4042 3
## 4043 3
## 4044 3
## 4045 3
## 4046 3
## 4047 3
## 4048 3
## 4049 3
## 4050 3
## 4051 3
## 4052 3
## 4053 3
## 4054 3
## 4055 1
## 4056 3
## 4057 3
## 4058 3
## 4059 3
## 4060 3
## 4061 3
## 4062 3
## 4063 3
## 4064 3
## 4065 3
## 4066 3
## 4067 3
## 4068 3
## 4069 3
## 4070 3
## 4071 3
## 4072 3
## 4073 1
## 4074 3
## 4075 3
## 4076 3
## 4077 3
## 4078 2
## 4079 3
## 4080 3
## 4081 3
## 4082 3
## 4083 3
## 4084 3
## 4085 2
## 4086 3
## 4087 3
## 4088 3
## 4089 3
## 4090 3
## 4091 3
## 4092 3
## 4093 2
## 4094 3
## 4095 3
## 4096 3
## 4097 3
## 4098 3
## 4099 3
## 4100 3
## 4101 3
## 4102 3
## 4103 3
## 4104 3
## 4105 3
## 4106 3
## 4107 2
## 4108 3
## 4109 3
## 4110 3
## 4111 3
## 4112 3
## 4113 3
## 4114 3
## 4115 3
## 4116 3
## 4117 3
## 4118 3
## 4119 3
## 4120 3
## 4121 3
## 4122 3
## 4123 3
## 4124 3
## 4125 3
## 4126 3
## 4127 3
## 4128 3
## 4129 3
## 4130 3
## 4131 3
## 4132 3
## 4133 2
## 4134 3
## 4135 3
## 4136 3
## 4137 2
## 4138 3
## 4139 3
## 4140 3
## 4141 3
## 4142 3
## 4143 3
## 4144 3
## 4145 3
## 4146 3
## 4147 3
## 4148 3
## 4149 0
## 4150 3
## 4151 3
## 4152 3
## 4153 3
## 4154 3
## 4155 3
## 4156 3
## 4157 3
## 4158 3
## 4159 3
## 4160 3
## 4161 3
## 4162 3
## 4163 3
## 4164 3
## 4165 3
## 4166 3
## 4167 3
## 4168 3
## 4169 3
## 4170 3
## 4171 3
## 4172 3
## 4173 3
## 4174 3
## 4175 1
## 4176 3
## 4177 3
## 4178 2
## 4179 3
## 4180 3
## 4181 3
## 4182 3
## 4183 3
## 4184 3
## 4185 3
## 4186 3
## 4187 3
## 4188 3
## 4189 3
## 4190 3
## 4191 3
## 4192 3
## 4193 3
## 4194 3
## 4195 3
## 4196 3
## 4197 3
## 4198 3
## 4199 3
## 4200 3
## 4201 3
## 4202 1
## 4203 3
## 4204 3
## 4205 3
## 4206 3
## 4207 3
## 4208 3
## 4209 3
## 4210 3
## 4211 3
## 4212 3
## 4213 3
## 4214 3
## 4215 3
## 4216 3
## 4217 3
## 4218 3
## 4219 3
## 4220 3
## 4221 3
## 4222 3
## 4223 3
## 4224 3
## 4225 3
## 4226 3
## 4227 3
## 4228 3
## 4229 3
## 4230 3
## 4231 3
## 4232 3
## 4233 3
## 4234 3
## 4235 3
## 4236 3
## 4237 3
## 4238 3
## 4239 3
## 4240 3
## 4241 3
## 4242 3
## 4243 3
## 4244 3
## 4245 0
## 4246 3
## 4247 3
## 4248 3
## 4249 3
## 4250 1
## 4251 3
## 4252 3
## 4253 3
## 4254 3
## 4255 3
## 4256 3
## 4257 3
## 4258 3
## 4259 2
## 4260 3
## 4261 3
## 4262 3
## 4263 3
## 4264 3
## 4265 3
## 4266 3
## 4267 3
## 4268 3
## 4269 2
## 4270 3
## 4271 3
## 4272 3
## 4273 3
## 4274 3
## 4275 3
## 4276 3
## 4277 3
## 4278 3
## 4279 3
## 4280 3
## 4281 3
## 4282 3
## 4283 3
## 4284 3
## 4285 3
## 4286 3
## 4287 3
## 4288 3
## 4289 3
## 4290 3
## 4291 3
## 4292 3
## 4293 3
## 4294 3
## 4295 3
## 4296 3
## 4297 3
## 4298 3
## 4299 3
## 4300 3
## 4301 1
## 4302 1
## 4303 2
## 4304 3
## 4305 3
## 4306 3
## 4307 3
## 4308 3
## 4309 3
## 4310 2
## 4311 3
## 4312 3
## 4313 3
## 4314 3
## 4315 3
## 4316 3
## 4317 2
## 4318 3
## 4319 3
## 4320 3
## 4321 3
## 4322 3
## 4323 3
## 4324 3
## 4325 3
## 4326 2
## 4327 3
## 4328 3
## 4329 3
## 4330 3
## 4331 3
## 4332 3
## 4333 3
## 4334 3
## 4335 3
## 4336 3
## 4337 3
## 4338 3
## 4339 3
## 4340 1
## 4341 3
## 4342 3
## 4343 3
## 4344 3
## 4345 3
## 4346 3
## 4347 3
## 4348 3
## 4349 3
## 4350 3
## 4351 2
## 4352 3
## 4353 3
## 4354 3
## 4355 3
## 4356 3
## 4357 3
## 4358 3
## 4359 3
## 4360 2
## 4361 3
## 4362 3
## 4363 3
## 4364 3
## 4365 3
## 4366 3
## 4367 3
## 4368 3
## 4369 3
## 4370 3
## 4371 3
## 4372 3
## 4373 3
## 4374 3
## 4375 3
## 4376 3
## 4377 3
## 4378 3
## 4379 1
## 4380 3
## 4381 3
## 4382 3
## 4383 2
## 4384 3
## 4385 3
## 4386 3
## 4387 3
## 4388 3
## 4389 3
## 4390 3
## 4391 3
## 4392 3
## 4393 3
## 4394 3
## 4395 3
## 4396 3
## 4397 3
## 4398 3
## 4399 3
## 4400 2
## 4401 3
## 4402 3
## 4403 3
## 4404 3
## 4405 3
## 4406 3
## 4407 3
## 4408 3
## 4409 3
## 4410 3
## 4411 3
## 4412 3
## 4413 3
## 4414 3
## 4415 3
## 4416 3
## 4417 3
## 4418 3
## 4419 3
## 4420 3
## 4421 3
## 4422 3
## 4423 3
## 4424 3
## 4425 2
## 4426 3
## 4427 3
## 4428 3
## 4429 3
## 4430 3
## 4431 3
## 4432 3
## 4433 3
## 4434 3
## 4435 3
## 4436 3
## 4437 3
## 4438 3
## 4439 3
## 4440 3
## 4441 3
## 4442 3
## 4443 3
## 4444 3
## 4445 3
## 4446 3
## 4447 3
## 4448 3
## 4449 3
## 4450 3
## 4451 3
## 4452 3
## 4453 3
## 4454 3
## 4455 3
## 4456 3
## 4457 3
## 4458 3
## 4459 3
## 4460 3
## 4461 3
## 4462 3
## 4463 3
## 4464 3
## 4465 3
## 4466 2
## 4467 3
## 4468 3
## 4469 3
## 4470 3
## 4471 3
## 4472 3
## 4473 2
## 4474 3
## 4475 3
## 4476 3
## 4477 3
## 4478 3
## 4479 3
## 4480 3
## 4481 3
## 4482 3
## 4483 3
## 4484 3
## 4485 2
## 4486 3
## 4487 3
## 4488 3
## 4489 3
## 4490 3
## 4491 3
## 4492 3
## 4493 3
## 4494 3
## 4495 3
## 4496 3
## 4497 3
## 4498 3
## 4499 3
## 4500 3
## 4501 3
## 4502 3
## 4503 3
## 4504 3
## 4505 3
## 4506 3
## 4507 3
## 4508 3
## 4509 3
## 4510 3
## 4511 3
## 4512 3
## 4513 3
## 4514 3
## 4515 3
## 4516 2
## 4517 3
## 4518 3
## 4519 3
## 4520 3
## 4521 3
## 4522 1
## 4523 3
## 4524 3
## 4525 3
## 4526 3
## 4527 3
## 4528 3
## 4529 3
## 4530 3
## 4531 3
## 4532 3
## 4533 1
## 4534 2
## 4535 3
## 4536 3
## 4537 1
## 4538 3
## 4539 3
## 4540 3
## 4541 3
## 4542 3
## 4543 2
## 4544 1
## 4545 3
## 4546 3
## 4547 3
## 4548 3
## 4549 3
## 4550 3
## 4551 2
## 4552 3
## 4553 3
## 4554 3
## 4555 3
## 4556 3
## 4557 3
## 4558 3
## 4559 3
## 4560 3
## 4561 3
## 4562 3
## 4563 3
## 4564 3
## 4565 3
## 4566 3
## 4567 3
## 4568 3
## 4569 3
## 4570 3
## 4571 3
## 4572 3
## 4573 3
## 4574 3
## 4575 3
## 4576 3
## 4577 3
## 4578 3
## 4579 3
## 4580 3
## 4581 3
## 4582 3
## 4583 3
## 4584 3
## 4585 3
## 4586 3
## 4587 3
## 4588 3
## 4589 2
## 4590 3
## 4591 2
## 4592 3
## 4593 2
## 4594 3
## 4595 3
## 4596 3
## 4597 3
## 4598 3
## 4599 3
## 4600 3
## 4601 3
## 4602 0
## 4603 3
## 4604 3
## 4605 3
## 4606 3
## 4607 3
## 4608 3
## 4609 3
## 4610 3
## 4611 3
## 4612 3
## 4613 3
## 4614 3
## 4615 3
## 4616 3
## 4617 3
## 4618 3
## 4619 3
## 4620 3
## 4621 3
## 4622 3
## 4623 3
## 4624 3
## 4625 3
## 4626 3
## 4627 3
## 4628 3
## 4629 3
## 4630 2
## 4631 3
## 4632 3
## 4633 3
## 4634 3
## 4635 3
## 4636 3
## 4637 3
## 4638 3
## 4639 3
## 4640 3
## 4641 3
## 4642 3
## 4643 3
## 4644 3
## 4645 3
## 4646 3
## 4647 3
## 4648 3
## 4649 3
## 4650 3
## 4651 3
## 4652 2
## 4653 3
## 4654 3
## 4655 3
## 4656 3
## 4657 3
## 4658 3
## 4659 3
## 4660 3
## 4661 3
## 4662 3
## 4663 3
## 4664 3
## 4665 3
## 4666 3
## 4667 3
## 4668 3
## 4669 3
## 4670 3
## 4671 2
## 4672 3
## 4673 3
## 4674 3
## 4675 3
## 4676 3
## 4677 3
## 4678 1
## 4679 3
## 4680 3
## 4681 3
## 4682 3
## 4683 3
## 4684 3
## 4685 3
## 4686 3
## 4687 3
## 4688 3
## 4689 3
## 4690 3
## 4691 3
## 4692 3
## 4693 3
## 4694 3
## 4695 3
## 4696 3
## 4697 3
## 4698 3
## 4699 3
## 4700 3
## 4701 3
## 4702 3
## 4703 3
## 4704 3
## 4705 3
## 4706 3
## 4707 3
## 4708 3
## 4709 3
## 4710 3
## 4711 3
## 4712 3
## 4713 3
## 4714 3
## 4715 3
## 4716 3
## 4717 3
## 4718 3
## 4719 3
## 4720 3
## 4721 3
## 4722 3
## 4723 3
## 4724 3
## 4725 3
## 4726 3
## 4727 3
## 4728 3
## 4729 3
## 4730 3
## 4731 3
## 4732 3
## 4733 2
## 4734 3
## 4735 3
## 4736 2
## 4737 3
## 4738 3
## 4739 3
## 4740 3
## 4741 2
## 4742 3
## 4743 3
## 4744 3
## 4745 3
## 4746 3
## 4747 3
## 4748 3
## 4749 3
## 4750 3
## 4751 3
## 4752 3
## 4753 3
## 4754 3
## 4755 3
## 4756 3
## 4757 3
## 4758 3
## 4759 3
## 4760 3
## 4761 3
## 4762 3
## 4763 3
## 4764 3
## 4765 3
## 4766 3
## 4767 3
## 4768 3
## 4769 3
## 4770 3
## 4771 3
## 4772 3
## 4773 3
## 4774 3
## 4775 3
## 4776 3
## 4777 3
## 4778 3
## 4779 3
## 4780 3
## 4781 3
## 4782 3
## 4783 3
## 4784 3
## 4785 3
## 4786 1
## 4787 3
## 4788 3
## 4789 3
## 4790 3
## 4791 2
## 4792 3
## 4793 3
## 4794 3
## 4795 2
## 4796 3
## 4797 3
## 4798 3
## 4799 3
## 4800 3
## 4801 3
## 4802 3
## 4803 3
## 4804 3
## 4805 2
## 4806 3
## 4807 3
## 4808 3
## 4809 3
## 4810 3
## 4811 3
## 4812 3
## 4813 3
## 4814 3
## 4815 3
## 4816 3
## 4817 3
## 4818 3
## 4819 3
## 4820 3
## 4821 3
## 4822 3
## 4823 3
## 4824 3
## 4825 3
## 4826 3
## 4827 3
## 4828 3
## 4829 3
## 4830 3
## 4831 0
## 4832 3
## 4833 3
## 4834 3
## 4835 3
## 4836 3
## 4837 3
## 4838 3
## 4839 2
## 4840 3
## 4841 3
## 4842 3
## 4843 3
## 4844 3
## 4845 3
## 4846 3
## 4847 3
## 4848 3
## 4849 3
## 4850 3
## 4851 3
## 4852 3
## 4853 3
## 4854 3
## 4855 3
## 4856 3
## 4857 3
## 4858 3
## 4859 3
## 4860 2
## 4861 3
## 4862 3
## 4863 3
## 4864 2
## 4865 3
## 4866 3
## 4867 3
## 4868 3
## 4869 3
## 4870 3
## 4871 3
## 4872 1
## 4873 3
## 4874 3
## 4875 3
## 4876 3
## 4877 3
## 4878 3
## 4879 3
## 4880 3
## 4881 2
## 4882 3
## 4883 3
## 4884 3
## 4885 3
## 4886 3
## 4887 3
## 4888 3
## 4889 3
## 4890 3
## 4891 3
## 4892 3
## 4893 3
## 4894 3
## 4895 3
## 4896 3
## 4897 3
## 4898 3
## 4899 3
## 4900 3
## 4901 3
## 4902 3
## 4903 3
## 4904 3
## 4905 3
## 4906 3
## 4907 3
## 4908 3
## 4909 3
## 4910 3
## 4911 3
## 4912 3
## 4913 3
## 4914 2
## 4915 3
## 4916 3
## 4917 3
## 4918 3
## 4919 3
## 4920 3
## 4921 3
## 4922 3
## 4923 3
## 4924 3
## 4925 3
## 4926 3
## 4927 2
## 4928 3
## 4929 3
## 4930 3
## 4931 3
## 4932 3
## 4933 3
## 4934 3
## 4935 3
## 4936 3
## 4937 3
## 4938 3
## 4939 1
## 4940 3
## 4941 3
## 4942 3
## 4943 3
## 4944 3
## 4945 3
## 4946 3
## 4947 3
## 4948 3
## 4949 3
## 4950 3
## 4951 3
## 4952 3
## 4953 3
## 4954 3
## 4955 3
## 4956 3
## 4957 3
## 4958 3
## 4959 3
## 4960 3
## 4961 3
## 4962 3
## 4963 3
## 4964 3
## 4965 2
## 4966 3
## 4967 3
## 4968 3
## 4969 3
## 4970 2
## 4971 3
## 4972 3
## 4973 1
## 4974 3
## 4975 3
## 4976 3
## 4977 3
## 4978 3
## 4979 3
## 4980 3
## 4981 3
## 4982 3
## 4983 3
## 4984 3
## 4985 3
## 4986 3
## 4987 3
## 4988 3
## 4989 3
## 4990 3
## 4991 3
## 4992 3
## 4993 3
## 4994 3
## 4995 3
## 4996 3
## 4997 3
## 4998 3
## 4999 3
## 5000 3
## 5001 3
## 5002 3
## 5003 3
## 5004 3
## 5005 3
## 5006 3
## 5007 3
## 5008 3
## 5009 3
## 5010 3
## 5011 3
## 5012 3
## 5013 3
## 5014 3
## 5015 3
## 5016 3
## 5017 2
## 5018 3
## 5019 3
## 5020 3
## 5021 3
## 5022 3
## 5023 3
## 5024 2
## 5025 3
## 5026 3
## 5027 3
## 5028 3
## 5029 3
## 5030 3
## 5031 3
## 5032 3
## 5033 3
## 5034 3
## 5035 3
## 5036 3
## 5037 3
## 5038 3
## 5039 3
## 5040 3
## 5041 3
## 5042 3
## 5043 3
## 5044 3
## 5045 3
## 5046 3
## 5047 3
## 5048 3
## 5049 3
## 5050 3
## 5051 3
## 5052 3
## 5053 3
## 5054 3
## 5055 3
## 5056 1
## 5057 3
## 5058 3
## 5059 3
## 5060 3
## 5061 3
## 5062 3
## 5063 3
## 5064 3
## 5065 1
## 5066 2
## 5067 3
## 5068 3
## 5069 3
## 5070 3
## 5071 3
## 5072 3
## 5073 3
## 5074 3
## 5075 3
## 5076 3
## 5077 3
## 5078 3
## 5079 3
## 5080 3
## 5081 3
## 5082 3
## 5083 3
## 5084 3
## 5085 3
## 5086 3
## 5087 3
## 5088 3
## 5089 3
## 5090 3
## 5091 3
## 5092 3
## 5093 1
## 5094 3
## 5095 3
## 5096 3
## 5097 3
## 5098 3
## 5099 3
## 5100 1
## 5101 3
## 5102 3
## 5103 3
## 5104 3
## 5105 3
## 5106 3
## 5107 3
## 5108 3
## 5109 3
## 5110 3
## 5111 3
## 5112 3
## 5113 3
## 5114 3
## 5115 3
## 5116 3
## 5117 3
## 5118 3
## 5119 3
## 5120 3
## 5121 3
## 5122 3
## 5123 3
## 5124 3
## 5125 3
## 5126 3
## 5127 3
## 5128 3
## 5129 3
## 5130 3
## 5131 3
## 5132 3
## 5133 3
## 5134 3
## 5135 3
## 5136 3
## 5137 3
## 5138 3
## 5139 3
## 5140 2
## 5141 3
## 5142 3
## 5143 3
## 5144 3
## 5145 3
## 5146 3
## 5147 3
## 5148 3
## 5149 3
## 5150 3
## 5151 3
## 5152 3
## 5153 3
## 5154 3
## 5155 3
## 5156 3
## 5157 3
## 5158 3
## 5159 3
## 5160 3
## 5161 1
## 5162 3
## 5163 3
## 5164 2
## 5165 3
## 5166 2
## 5167 3
## 5168 3
## 5169 3
## 5170 3
## 5171 3
## 5172 3
## 5173 3
## 5174 3
## 5175 3
## 5176 3
## 5177 3
## 5178 3
## 5179 3
## 5180 3
## 5181 3
## 5182 3
## 5183 3
## 5184 3
## 5185 3
## 5186 3
## 5187 1
## 5188 3
## 5189 3
## 5190 3
## 5191 3
## 5192 3
## 5193 3
## 5194 3
## 5195 3
## 5196 3
## 5197 3
## 5198 3
## 5199 3
## 5200 3
## 5201 3
## 5202 3
## 5203 3
## 5204 3
## 5205 3
## 5206 3
## 5207 3
## 5208 3
## 5209 3
## 5210 3
## 5211 3
## 5212 3
## 5213 3
## 5214 3
## 5215 2
## 5216 3
## 5217 3
## 5218 3
## 5219 3
## 5220 3
## 5221 3
## 5222 3
## 5223 3
## 5224 1
## 5225 3
## 5226 3
## 5227 1
## 5228 3
## 5229 3
## 5230 3
## 5231 3
## 5232 3
## 5233 3
## 5234 3
## 5235 3
## 5236 2
## 5237 2
## 5238 2
## 5239 3
## 5240 3
## 5241 3
## 5242 3
## 5243 3
## 5244 3
## 5245 3
## 5246 3
## 5247 3
## 5248 2
## 5249 3
## 5250 3
## 5251 3
## 5252 3
## 5253 3
## 5254 3
## 5255 3
## 5256 1
## 5257 3
## 5258 3
## 5259 2
## 5260 3
## 5261 3
## 5262 3
## 5263 3
## 5264 3
## 5265 3
## 5266 3
## 5267 3
## 5268 3
## 5269 0
## 5270 3
## 5271 3
## 5272 3
## 5273 3
## 5274 3
## 5275 2
## 5276 3
## 5277 3
## 5278 3
## 5279 3
## 5280 3
## 5281 3
## 5282 3
## 5283 3
## 5284 3
## 5285 3
## 5286 3
## 5287 3
## 5288 3
## 5289 3
## 5290 2
## 5291 3
## 5292 3
## 5293 3
## 5294 3
## 5295 3
## 5296 3
## 5297 3
## 5298 3
## 5299 3
## 5300 3
## 5301 3
## 5302 3
## 5303 3
## 5304 3
## 5305 3
## 5306 3
## 5307 3
## 5308 3
## 5309 3
## 5310 3
## 5311 3
## 5312 3
## 5313 3
## 5314 3
## 5315 3
## 5316 3
## 5317 3
## 5318 3
## 5319 3
## 5320 3
## 5321 3
## 5322 3
## 5323 3
## 5324 3
## 5325 3
## 5326 3
## 5327 3
## 5328 3
## 5329 2
## 5330 3
## 5331 3
## 5332 3
## 5333 3
## 5334 3
## 5335 3
## 5336 3
## 5337 3
## 5338 3
## 5339 3
## 5340 3
## 5341 3
## 5342 3
## 5343 3
## 5344 3
## 5345 3
## 5346 3
## 5347 3
## 5348 3
## 5349 3
## 5350 3
## 5351 3
## 5352 3
## 5353 3
## 5354 1
## 5355 3
## 5356 3
## 5357 3
## 5358 3
## 5359 3
## 5360 3
## 5361 3
## 5362 3
## 5363 3
## 5364 3
## 5365 3
## 5366 3
## 5367 3
## 5368 3
## 5369 3
## 5370 2
## 5371 3
## 5372 3
## 5373 3
## 5374 3
## 5375 3
## 5376 3
## 5377 3
## 5378 3
## 5379 3
## 5380 3
## 5381 3
## 5382 3
## 5383 2
## 5384 3
## 5385 3
## 5386 3
## 5387 2
## 5388 3
## 5389 3
## 5390 3
## 5391 3
## 5392 3
## 5393 1
## 5394 3
## 5395 3
## 5396 3
## 5397 3
## 5398 3
## 5399 3
## 5400 3
## 5401 3
## 5402 2
## 5403 3
## 5404 3
## 5405 3
## 5406 3
## 5407 2
## 5408 3
## 5409 3
## 5410 2
## 5411 3
## 5412 3
## 5413 3
## 5414 3
## 5415 3
## 5416 3
## 5417 3
## 5418 3
## 5419 3
## 5420 3
## 5421 3
## 5422 3
## 5423 3
## 5424 3
## 5425 3
## 5426 3
## 5427 2
## 5428 3
## 5429 3
## 5430 2
## 5431 3
## 5432 3
## 5433 3
## 5434 3
## 5435 3
## 5436 1
## 5437 3
## 5438 3
## 5439 3
## 5440 3
## 5441 3
## 5442 3
## 5443 3
## 5444 3
## 5445 3
## 5446 3
## 5447 3
## 5448 3
## 5449 3
## 5450 3
## 5451 3
## 5452 3
## 5453 3
## 5454 2
## 5455 3
## 5456 3
## 5457 3
## 5458 3
## 5459 3
## 5460 3
## 5461 3
## 5462 3
## 5463 3
## 5464 3
## 5465 3
## 5466 3
## 5467 3
## 5468 3
## 5469 3
## 5470 2
## 5471 3
## 5472 3
## 5473 3
## 5474 3
## 5475 3
## 5476 3
## 5477 3
## 5478 2
## 5479 3
## 5480 3
## 5481 3
## 5482 3
## 5483 3
## 5484 3
## 5485 3
## 5486 3
## 5487 2
## 5488 3
## 5489 3
## 5490 3
## 5491 3
## 5492 3
## 5493 3
## 5494 3
## 5495 3
## 5496 3
## 5497 3
## 5498 3
## 5499 3
## 5500 3
## 5501 3
## 5502 3
## 5503 3
## 5504 3
## 5505 3
## 5506 3
## 5507 3
## 5508 3
## 5509 3
## 5510 3
## 5511 3
## 5512 1
## 5513 3
## 5514 3
## 5515 3
## 5516 3
## 5517 3
## 5518 3
## 5519 3
## 5520 3
## 5521 3
## 5522 3
## 5523 3
## 5524 3
## 5525 3
## 5526 3
## 5527 3
## 5528 3
## 5529 3
## 5530 3
## 5531 3
## 5532 3
## 5533 3
## 5534 3
## 5535 3
## 5536 3
## 5537 3
## 5538 3
## 5539 3
## 5540 2
## 5541 3
## 5542 3
## 5543 3
## 5544 3
## 5545 3
## 5546 3
## 5547 3
## 5548 3
## 5549 3
## 5550 3
## 5551 3
## 5552 3
## 5553 3
## 5554 3
## 5555 3
## 5556 3
## 5557 3
## 5558 3
## 5559 3
## 5560 3
## 5561 3
## 5562 3
## 5563 3
## 5564 3
## 5565 3
## 5566 3
## 5567 3
## 5568 3
## 5569 3
## 5570 3
## 5571 3
## 5572 1
## 5573 3
## 5574 3
## 5575 3
## 5576 3
## 5577 3
## 5578 2
## 5579 3
## 5580 3
## 5581 3
## 5582 3
## 5583 3
## 5584 3
## 5585 3
## 5586 3
## 5587 3
## 5588 3
## 5589 3
## 5590 3
## 5591 3
## 5592 3
## 5593 3
## 5594 3
## 5595 3
## 5596 3
## 5597 2
## 5598 3
## 5599 3
## 5600 3
## 5601 3
## 5602 3
## 5603 1
## 5604 3
## 5605 3
## 5606 3
## 5607 3
## 5608 3
## 5609 2
## 5610 3
## 5611 3
## 5612 3
## 5613 3
## 5614 3
## 5615 3
## 5616 3
## 5617 3
## 5618 3
## 5619 3
## 5620 3
## 5621 3
## 5622 3
## 5623 3
## 5624 3
## 5625 3
## 5626 3
## 5627 3
## 5628 3
## 5629 3
## 5630 3
## 5631 3
## 5632 3
## 5633 3
## 5634 3
## 5635 3
## 5636 3
## 5637 3
## 5638 3
## 5639 3
## 5640 3
## 5641 3
## 5642 3
## 5643 3
## 5644 3
## 5645 3
## 5646 3
## 5647 3
## 5648 3
## 5649 3
## 5650 3
## 5651 3
## 5652 3
## 5653 3
## 5654 3
## 5655 3
## 5656 3
## 5657 3
## 5658 3
## 5659 3
## 5660 3
## 5661 3
## 5662 3
## 5663 3
## 5664 3
## 5665 3
## 5666 3
## 5667 3
## 5668 3
## 5669 3
## 5670 3
## 5671 1
## 5672 3
## 5673 3
## 5674 3
## 5675 3
## 5676 3
## 5677 3
## 5678 3
## 5679 3
## 5680 3
## 5681 3
## 5682 3
## 5683 3
## 5684 3
## 5685 3
## 5686 3
## 5687 3
## 5688 3
## 5689 3
## 5690 3
## 5691 3
## 5692 3
## 5693 3
## 5694 3
## 5695 3
## 5696 3
## 5697 3
## 5698 3
## 5699 3
## 5700 3
## 5701 3
## 5702 3
## 5703 2
## 5704 3
## 5705 3
## 5706 3
## 5707 3
## 5708 3
## 5709 3
## 5710 3
## 5711 3
## 5712 3
## 5713 3
## 5714 3
## 5715 3
## 5716 3
## 5717 3
## 5718 3
## 5719 3
## 5720 3
## 5721 3
## 5722 3
## 5723 3
## 5724 3
## 5725 3
## 5726 3
## 5727 3
## 5728 2
## 5729 3
## 5730 3
## 5731 3
## 5732 3
## 5733 3
## 5734 3
## 5735 3
## 5736 3
## 5737 3
## 5738 3
## 5739 3
## 5740 3
## 5741 3
## 5742 3
## 5743 2
## 5744 3
## 5745 3
## 5746 3
## 5747 3
## 5748 3
## 5749 3
## 5750 3
## 5751 3
## 5752 3
## 5753 3
## 5754 3
## 5755 3
## 5756 3
## 5757 3
## 5758 3
## 5759 3
## 5760 3
## 5761 3
## 5762 3
## 5763 2
## 5764 0
## 5765 3
## 5766 2
## 5767 3
## 5768 3
## 5769 3
## 5770 3
## 5771 3
## 5772 3
## 5773 3
## 5774 3
## 5775 3
## 5776 3
## 5777 3
## 5778 3
## 5779 3
## 5780 3
## 5781 3
## 5782 3
## 5783 2
## 5784 3
## 5785 3
## 5786 3
## 5787 3
## 5788 3
## 5789 3
## 5790 3
## 5791 1
## 5792 3
## 5793 3
## 5794 3
## 5795 3
## 5796 3
## 5797 3
## 5798 3
## 5799 3
## 5800 3
## 5801 3
## 5802 3
## 5803 3
## 5804 3
## 5805 3
## 5806 3
## 5807 0
## 5808 3
## 5809 3
## 5810 3
## 5811 3
## 5812 3
## 5813 3
## 5814 3
## 5815 3
## 5816 3
## 5817 3
## 5818 3
## 5819 3
## 5820 3
## 5821 3
## 5822 3
## 5823 3
## 5824 3
## 5825 3
## 5826 3
## 5827 3
## 5828 3
## 5829 3
## 5830 3
## 5831 3
## 5832 3
## 5833 3
## 5834 3
## 5835 3
## 5836 3
## 5837 3
## 5838 1
## 5839 3
## 5840 3
## 5841 3
## 5842 3
## 5843 3
## 5844 3
## 5845 3
## 5846 3
## 5847 3
## 5848 3
## 5849 3
## 5850 3
## 5851 3
## 5852 3
## 5853 1
## 5854 3
## 5855 3
## 5856 3
## 5857 3
## 5858 3
## 5859 3
## 5860 3
## 5861 0
## 5862 3
## 5863 3
## 5864 3
## 5865 3
## 5866 2
## 5867 3
## 5868 3
## 5869 3
## 5870 3
## 5871 3
## 5872 3
## 5873 3
## 5874 3
## 5875 3
## 5876 3
## 5877 1
## 5878 3
## 5879 3
## 5880 3
## 5881 3
## 5882 3
## 5883 3
## 5884 3
## 5885 3
## 5886 3
## 5887 3
## 5888 3
## 5889 3
## 5890 3
## 5891 3
## 5892 3
## 5893 3
## 5894 3
## 5895 3
## 5896 3
## 5897 3
## 5898 3
## 5899 3
## 5900 3
## 5901 3
## 5902 3
## 5903 3
## 5904 3
## 5905 3
## 5906 1
## 5907 3
## 5908 3
## 5909 3
## 5910 3
## 5911 3
## 5912 3
## 5913 3
## 5914 3
## 5915 3
## 5916 3
## 5917 3
## 5918 2
## 5919 3
## 5920 3
## 5921 3
## 5922 3
## 5923 3
## 5924 3
## 5925 3
## 5926 3
## 5927 3
## 5928 3
## 5929 3
## 5930 3
## 5931 3
## 5932 3
## 5933 3
## 5934 3
## 5935 3
## 5936 3
## 5937 3
## 5938 3
## 5939 3
## 5940 3
## 5941 3
## 5942 3
## 5943 3
## 5944 3
## 5945 3
## 5946 3
## 5947 3
## 5948 3
## 5949 3
## 5950 3
## 5951 3
## 5952 3
## 5953 1
## 5954 3
## 5955 3
## 5956 2
## 5957 3
## 5958 3
## 5959 3
## 5960 3
## 5961 3
## 5962 3
## 5963 3
## 5964 3
## 5965 3
## 5966 3
## 5967 2
## 5968 3
## 5969 3
## 5970 3
## 5971 3
## 5972 3
## 5973 3
## 5974 3
## 5975 3
## 5976 3
## 5977 3
## 5978 3
## 5979 3
## 5980 3
## 5981 3
## 5982 2
## 5983 3
## 5984 3
## 5985 3
## 5986 3
## 5987 3
## 5988 3
## 5989 3
## 5990 3
## 5991 3
## 5992 3
## 5993 3
## 5994 3
## 5995 3
## 5996 3
## 5997 3
## 5998 3
## 5999 3
## 6000 3
## 6001 3
## 6002 3
## 6003 3
## 6004 3
## 6005 3
## 6006 3
## 6007 3
## 6008 3
## 6009 3
## 6010 3
## 6011 3
## 6012 3
## 6013 3
## 6014 2
## 6015 3
## 6016 3
## 6017 3
## 6018 3
## 6019 2
## 6020 3
## 6021 3
## 6022 3
## 6023 3
## 6024 3
## 6025 3
## 6026 3
## 6027 3
## 6028 3
## 6029 3
## 6030 3
## 6031 3
## 6032 3
## 6033 1
## 6034 3
## 6035 3
## 6036 3
## 6037 2
## 6038 3
## 6039 2
## 6040 3
## 6041 3
## 6042 3
## 6043 3
## 6044 3
## 6045 3
## 6046 3
## 6047 3
## 6048 3
## 6049 3
## 6050 3
## 6051 3
## 6052 3
## 6053 3
## 6054 3
## 6055 3
## 6056 0
## 6057 3
## 6058 3
## 6059 1
## 6060 3
## 6061 3
## 6062 3
## 6063 3
## 6064 3
## 6065 3
## 6066 3
## 6067 3
## 6068 3
## 6069 3
## 6070 3
## 6071 3
## 6072 3
## 6073 3
## 6074 3
## 6075 2
## 6076 3
## 6077 3
## 6078 3
## 6079 3
## 6080 3
## 6081 3
## 6082 3
## 6083 3
## 6084 3
## 6085 3
## 6086 3
## 6087 3
## 6088 3
## 6089 3
## 6090 3
## 6091 3
## 6092 3
## 6093 3
## 6094 3
## 6095 3
## 6096 3
## 6097 3
## 6098 3
## 6099 3
## 6100 3
## 6101 3
## 6102 3
## 6103 3
## 6104 3
## 6105 3
## 6106 3
## 6107 3
## 6108 3
## 6109 3
## 6110 3
## 6111 3
## 6112 3
## 6113 3
## 6114 3
## 6115 3
## 6116 3
## 6117 3
## 6118 3
## 6119 3
## 6120 3
## 6121 3
## 6122 2
## 6123 3
## 6124 3
## 6125 3
## 6126 3
## 6127 3
## 6128 3
## 6129 3
## 6130 3
## 6131 3
## 6132 3
## 6133 3
## 6134 3
## 6135 3
## 6136 3
## 6137 3
## 6138 3
## 6139 3
## 6140 3
## 6141 1
## 6142 3
## 6143 3
## 6144 3
## 6145 3
## 6146 3
## 6147 3
## 6148 3
## 6149 3
## 6150 3
## 6151 3
## 6152 3
## 6153 3
## 6154 3
## 6155 3
## 6156 3
## 6157 3
## 6158 3
## 6159 3
## 6160 3
## 6161 3
## 6162 2
## 6163 3
## 6164 2
## 6165 3
## 6166 3
## 6167 3
## 6168 3
## 6169 3
## 6170 3
## 6171 3
## 6172 2
## 6173 3
## 6174 3
## 6175 3
## 6176 2
## 6177 3
## 6178 3
## 6179 3
## 6180 3
## 6181 3
## 6182 3
## 6183 3
## 6184 3
## 6185 3
## 6186 3
## 6187 3
## 6188 3
## 6189 3
## 6190 3
## 6191 3
## 6192 3
## 6193 3
## 6194 3
## 6195 3
## 6196 3
## 6197 3
## 6198 3
## 6199 2
## 6200 3
## 6201 3
## 6202 3
## 6203 3
## 6204 3
## 6205 3
## 6206 3
## 6207 3
## 6208 1
## 6209 3
## 6210 3
## 6211 3
## 6212 3
## 6213 3
## 6214 3
## 6215 3
## 6216 3
## 6217 3
## 6218 3
## 6219 3
## 6220 3
## 6221 3
## 6222 1
## 6223 3
## 6224 3
## 6225 3
## 6226 3
## 6227 3
## 6228 3
## 6229 3
## 6230 3
## 6231 3
## 6232 3
## 6233 3
## 6234 0
## 6235 3
## 6236 3
## 6237 3
## 6238 3
## 6239 3
## 6240 3
## 6241 3
## 6242 3
## 6243 3
## 6244 3
## 6245 3
## 6246 3
## 6247 3
## 6248 3
## 6249 3
## 6250 3
## 6251 3
## 6252 3
## 6253 3
## 6254 3
## 6255 3
## 6256 3
## 6257 3
## 6258 3
## 6259 3
## 6260 3
## 6261 3
## 6262 3
## 6263 3
## 6264 2
## 6265 3
## 6266 3
## 6267 3
## 6268 3
## 6269 2
## 6270 3
## 6271 3
## 6272 3
## 6273 3
## 6274 3
## 6275 3
## 6276 3
## 6277 3
## 6278 3
## 6279 3
## 6280 3
## 6281 3
## 6282 3
## 6283 3
## 6284 3
## 6285 3
## 6286 3
## 6287 3
## 6288 3
## 6289 3
## 6290 3
## 6291 3
## 6292 3
## 6293 3
## 6294 2
## 6295 3
## 6296 3
## 6297 3
## 6298 3
## 6299 3
## 6300 3
## 6301 3
## 6302 3
## 6303 3
## 6304 3
## 6305 3
## 6306 3
## 6307 3
## 6308 3
## 6309 3
## 6310 3
## 6311 2
## 6312 3
## 6313 3
## 6314 3
## 6315 1
## 6316 3
## 6317 3
## 6318 3
## 6319 3
## 6320 3
## 6321 3
## 6322 3
## 6323 2
## 6324 3
## 6325 3
## 6326 1
## 6327 3
## 6328 3
## 6329 3
## 6330 3
## 6331 3
## 6332 3
## 6333 3
## 6334 3
## 6335 3
## 6336 3
## 6337 3
## 6338 0
## 6339 3
## 6340 3
## 6341 3
## 6342 3
## 6343 3
## 6344 3
## 6345 3
## 6346 3
## 6347 3
## 6348 3
## 6349 3
## 6350 3
## 6351 3
## 6352 3
## 6353 3
## 6354 3
## 6355 3
## 6356 3
## 6357 3
## 6358 3
## 6359 3
## 6360 3
## 6361 3
## 6362 3
## 6363 3
## 6364 3
## 6365 3
## 6366 3
## 6367 3
## 6368 3
## 6369 3
## 6370 3
## 6371 3
## 6372 3
## 6373 3
## 6374 3
## 6375 3
## 6376 3
## 6377 3
## 6378 1
## 6379 3
## 6380 3
## 6381 3
## 6382 3
## 6383 3
## 6384 3
## 6385 3
## 6386 2
## 6387 3
## 6388 3
## 6389 3
## 6390 3
## 6391 3
## 6392 3
## 6393 3
## 6394 3
## 6395 3
## 6396 3
## 6397 3
## 6398 3
## 6399 3
## 6400 3
## 6401 3
## 6402 3
## 6403 3
## 6404 3
## 6405 3
## 6406 3
## 6407 2
## 6408 3
## 6409 3
## 6410 3
## 6411 3
## 6412 3
## 6413 3
## 6414 3
## 6415 3
## 6416 3
## 6417 3
## 6418 2
## 6419 3
## 6420 3
## 6421 3
## 6422 3
## 6423 3
## 6424 3
## 6425 3
## 6426 3
## 6427 3
## 6428 3
## 6429 3
## 6430 1
## 6431 2
## 6432 3
## 6433 3
## 6434 3
## 6435 3
## 6436 3
## 6437 3
## 6438 3
## 6439 3
## 6440 3
## 6441 3
## 6442 3
## 6443 3
## 6444 3
## 6445 3
## 6446 3
## 6447 3
## 6448 3
## 6449 3
## 6450 3
## 6451 3
## 6452 3
## 6453 3
## 6454 3
## 6455 3
## 6456 3
## 6457 3
## 6458 3
## 6459 3
## 6460 3
## 6461 3
## 6462 2
## 6463 3
## 6464 3
## 6465 3
## 6466 3
## 6467 2
## 6468 2
## 6469 3
## 6470 3
## 6471 3
## 6472 3
## 6473 3
## 6474 3
## 6475 3
## 6476 3
## 6477 3
## 6478 3
## 6479 3
## 6480 3
## 6481 3
## 6482 3
## 6483 3
## 6484 3
## 6485 3
## 6486 2
## 6487 3
## 6488 3
## 6489 3
## 6490 0
## 6491 3
## 6492 3
## 6493 3
## 6494 3
## 6495 3
## 6496 3
## 6497 2
## 6498 3
## 6499 3
## 6500 3
## 6501 3
## 6502 3
## 6503 3
## 6504 3
## 6505 3
## 6506 3
## 6507 3
## 6508 3
## 6509 3
## 6510 3
## 6511 3
## 6512 3
## 6513 3
## 6514 3
## 6515 3
## 6516 3
## 6517 3
## 6518 2
## 6519 3
## 6520 3
## 6521 3
## 6522 3
## 6523 3
## 6524 3
## 6525 3
## 6526 3
## 6527 3
## 6528 3
## 6529 3
## 6530 2
## 6531 3
## 6532 3
## 6533 3
## 6534 3
## 6535 3
## 6536 3
## 6537 3
## 6538 3
## 6539 3
## 6540 3
## 6541 3
## 6542 3
## 6543 3
## 6544 3
## 6545 3
## 6546 3
## 6547 3
## 6548 3
## 6549 3
## 6550 3
## 6551 3
## 6552 3
## 6553 3
## 6554 3
## 6555 3
## 6556 3
## 6557 3
## 6558 3
## 6559 3
## 6560 3
## 6561 3
## 6562 3
## 6563 3
## 6564 3
## 6565 3
## 6566 3
## 6567 3
## 6568 3
## 6569 3
## 6570 3
## 6571 3
## 6572 0
## 6573 3
## 6574 3
## 6575 3
## 6576 3
## 6577 3
## 6578 3
## 6579 3
## 6580 3
## 6581 3
## 6582 3
## 6583 3
## 6584 2
## 6585 3
## 6586 3
## 6587 3
## 6588 3
## 6589 3
## 6590 3
## 6591 3
## 6592 0
## 6593 3
## 6594 3
## 6595 3
## 6596 3
## 6597 3
## 6598 1
## 6599 3
## 6600 3
## 6601 3
## 6602 3
## 6603 3
## 6604 3
## 6605 0
## 6606 3
## 6607 3
## 6608 3
## 6609 3
## 6610 3
## 6611 3
## 6612 2
## 6613 3
## 6614 3
## 6615 3
## 6616 3
## 6617 3
## 6618 3
## 6619 3
## 6620 3
## 6621 3
## 6622 3
## 6623 3
## 6624 3
## 6625 3
## 6626 3
## 6627 3
## 6628 3
## 6629 3
## 6630 3
## 6631 3
## 6632 3
## 6633 3
## 6634 3
## 6635 3
## 6636 3
## 6637 3
## 6638 3
## 6639 3
## 6640 3
## 6641 3
## 6642 3
## 6643 3
## 6644 3
## 6645 3
## 6646 3
## 6647 3
## 6648 3
## 6649 3
## 6650 2
## 6651 3
## 6652 3
## 6653 3
## 6654 3
## 6655 3
## 6656 3
## 6657 3
## 6658 3
## 6659 3
## 6660 3
## 6661 3
## 6662 3
## 6663 3
## 6664 3
## 6665 3
## 6666 3
## 6667 3
## 6668 3
## 6669 3
## 6670 3
## 6671 3
## 6672 3
## 6673 3
## 6674 1
## 6675 3
## 6676 3
## 6677 3
## 6678 3
## 6679 3
## 6680 3
## 6681 3
## 6682 3
## 6683 3
## 6684 3
## 6685 3
## 6686 3
## 6687 3
## 6688 3
## 6689 3
## 6690 3
## 6691 3
## 6692 3
## 6693 3
## 6694 3
## 6695 3
## 6696 3
## 6697 3
## 6698 3
## 6699 3
## 6700 3
## 6701 3
## 6702 3
## 6703 3
## 6704 3
## 6705 3
## 6706 3
## 6707 3
## 6708 3
## 6709 3
## 6710 2
## 6711 3
## 6712 3
## 6713 3
## 6714 3
## 6715 3
## 6716 3
## 6717 3
## 6718 3
## 6719 3
## 6720 3
## 6721 3
## 6722 3
## 6723 3
## 6724 3
## 6725 3
## 6726 3
## 6727 3
## 6728 3
## 6729 3
## 6730 3
## 6731 3
## 6732 3
## 6733 3
## 6734 3
## 6735 3
## 6736 3
## 6737 3
## 6738 3
## 6739 3
## 6740 3
## 6741 3
## 6742 3
## 6743 3
## 6744 2
## 6745 3
## 6746 3
## 6747 3
## 6748 2
## 6749 3
## 6750 3
## 6751 3
## 6752 3
## 6753 3
## 6754 3
## 6755 3
## 6756 3
## 6757 3
## 6758 3
## 6759 3
## 6760 3
## 6761 3
## 6762 2
## 6763 3
## 6764 3
## 6765 2
## 6766 3
## 6767 3
## 6768 3
## 6769 3
## 6770 3
## 6771 3
## 6772 3
## 6773 3
## 6774 3
## 6775 3
## 6776 3
## 6777 3
## 6778 3
## 6779 3
## 6780 3
## 6781 3
## 6782 3
## 6783 3
## 6784 3
## 6785 3
## 6786 3
## 6787 3
## 6788 3
## 6789 3
## 6790 3
## 6791 3
## 6792 3
## 6793 3
## 6794 2
## 6795 3
## 6796 3
## 6797 3
## 6798 3
## 6799 3
## 6800 3
## 6801 3
## 6802 3
## 6803 3
## 6804 3
## 6805 3
## 6806 3
## 6807 3
## 6808 3
## 6809 3
## 6810 3
## 6811 3
## 6812 3
## 6813 3
## 6814 3
## 6815 3
## 6816 3
## 6817 3
## 6818 3
## 6819 3
## 6820 3
## 6821 3
## 6822 3
## 6823 1
## 6824 3
## 6825 3
## 6826 3
## 6827 3
## 6828 3
## 6829 3
## 6830 3
## 6831 3
## 6832 3
## 6833 3
## 6834 3
## 6835 3
## 6836 3
## 6837 3
## 6838 3
## 6839 3
## 6840 3
## 6841 3
## 6842 3
## 6843 3
## 6844 3
## 6845 3
## 6846 3
## 6847 3
## 6848 3
## 6849 3
## 6850 3
## 6851 3
## 6852 3
## 6853 3
## 6854 3
## 6855 3
## 6856 3
## 6857 3
## 6858 1
## 6859 3
## 6860 3
## 6861 3
## 6862 3
## 6863 3
## 6864 3
## 6865 3
## 6866 3
## 6867 3
## 6868 3
## 6869 3
## 6870 3
## 6871 3
## 6872 3
## 6873 3
## 6874 3
## 6875 3
## 6876 3
## 6877 3
## 6878 3
## 6879 3
## 6880 3
## 6881 3
## 6882 3
## 6883 3
## 6884 3
## 6885 3
## 6886 3
## 6887 2
## 6888 3
## 6889 1
## 6890 3
## 6891 3
## 6892 3
## 6893 3
## 6894 3
## 6895 2
## 6896 3
## 6897 3
## 6898 3
## 6899 3
## 6900 3
## 6901 3
## 6902 3
## 6903 3
## 6904 3
## 6905 3
## 6906 3
## 6907 3
## 6908 3
## 6909 3
## 6910 3
## 6911 3
## 6912 3
## 6913 2
## 6914 3
## 6915 3
## 6916 2
## 6917 3
## 6918 3
## 6919 3
## 6920 3
## 6921 3
## 6922 3
## 6923 3
## 6924 3
## 6925 3
## 6926 3
## 6927 3
## 6928 3
## 6929 3
## 6930 3
## 6931 3
## 6932 3
## 6933 3
## 6934 3
## 6935 0
## 6936 3
## 6937 3
## 6938 3
## 6939 3
## 6940 2
## 6941 3
## 6942 3
## 6943 3
## 6944 3
## 6945 3
## 6946 2
## 6947 3
## 6948 3
## 6949 3
## 6950 3
## 6951 3
## 6952 3
## 6953 3
## 6954 3
## 6955 3
## 6956 3
## 6957 3
## 6958 3
## 6959 3
## 6960 3
## 6961 3
## 6962 3
## 6963 3
## 6964 3
## 6965 3
## 6966 3
## 6967 3
## 6968 3
## 6969 3
## 6970 3
## 6971 3
## 6972 3
## 6973 3
## 6974 3
## 6975 3
## 6976 3
## 6977 3
## 6978 3
## 6979 3
## 6980 3
## 6981 2
## 6982 3
## 6983 3
## 6984 3
## 6985 3
## 6986 3
## 6987 3
## 6988 3
## 6989 2
## 6990 3
## 6991 3
## 6992 3
## 6993 3
## 6994 3
## 6995 3
## 6996 3
## 6997 3
## 6998 3
## 6999 3
## 7000 3
## 7001 3
## 7002 3
## 7003 3
## 7004 3
## 7005 3
## 7006 3
## 7007 3
## 7008 3
## 7009 3
## 7010 3
## 7011 3
## 7012 3
## 7013 3
## 7014 3
## 7015 3
## 7016 3
## 7017 2
## 7018 3
## 7019 3
## 7020 3
## 7021 3
## 7022 3
## 7023 3
## 7024 3
## 7025 3
## 7026 3
## 7027 3
## 7028 3
## 7029 3
## 7030 3
## 7031 3
## 7032 3
## 7033 3
## 7034 3
## 7035 3
## 7036 3
## 7037 2
## 7038 3
## 7039 3
## 7040 3
## 7041 3
## 7042 3
## 7043 3
## 7044 3
## 7045 3
## 7046 3
## 7047 3
## 7048 3
## 7049 1
## 7050 3
## 7051 3
## 7052 3
## 7053 3
## 7054 3
## 7055 3
## 7056 3
## 7057 3
## 7058 3
## 7059 3
## 7060 3
## 7061 3
## 7062 1
## 7063 3
## 7064 1
## 7065 3
## 7066 2
## 7067 3
## 7068 3
## 7069 3
## 7070 2
## 7071 3
## 7072 3
## 7073 3
## 7074 3
## 7075 3
## 7076 3
## 7077 3
## 7078 3
## 7079 3
## 7080 3
## 7081 3
## 7082 3
## 7083 3
## 7084 3
## 7085 3
## 7086 3
## 7087 3
## 7088 3
## 7089 3
## 7090 3
## 7091 3
## 7092 3
## 7093 2
## 7094 3
## 7095 3
## 7096 3
## 7097 3
## 7098 3
## 7099 3
## 7100 3
## 7101 3
## 7102 3
## 7103 3
## 7104 3
## 7105 3
## 7106 3
## 7107 3
## 7108 3
## 7109 3
## 7110 3
## 7111 3
## 7112 3
## 7113 3
## 7114 3
## 7115 3
## 7116 3
## 7117 3
## 7118 3
## 7119 3
## 7120 3
## 7121 3
## 7122 3
## 7123 3
## 7124 3
## 7125 3
## 7126 3
## 7127 3
## 7128 3
## 7129 3
## 7130 3
## 7131 3
## 7132 3
## 7133 3
## 7134 3
## 7135 3
## 7136 3
## 7137 3
## 7138 3
## 7139 3
## 7140 3
## 7141 3
## 7142 3
## 7143 3
## 7144 3
## 7145 3
## 7146 3
## 7147 3
## 7148 3
## 7149 3
## 7150 3
## 7151 3
## 7152 3
## 7153 3
## 7154 3
## 7155 3
## 7156 3
## 7157 3
## 7158 3
## 7159 3
## 7160 3
## 7161 3
## 7162 3
## 7163 0
## 7164 3
## 7165 3
## 7166 2
## 7167 2
## 7168 3
## 7169 3
## 7170 3
## 7171 3
## 7172 3
## 7173 3
## 7174 3
## 7175 3
## 7176 3
## 7177 3
## 7178 3
## 7179 1
## 7180 3
## 7181 3
## 7182 1
## 7183 1
## 7184 3
## 7185 3
## 7186 3
## 7187 3
## 7188 3
## 7189 3
## 7190 3
## 7191 3
## 7192 3
## 7193 3
## 7194 3
## 7195 3
## 7196 3
## 7197 0
## 7198 3
## 7199 3
## 7200 3
## 7201 3
## 7202 3
## 7203 3
## 7204 3
## 7205 3
## 7206 3
## 7207 3
## 7208 3
## 7209 3
## 7210 3
## 7211 3
## 7212 3
## 7213 3
## 7214 3
## 7215 3
## 7216 3
## 7217 3
## 7218 3
## 7219 3
## 7220 3
## 7221 3
## 7222 3
## 7223 3
## 7224 3
## 7225 3
## 7226 3
## 7227 3
## 7228 3
## 7229 3
## 7230 3
## 7231 3
## 7232 3
## 7233 3
## 7234 3
## 7235 3
## 7236 3
## 7237 3
## 7238 3
## 7239 3
## 7240 3
## 7241 3
## 7242 3
## 7243 3
## 7244 3
## 7245 3
## 7246 3
## 7247 3
## 7248 3
## 7249 3
## 7250 3
## 7251 3
## 7252 3
## 7253 3
## 7254 3
## 7255 3
## 7256 0
## 7257 3
## 7258 3
## 7259 3
## 7260 3
## 7261 1
## 7262 3
## 7263 3
## 7264 3
## 7265 3
## 7266 3
## 7267 3
## 7268 3
## 7269 3
## 7270 3
## 7271 3
## 7272 3
## 7273 3
## 7274 3
## 7275 3
## 7276 3
## 7277 3
## 7278 3
## 7279 3
## 7280 3
## 7281 3
## 7282 3
## 7283 3
## 7284 3
## 7285 3
## 7286 3
## 7287 3
## 7288 3
## 7289 3
## 7290 3
## 7291 3
## 7292 3
## 7293 3
## 7294 3
## 7295 3
## 7296 3
## 7297 3
## 7298 3
## 7299 2
## 7300 3
## 7301 3
## 7302 3
## 7303 3
## 7304 3
## 7305 3
## 7306 3
## 7307 3
## 7308 3
## 7309 1
## 7310 3
## 7311 2
## 7312 3
## 7313 3
## 7314 3
## 7315 3
## 7316 3
## 7317 3
## 7318 3
## 7319 3
## 7320 3
## 7321 3
## 7322 3
## 7323 3
## 7324 3
## 7325 3
## 7326 3
## 7327 3
## 7328 3
## 7329 3
## 7330 3
## 7331 2
## 7332 3
## 7333 3
## 7334 3
## 7335 3
## 7336 3
## 7337 3
## 7338 3
## 7339 3
## 7340 3
## 7341 3
## 7342 3
## 7343 3
## 7344 3
## 7345 3
## 7346 3
## 7347 3
## 7348 3
## 7349 3
## 7350 3
## 7351 1
## 7352 3
## 7353 3
## 7354 3
## 7355 3
## 7356 3
## 7357 3
## 7358 3
## 7359 3
## 7360 3
## 7361 3
## 7362 3
## 7363 3
## 7364 3
## 7365 3
## 7366 3
## 7367 3
## 7368 2
## 7369 3
## 7370 3
## 7371 3
## 7372 3
## 7373 3
## 7374 3
## 7375 3
## 7376 3
## 7377 3
## 7378 3
## 7379 3
## 7380 3
## 7381 3
## 7382 3
## 7383 3
## 7384 3
## 7385 3
## 7386 3
## 7387 3
## 7388 3
## 7389 3
## 7390 3
## 7391 3
## 7392 3
## 7393 1
## 7394 3
## 7395 3
## 7396 3
## 7397 3
## 7398 3
## 7399 3
## 7400 3
## 7401 3
## 7402 3
## 7403 3
## 7404 3
## 7405 3
## 7406 3
## 7407 3
## 7408 3
## 7409 3
## 7410 3
## 7411 3
## 7412 3
## 7413 3
## 7414 3
## 7415 3
## 7416 3
## 7417 2
## 7418 1
## 7419 3
## 7420 3
## 7421 3
## 7422 3
## 7423 3
## 7424 3
## 7425 3
## 7426 3
## 7427 3
## 7428 3
## 7429 2
## 7430 3
## 7431 3
## 7432 3
## 7433 3
## 7434 3
## 7435 3
## 7436 2
## 7437 3
## 7438 2
## 7439 3
## 7440 3
## 7441 3
## 7442 3
## 7443 3
## 7444 3
## 7445 3
## 7446 3
## 7447 3
## 7448 3
## 7449 3
## 7450 3
## 7451 3
## 7452 3
## 7453 3
## 7454 3
## 7455 3
## 7456 3
## 7457 3
## 7458 3
## 7459 3
## 7460 3
## 7461 3
## 7462 3
## 7463 3
## 7464 3
## 7465 3
## 7466 3
## 7467 3
## 7468 3
## 7469 3
## 7470 3
## 7471 2
## 7472 3
## 7473 3
## 7474 3
## 7475 2
## 7476 3
## 7477 3
## 7478 3
## 7479 2
## 7480 3
## 7481 3
## 7482 3
## 7483 3
## 7484 3
## 7485 3
## 7486 3
## 7487 3
## 7488 3
## 7489 3
## 7490 3
## 7491 3
## 7492 3
## 7493 3
## 7494 3
## 7495 3
## 7496 3
## 7497 3
## 7498 3
## 7499 3
## 7500 3
## 7501 3
## 7502 3
## 7503 3
## 7504 3
## 7505 3
## 7506 3
## 7507 3
## 7508 3
## 7509 2
## 7510 3
## 7511 3
## 7512 3
## 7513 3
## 7514 3
## 7515 3
## 7516 2
## 7517 3
## 7518 3
## 7519 2
## 7520 3
## 7521 3
## 7522 3
## 7523 3
## 7524 3
## 7525 3
## 7526 3
## 7527 3
## 7528 3
## 7529 3
## 7530 3
## 7531 3
## 7532 3
## 7533 3
## 7534 3
## 7535 3
## 7536 3
## 7537 3
## 7538 3
## 7539 3
## 7540 3
## 7541 3
## 7542 3
## 7543 3
## 7544 3
## 7545 1
## 7546 3
## 7547 3
## 7548 3
## 7549 3
## 7550 3
## 7551 3
## 7552 3
## 7553 3
## 7554 3
## 7555 3
## 7556 3
## 7557 3
## 7558 3
## 7559 3
## 7560 3
## 7561 3
## 7562 3
## 7563 3
## 7564 3
## 7565 3
## 7566 3
## 7567 3
## 7568 3
## 7569 3
## 7570 2
## 7571 3
## 7572 3
## 7573 3
## 7574 3
## 7575 3
## 7576 1
## 7577 3
## 7578 3
## 7579 3
## 7580 3
## 7581 3
## 7582 3
## 7583 3
## 7584 3
## 7585 3
## 7586 3
## 7587 3
## 7588 3
## 7589 3
## 7590 3
## 7591 3
## 7592 3
## 7593 3
## 7594 3
## 7595 3
## 7596 3
## 7597 2
## 7598 3
## 7599 3
## 7600 3
## 7601 3
## 7602 3
## 7603 3
## 7604 3
## 7605 3
## 7606 3
## 7607 3
## 7608 3
## 7609 3
## 7610 3
## 7611 3
## 7612 3
## 7613 3
## 7614 3
## 7615 3
## 7616 3
## 7617 3
## 7618 3
## 7619 3
## 7620 3
## 7621 3
## 7622 3
## 7623 3
## 7624 3
## 7625 3
## 7626 3
## 7627 3
## 7628 3
## 7629 3
## 7630 1
## 7631 3
## 7632 3
## 7633 3
## 7634 3
## 7635 3
## 7636 3
## 7637 3
## 7638 3
## 7639 3
## 7640 3
## 7641 3
## 7642 3
## 7643 3
## 7644 3
## 7645 3
## 7646 3
## 7647 3
## 7648 3
## 7649 3
## 7650 3
## 7651 3
## 7652 3
## 7653 3
## 7654 3
## 7655 3
## 7656 3
## 7657 3
## 7658 0
## 7659 2
## 7660 3
## 7661 3
## 7662 3
## 7663 3
## 7664 3
## 7665 3
## 7666 3
## 7667 3
## 7668 3
## 7669 3
## 7670 3
## 7671 3
## 7672 3
## 7673 3
## 7674 3
## 7675 3
## 7676 3
## 7677 3
## 7678 3
## 7679 3
## 7680 3
## 7681 3
## 7682 3
## 7683 3
## 7684 3
## 7685 3
## 7686 3
## 7687 3
## 7688 3
## 7689 3
## 7690 3
## 7691 3
## 7692 2
## 7693 3
## 7694 3
## 7695 3
## 7696 3
## 7697 3
## 7698 3
## 7699 3
## 7700 3
## 7701 3
## 7702 3
## 7703 3
## 7704 3
## 7705 3
## 7706 3
## 7707 3
## 7708 3
## 7709 3
## 7710 3
## 7711 3
## 7712 3
## 7713 3
## 7714 3
## 7715 3
## 7716 3
## 7717 3
## 7718 3
## 7719 3
## 7720 3
## 7721 3
## 7722 3
## 7723 3
## 7724 3
## 7725 3
## 7726 3
## 7727 3
## 7728 3
## 7729 3
## 7730 3
## 7731 3
## 7732 3
## 7733 3
## 7734 3
## 7735 3
## 7736 3
## 7737 3
## 7738 3
## 7739 3
## 7740 3
## 7741 3
## 7742 3
## 7743 3
## 7744 3
## 7745 3
## 7746 3
## 7747 3
## 7748 3
## 7749 3
## 7750 3
## 7751 3
## 7752 3
## 7753 3
## 7754 2
## 7755 3
## 7756 3
## 7757 3
## 7758 3
## 7759 3
## 7760 3
## 7761 3
## 7762 3
## 7763 3
## 7764 3
## 7765 3
## 7766 3
## 7767 3
## 7768 3
## 7769 3
## 7770 3
## 7771 3
## 7772 2
## 7773 3
## 7774 3
## 7775 3
## 7776 3
## 7777 3
## 7778 3
## 7779 3
## 7780 3
## 7781 3
## 7782 3
## 7783 3
## 7784 3
## 7785 3
## 7786 3
## 7787 3
## 7788 3
## 7789 3
## 7790 3
## 7791 3
## 7792 3
## 7793 3
## 7794 3
## 7795 3
## 7796 3
## 7797 3
## 7798 2
## 7799 3
## 7800 3
## 7801 3
## 7802 3
## 7803 3
## 7804 3
## 7805 3
## 7806 3
## 7807 3
## 7808 3
## 7809 3
## 7810 3
## 7811 3
## 7812 3
## 7813 3
## 7814 3
## 7815 3
## 7816 3
## 7817 3
## 7818 3
## 7819 3
## 7820 3
## 7821 3
## 7822 3
## 7823 3
## 7824 3
## 7825 3
## 7826 3
## 7827 3
## 7828 3
## 7829 3
## 7830 3
## 7831 3
## 7832 3
## 7833 3
## 7834 3
## 7835 3
## 7836 3
## 7837 3
## 7838 3
## 7839 3
## 7840 3
## 7841 3
## 7842 3
## 7843 3
## 7844 3
## 7845 3
## 7846 3
## 7847 3
## 7848 3
## 7849 3
## 7850 3
## 7851 3
## 7852 2
## 7853 3
## 7854 3
## 7855 3
## 7856 3
## 7857 3
## 7858 3
## 7859 3
## 7860 3
## 7861 3
## 7862 3
## 7863 3
## 7864 3
## 7865 3
## 7866 3
## 7867 3
## 7868 3
## 7869 3
## 7870 3
## 7871 3
## 7872 2
## 7873 1
## 7874 3
## 7875 3
## 7876 3
## 7877 3
## 7878 1
## 7879 3
## 7880 3
## 7881 2
## 7882 3
## 7883 3
## 7884 3
## 7885 2
## 7886 3
## 7887 3
## 7888 3
## 7889 3
## 7890 3
## 7891 3
## 7892 3
## 7893 3
## 7894 3
## 7895 3
## 7896 3
## 7897 3
## 7898 3
## 7899 3
## 7900 3
## 7901 3
## 7902 3
## 7903 3
## 7904 3
## 7905 3
## 7906 3
## 7907 3
## 7908 3
## 7909 3
## 7910 3
## 7911 3
## 7912 3
## 7913 3
## 7914 3
## 7915 3
## 7916 3
## 7917 3
## 7918 1
## 7919 3
## 7920 3
## 7921 3
## 7922 3
## 7923 3
## 7924 3
## 7925 3
## 7926 3
## 7927 3
## 7928 3
## 7929 3
## 7930 3
## 7931 3
## 7932 3
## 7933 3
## 7934 3
## 7935 3
## 7936 3
## 7937 3
## 7938 3
## 7939 3
## 7940 3
## 7941 3
## 7942 3
## 7943 3
## 7944 3
## 7945 3
## 7946 3
## 7947 3
## 7948 3
## 7949 3
## 7950 3
## 7951 3
## 7952 3
## 7953 3
## 7954 3
## 7955 3
## 7956 3
## 7957 3
## 7958 3
## 7959 3
## 7960 3
## 7961 1
## 7962 3
## 7963 3
## 7964 3
## 7965 3
## 7966 3
## 7967 3
## 7968 3
## 7969 3
## 7970 3
## 7971 1
## 7972 3
## 7973 3
## 7974 3
## 7975 3
## 7976 3
## 7977 3
## 7978 3
## 7979 3
## 7980 3
## 7981 3
## 7982 3
## 7983 3
## 7984 3
## 7985 3
## 7986 3
## 7987 3
## 7988 3
## 7989 3
## 7990 3
## 7991 3
## 7992 3
## 7993 3
## 7994 3
## 7995 3
## 7996 3
## 7997 3
## 7998 3
## 7999 3
## 8000 3
## 8001 3
## 8002 3
## 8003 3
## 8004 3
## 8005 2
## 8006 3
## 8007 3
## 8008 3
## 8009 3
## 8010 3
## 8011 3
## 8012 3
## 8013 3
## 8014 3
## 8015 3
## 8016 3
## 8017 3
## 8018 3
## 8019 2
## 8020 3
## 8021 3
## 8022 3
## 8023 3
## 8024 3
## 8025 3
## 8026 3
## 8027 3
## 8028 3
## 8029 3
## 8030 3
## 8031 3
## 8032 3
## 8033 3
## 8034 3
## 8035 3
## 8036 3
## 8037 3
## 8038 3
## 8039 1
## 8040 3
## 8041 3
## 8042 3
## 8043 3
## 8044 3
## 8045 3
## 8046 3
## 8047 3
## 8048 3
## 8049 3
## 8050 3
## 8051 3
## 8052 3
## 8053 2
## 8054 3
## 8055 3
## 8056 3
## 8057 1
## 8058 1
## 8059 3
## 8060 3
## 8061 3
## 8062 1
## 8063 3
## 8064 3
## 8065 3
## 8066 3
## 8067 3
## 8068 3
## 8069 3
## 8070 3
## 8071 3
## 8072 3
## 8073 3
## 8074 3
## 8075 3
## 8076 3
## 8077 3
## 8078 3
## 8079 3
## 8080 3
## 8081 3
## 8082 3
## 8083 1
## 8084 3
## 8085 3
## 8086 3
## 8087 3
## 8088 3
## 8089 3
## 8090 3
## 8091 3
## 8092 3
## 8093 3
## 8094 3
## 8095 3
## 8096 2
## 8097 3
## 8098 3
## 8099 3
## 8100 3
## 8101 2
## 8102 3
## 8103 3
## 8104 0
## 8105 3
## 8106 3
## 8107 3
## 8108 2
## 8109 3
## 8110 3
## 8111 3
## 8112 3
## 8113 3
## 8114 3
## 8115 3
## 8116 3
## 8117 3
## 8118 3
## 8119 3
## 8120 3
## 8121 3
## 8122 3
## 8123 3
## 8124 3
## 8125 3
## 8126 3
## 8127 3
## 8128 3
## 8129 3
## 8130 3
## 8131 3
## 8132 3
## 8133 3
## 8134 3
## 8135 3
## 8136 3
## 8137 3
## 8138 3
## 8139 3
## 8140 3
## 8141 3
## 8142 3
## 8143 3
## 8144 3
## 8145 3
## 8146 3
## 8147 3
## 8148 3
## 8149 3
## 8150 3
## 8151 3
## 8152 3
## 8153 3
## 8154 3
## 8155 3
## 8156 3
## 8157 3
## 8158 3
## 8159 3
## 8160 3
## 8161 1
## 8162 3
## 8163 3
## 8164 3
## 8165 3
## 8166 3
## 8167 3
## 8168 3
## 8169 3
## 8170 3
## 8171 3
## 8172 3
## 8173 3
## 8174 3
## 8175 3
## 8176 3
## 8177 3
## 8178 3
## 8179 3
## 8180 3
## 8181 3
## 8182 3
## 8183 3
## 8184 3
## 8185 3
## 8186 2
## 8187 3
## 8188 3
## 8189 3
## 8190 3
## 8191 3
## 8192 3
## 8193 3
## 8194 3
## 8195 3
## 8196 3
## 8197 3
## 8198 3
## 8199 3
## 8200 3
## 8201 3
## 8202 3
## 8203 1
## 8204 3
## 8205 3
## 8206 3
## 8207 3
## 8208 3
## 8209 3
## 8210 3
## 8211 3
## 8212 3
## 8213 3
## 8214 3
## 8215 3
## 8216 3
## 8217 3
## 8218 3
## 8219 3
## 8220 3
## 8221 3
## 8222 3
## 8223 3
## 8224 3
## 8225 3
## 8226 3
## 8227 3
## 8228 3
## 8229 3
## 8230 1
## 8231 3
## 8232 3
## 8233 3
## 8234 3
## 8235 3
## 8236 3
## 8237 3
## 8238 3
## 8239 3
## 8240 3
## 8241 3
## 8242 3
## 8243 3
## 8244 3
## 8245 3
## 8246 0
## 8247 3
## 8248 2
## 8249 3
## 8250 3
## 8251 3
## 8252 3
## 8253 3
## 8254 3
## 8255 3
## 8256 3
## 8257 3
## 8258 3
## 8259 2
## 8260 3
## 8261 3
## 8262 3
## 8263 3
## 8264 3
## 8265 3
## 8266 3
## 8267 3
## 8268 1
## 8269 3
## 8270 3
## 8271 3
## 8272 3
## 8273 3
## 8274 3
## 8275 3
## 8276 3
## 8277 3
## 8278 3
## 8279 3
## 8280 3
## 8281 3
## 8282 3
## 8283 3
## 8284 3
## 8285 3
## 8286 3
## 8287 3
## 8288 3
## 8289 3
## 8290 3
## 8291 3
## 8292 3
## 8293 3
## 8294 3
## 8295 3
## 8296 3
## 8297 3
## 8298 3
## 8299 3
## 8300 3
## 8301 3
## 8302 3
## 8303 3
## 8304 3
## 8305 3
## 8306 3
## 8307 3
## 8308 3
## 8309 3
## 8310 3
## 8311 3
## 8312 3
## 8313 3
## 8314 3
## 8315 3
## 8316 3
## 8317 3
## 8318 3
## 8319 3
## 8320 3
## 8321 3
## 8322 3
## 8323 3
## 8324 3
## 8325 3
## 8326 3
## 8327 3
## 8328 3
## 8329 3
## 8330 3
## 8331 2
## 8332 3
## 8333 3
## 8334 3
## 8335 3
## 8336 3
## 8337 3
## 8338 3
## 8339 3
## 8340 3
## 8341 3
## 8342 3
## 8343 3
## 8344 3
## 8345 3
## 8346 3
## 8347 3
## 8348 3
## 8349 3
## 8350 3
## 8351 3
## 8352 3
## 8353 3
## 8354 3
## 8355 3
## 8356 3
## 8357 3
## 8358 3
## 8359 3
## 8360 3
## 8361 3
## 8362 2
## 8363 3
## 8364 3
## 8365 3
## 8366 3
## 8367 3
## 8368 3
## 8369 3
## 8370 3
## 8371 3
## 8372 3
## 8373 3
## 8374 3
## 8375 3
## 8376 3
## 8377 3
## 8378 3
## 8379 3
## 8380 3
## 8381 3
## 8382 3
## 8383 3
## 8384 3
## 8385 3
## 8386 3
## 8387 3
## 8388 3
## 8389 3
## 8390 3
## 8391 3
## 8392 3
## 8393 3
## 8394 3
## 8395 3
## 8396 3
## 8397 3
## 8398 3
## 8399 3
## 8400 3
## 8401 3
## 8402 3
## 8403 3
## 8404 3
## 8405 3
## 8406 3
## 8407 3
## 8408 3
## 8409 3
## 8410 3
## 8411 2
## 8412 3
## 8413 3
## 8414 3
## 8415 3
## 8416 3
## 8417 1
## 8418 2
## 8419 3
## 8420 3
## 8421 3
## 8422 3
## 8423 3
## 8424 3
## 8425 3
## 8426 3
## 8427 3
## 8428 3
## 8429 3
## 8430 3
## 8431 3
## 8432 3
## 8433 3
## 8434 3
## 8435 3
## 8436 3
## 8437 3
## 8438 3
## 8439 3
## 8440 3
## 8441 1
## 8442 3
## 8443 3
## 8444 3
## 8445 3
## 8446 3
## 8447 3
## 8448 3
## 8449 3
## 8450 3
## 8451 3
## 8452 3
## 8453 3
## 8454 3
## 8455 3
## 8456 2
## 8457 3
## 8458 3
## 8459 3
## 8460 3
## 8461 3
## 8462 3
## 8463 3
## 8464 3
## 8465 1
## 8466 3
## 8467 3
## 8468 3
## 8469 3
## 8470 3
## 8471 3
## 8472 3
## 8473 3
## 8474 3
## 8475 3
## 8476 3
## 8477 3
## 8478 3
## 8479 3
## 8480 3
## 8481 3
## 8482 3
## 8483 3
## 8484 3
## 8485 3
## 8486 3
## 8487 3
## 8488 3
## 8489 3
## 8490 3
## 8491 3
## 8492 3
## 8493 3
## 8494 3
## 8495 3
## 8496 3
## 8497 1
## 8498 3
## 8499 3
## 8500 3
## 8501 0
## 8502 3
## 8503 3
## 8504 3
## 8505 3
## 8506 3
## 8507 3
## 8508 3
## 8509 3
## 8510 3
## 8511 3
## 8512 3
## 8513 3
## 8514 3
## 8515 3
## 8516 3
## 8517 3
## 8518 3
## 8519 0
## 8520 3
## 8521 3
## 8522 3
## 8523 3
## 8524 3
## 8525 3
## 8526 3
## 8527 3
## 8528 3
## 8529 3
## 8530 3
## 8531 3
## 8532 3
## 8533 3
## 8534 3
## 8535 3
## 8536 3
## 8537 3
## 8538 3
## 8539 3
## 8540 3
## 8541 3
## 8542 3
## 8543 3
## 8544 3
## 8545 3
## 8546 3
## 8547 3
## 8548 3
## 8549 3
## 8550 3
## 8551 3
## 8552 3
## 8553 3
## 8554 3
## 8555 3
## 8556 3
## 8557 3
## 8558 3
## 8559 3
## 8560 3
## 8561 3
## 8562 3
## 8563 3
## 8564 3
## 8565 3
## 8566 3
## 8567 3
## 8568 3
## 8569 3
## 8570 3
## 8571 3
## 8572 3
## 8573 3
## 8574 3
## 8575 3
## 8576 3
## 8577 3
## 8578 3
## 8579 0
## 8580 3
## 8581 3
## 8582 3
## 8583 3
## 8584 3
## 8585 3
## 8586 3
## 8587 3
## 8588 3
## 8589 3
## 8590 3
## 8591 3
## 8592 3
## 8593 3
## 8594 3
## 8595 3
## 8596 3
## 8597 3
## 8598 3
## 8599 3
## 8600 3
## 8601 2
## 8602 2
## 8603 3
## 8604 3
## 8605 2
## 8606 3
## 8607 3
## 8608 3
## 8609 3
## 8610 3
## 8611 3
## 8612 3
## 8613 3
## 8614 3
## 8615 3
## 8616 3
## 8617 3
## 8618 3
## 8619 3
## 8620 3
## 8621 3
## 8622 3
## 8623 3
## 8624 2
## 8625 3
## 8626 3
## 8627 3
## 8628 3
## 8629 3
## 8630 3
## 8631 2
## 8632 1
## 8633 3
## 8634 3
## 8635 3
## 8636 3
## 8637 3
## 8638 3
## 8639 3
## 8640 3
## 8641 3
## 8642 3
## 8643 3
## 8644 3
## 8645 3
## 8646 3
## 8647 0
## 8648 3
## 8649 3
## 8650 3
## 8651 3
## 8652 3
## 8653 3
## 8654 3
## 8655 3
## 8656 3
## 8657 3
## 8658 3
## 8659 3
## 8660 3
## 8661 3
## 8662 3
## 8663 3
## 8664 2
## 8665 3
## 8666 3
## 8667 3
## 8668 2
## 8669 3
## 8670 3
## 8671 3
## 8672 3
## 8673 3
## 8674 3
## 8675 3
## 8676 3
## 8677 3
## 8678 3
## 8679 3
## 8680 3
## 8681 3
## 8682 3
## 8683 3
## 8684 3
## 8685 3
## 8686 3
## 8687 3
## 8688 3
## 8689 3
## 8690 3
## 8691 3
## 8692 3
## 8693 3
## 8694 3
## 8695 3
## 8696 3
## 8697 3
## 8698 3
## 8699 3
## 8700 3
## 8701 3
## 8702 3
## 8703 3
## 8704 3
## 8705 3
## 8706 3
## 8707 3
## 8708 3
## 8709 3
## 8710 3
## 8711 3
## 8712 3
## 8713 3
## 8714 3
## 8715 3
## 8716 2
## 8717 3
## 8718 3
## 8719 3
## 8720 3
## 8721 3
## 8722 3
## 8723 3
## 8724 3
## 8725 3
## 8726 3
## 8727 3
## 8728 3
## 8729 3
## 8730 3
## 8731 3
## 8732 3
## 8733 3
## 8734 3
## 8735 3
## 8736 1
## 8737 2
## 8738 3
## 8739 2
## 8740 3
## 8741 3
## 8742 3
## 8743 2
## 8744 3
## 8745 3
## 8746 1
## 8747 3
## 8748 3
## 8749 3
## 8750 3
## 8751 3
## 8752 3
## 8753 3
## 8754 3
## 8755 3
## 8756 3
## 8757 3
## 8758 3
## 8759 3
## 8760 3
## 8761 3
## 8762 2
## 8763 3
## 8764 3
## 8765 3
## 8766 0
## 8767 3
## 8768 3
## 8769 3
## 8770 3
## 8771 3
## 8772 3
## 8773 3
## 8774 2
## 8775 3
## 8776 3
## 8777 3
## 8778 3
## 8779 3
## 8780 3
## 8781 3
## 8782 3
## 8783 3
## 8784 3
## 8785 3
## 8786 3
## 8787 3
## 8788 3
## 8789 3
## 8790 3
## 8791 3
## 8792 3
## 8793 3
## 8794 3
## 8795 3
## 8796 3
## 8797 3
## 8798 3
## 8799 3
## 8800 3
## 8801 3
## 8802 3
## 8803 3
## 8804 3
## 8805 3
## 8806 3
## 8807 3
## 8808 3
## 8809 3
## 8810 3
## 8811 3
## 8812 3
## 8813 3
## 8814 3
## 8815 3
## 8816 3
## 8817 3
## 8818 3
## 8819 3
## 8820 3
## 8821 3
## 8822 1
## 8823 3
## 8824 3
## 8825 3
## 8826 3
## 8827 3
## 8828 3
## 8829 3
## 8830 3
## 8831 3
## 8832 3
## 8833 3
## 8834 3
## 8835 3
## 8836 3
## 8837 3
## 8838 3
## 8839 3
## 8840 3
## 8841 3
## 8842 3
## 8843 3
## 8844 3
## 8845 3
## 8846 3
## 8847 3
## 8848 3
## 8849 3
## 8850 3
## 8851 3
## 8852 3
## 8853 3
## 8854 3
## 8855 3
## 8856 3
## 8857 2
## 8858 3
## 8859 3
## 8860 3
## 8861 3
## 8862 3
## 8863 3
## 8864 2
## 8865 3
## 8866 2
## 8867 3
## 8868 3
## 8869 3
## 8870 3
## 8871 3
## 8872 3
## 8873 3
## 8874 3
## 8875 2
## 8876 3
## 8877 3
## 8878 3
## 8879 3
## 8880 3
## 8881 3
## 8882 3
## 8883 2
## 8884 3
## 8885 3
## 8886 2
## 8887 3
## 8888 3
## 8889 3
## 8890 3
## 8891 3
## 8892 3
## 8893 3
## 8894 3
## 8895 3
## 8896 3
## 8897 3
## 8898 3
## 8899 3
## 8900 3
## 8901 3
## 8902 3
## 8903 3
## 8904 3
## 8905 1
## 8906 3
## 8907 3
## 8908 3
## 8909 3
## 8910 3
## 8911 3
## 8912 3
## 8913 3
## 8914 3
## 8915 3
## 8916 3
## 8917 3
## 8918 3
## 8919 3
## 8920 3
## 8921 3
## 8922 3
## 8923 3
## 8924 3
## 8925 3
## 8926 3
## 8927 3
## 8928 3
## 8929 3
## 8930 3
## 8931 3
## 8932 3
## 8933 3
## 8934 3
## 8935 3
## 8936 3
## 8937 3
## 8938 3
## 8939 3
## 8940 3
## 8941 3
## 8942 3
## 8943 3
## 8944 3
## 8945 3
## 8946 3
## 8947 3
## 8948 3
## 8949 3
## 8950 3
## 8951 3
## 8952 3
## 8953 3
## 8954 3
## 8955 3
## 8956 3
## 8957 3
## 8958 3
## 8959 3
## 8960 3
## 8961 3
## 8962 3
## 8963 3
## 8964 3
## 8965 3
## 8966 3
## 8967 3
## 8968 3
## 8969 3
## 8970 3
## 8971 3
## 8972 3
## 8973 3
## 8974 3
## 8975 3
## 8976 3
## 8977 3
## 8978 3
## 8979 3
## 8980 3
## 8981 3
## 8982 3
## 8983 3
## 8984 3
## 8985 3
## 8986 2
## 8987 3
## 8988 3
## 8989 3
## 8990 3
## 8991 3
## 8992 2
## 8993 1
## 8994 3
## 8995 3
## 8996 3
## 8997 3
## 8998 3
## 8999 3
## 9000 3
## 9001 3
## 9002 3
## 9003 3
## 9004 3
## 9005 3
## 9006 3
## 9007 3
## 9008 2
## 9009 3
## 9010 3
## 9011 3
## 9012 3
## 9013 3
## 9014 3
## 9015 3
## 9016 3
## 9017 3
## 9018 3
## 9019 3
## 9020 3
## 9021 3
## 9022 3
## 9023 3
## 9024 3
## 9025 3
## 9026 3
## 9027 3
## 9028 3
## 9029 3
## 9030 3
## 9031 3
## 9032 3
## 9033 3
## 9034 3
## 9035 3
## 9036 3
## 9037 3
## 9038 3
## 9039 3
## 9040 3
## 9041 3
## 9042 3
## 9043 3
## 9044 3
## 9045 3
## 9046 3
## 9047 3
## 9048 3
## 9049 3
## 9050 3
## 9051 3
## 9052 3
## 9053 3
## 9054 3
## 9055 3
## 9056 3
## 9057 3
## 9058 3
## 9059 3
## 9060 3
## 9061 3
## 9062 3
## 9063 3
## 9064 3
## 9065 3
## 9066 3
## 9067 3
## 9068 3
## 9069 3
## 9070 3
## 9071 3
## 9072 3
## 9073 3
## 9074 0
## 9075 3
## 9076 3
## 9077 3
## 9078 3
## 9079 3
## 9080 3
## 9081 3
## 9082 2
## 9083 3
## 9084 3
## 9085 3
## 9086 3
## 9087 3
## 9088 3
## 9089 3
## 9090 3
## 9091 3
## 9092 3
## 9093 3
## 9094 3
## 9095 3
## 9096 3
## 9097 3
## 9098 3
## 9099 3
## 9100 3
## 9101 3
## 9102 3
## 9103 3
## 9104 3
## 9105 3
## 9106 3
## 9107 3
## 9108 3
## 9109 3
## 9110 3
## 9111 3
## 9112 3
## 9113 3
## 9114 3
## 9115 3
## 9116 3
## 9117 3
## 9118 3
## 9119 3
## 9120 3
## 9121 3
## 9122 3
## 9123 3
## 9124 3
## 9125 3
## 9126 3
## 9127 3
## 9128 3
## 9129 3
## 9130 3
## 9131 3
## 9132 3
## 9133 3
## 9134 3
## 9135 3
## 9136 3
## 9137 3
## 9138 3
## 9139 3
## 9140 3
## 9141 3
## 9142 3
## 9143 3
## 9144 3
## 9145 3
## 9146 3
## 9147 3
## 9148 3
## 9149 3
## 9150 3
## 9151 3
## 9152 1
## 9153 1
## 9154 3
## 9155 3
## 9156 3
## 9157 3
## 9158 3
## 9159 3
## 9160 3
## 9161 3
## 9162 3
## 9163 3
## 9164 3
## 9165 3
## 9166 3
## 9167 3
## 9168 3
## 9169 3
## 9170 3
## 9171 3
## 9172 3
## 9173 3
## 9174 3
## 9175 3
## 9176 3
## 9177 3
## 9178 3
## 9179 3
## 9180 3
## 9181 3
## 9182 3
## 9183 3
## 9184 3
## 9185 3
## 9186 3
## 9187 3
## 9188 3
## 9189 3
## 9190 3
## 9191 3
## 9192 3
## 9193 3
## 9194 3
## 9195 3
## 9196 3
## 9197 3
## 9198 3
## 9199 3
## 9200 3
## 9201 3
## 9202 3
## 9203 3
## 9204 3
## 9205 3
## 9206 3
## 9207 3
## 9208 3
## 9209 3
## 9210 3
## 9211 3
## 9212 3
## 9213 3
## 9214 3
## 9215 3
## 9216 3
## 9217 3
## 9218 3
## 9219 3
## 9220 3
## 9221 3
## 9222 3
## 9223 3
## 9224 3
## 9225 3
## 9226 3
## 9227 3
## 9228 0
## 9229 3
## 9230 3
## 9231 3
## 9232 3
## 9233 3
## 9234 3
## 9235 3
## 9236 3
## 9237 3
## 9238 3
## 9239 3
## 9240 3
## 9241 3
## 9242 3
## 9243 3
## 9244 3
## 9245 3
## 9246 3
## 9247 3
## 9248 3
## 9249 3
## 9250 3
## 9251 3
## 9252 3
## 9253 3
## 9254 3
## 9255 3
## 9256 3
## 9257 3
## 9258 3
## 9259 3
## 9260 3
## 9261 3
## 9262 3
## 9263 3
## 9264 3
## 9265 3
## 9266 3
## 9267 2
## 9268 3
## 9269 3
## 9270 3
## 9271 3
## 9272 3
## 9273 3
## 9274 3
## 9275 3
## 9276 3
## 9277 3
## 9278 3
## 9279 3
## 9280 3
## 9281 3
## 9282 3
## 9283 3
## 9284 3
## 9285 3
## 9286 3
## 9287 3
## 9288 3
## 9289 3
## 9290 3
## 9291 3
## 9292 3
## 9293 3
## 9294 3
## 9295 3
## 9296 3
## 9297 3
## 9298 3
## 9299 3
## 9300 3
## 9301 3
## 9302 3
## 9303 3
## 9304 3
## 9305 3
## 9306 3
## 9307 3
## 9308 3
## 9309 3
## 9310 3
## 9311 3
## 9312 2
## 9313 3
## 9314 3
## 9315 1
## 9316 3
## 9317 3
## 9318 3
## 9319 3
## 9320 3
## 9321 2
## 9322 3
## 9323 3
## 9324 3
## 9325 3
## 9326 3
## 9327 3
## 9328 3
## 9329 3
## 9330 3
## 9331 2
## 9332 3
## 9333 3
## 9334 3
## 9335 3
## 9336 3
## 9337 2
## 9338 3
## 9339 3
## 9340 3
## 9341 3
## 9342 3
## 9343 3
## 9344 3
## 9345 3
## 9346 3
## 9347 3
## 9348 3
## 9349 3
## 9350 3
## 9351 3
## 9352 3
## 9353 3
## 9354 3
## 9355 3
## 9356 3
## 9357 3
## 9358 3
## 9359 3
## 9360 3
## 9361 3
## 9362 3
## 9363 3
## 9364 1
## 9365 3
## 9366 3
## 9367 3
## 9368 3
## 9369 3
## 9370 3
## 9371 3
## 9372 3
## 9373 3
## 9374 2
## 9375 3
## 9376 3
## 9377 3
## 9378 3
## 9379 3
## 9380 3
## 9381 3
## 9382 3
## 9383 3
## 9384 2
## 9385 3
## 9386 1
## 9387 1
## 9388 3
## 9389 3
## 9390 3
## 9391 3
## 9392 3
## 9393 3
## 9394 3
## 9395 3
## 9396 3
## 9397 3
## 9398 3
## 9399 3
## 9400 3
## 9401 3
## 9402 3
## 9403 3
## 9404 3
## 9405 3
## 9406 3
## 9407 3
## 9408 3
## 9409 3
## 9410 3
## 9411 3
## 9412 3
## 9413 3
## 9414 3
## 9415 3
## 9416 3
## 9417 3
## 9418 3
## 9419 3
## 9420 3
## 9421 3
## 9422 3
## 9423 3
## 9424 3
## 9425 3
## 9426 3
## 9427 1
## 9428 3
## 9429 3
## 9430 3
## 9431 3
## 9432 3
## 9433 3
## 9434 3
## 9435 3
## 9436 3
## 9437 1
## 9438 3
## 9439 3
## 9440 3
## 9441 3
## 9442 2
## 9443 3
## 9444 3
## 9445 3
## 9446 3
## 9447 3
## 9448 3
## 9449 3
## 9450 3
## 9451 1
## 9452 3
## 9453 1
## 9454 3
## 9455 3
## 9456 3
## 9457 3
## 9458 3
## 9459 3
## 9460 3
## 9461 3
## 9462 3
## 9463 3
## 9464 3
## 9465 3
## 9466 3
## 9467 3
## 9468 3
## 9469 3
## 9470 2
## 9471 3
## 9472 3
## 9473 3
## 9474 3
## 9475 3
## 9476 3
## 9477 3
## 9478 3
## 9479 3
## 9480 3
## 9481 3
## 9482 1
## 9483 3
## 9484 3
## 9485 3
## 9486 3
## 9487 3
## 9488 3
## 9489 3
## 9490 3
## 9491 2
## 9492 3
## 9493 3
## 9494 3
## 9495 3
## 9496 3
## 9497 3
## 9498 3
## 9499 3
## 9500 3
## 9501 3
## 9502 3
## 9503 3
## 9504 3
## 9505 3
## 9506 3
## 9507 3
## 9508 3
## 9509 3
## 9510 3
## 9511 3
## 9512 3
## 9513 3
## 9514 3
## 9515 3
## 9516 3
## 9517 3
## 9518 3
## 9519 3
## 9520 3
## 9521 3
## 9522 3
## 9523 3
## 9524 3
## 9525 3
## 9526 3
## 9527 3
## 9528 3
## 9529 2
## 9530 3
## 9531 3
## 9532 3
## 9533 3
## 9534 3
## 9535 3
## 9536 3
## 9537 3
## 9538 3
## 9539 3
## 9540 3
## 9541 3
## 9542 3
## 9543 3
## 9544 3
## 9545 2
## 9546 2
## 9547 3
## 9548 3
## 9549 3
## 9550 3
## 9551 3
## 9552 3
## 9553 3
## 9554 3
## 9555 3
## 9556 3
## 9557 3
## 9558 3
## 9559 3
## 9560 3
## 9561 3
## 9562 3
## 9563 3
## 9564 3
## 9565 3
## 9566 3
## 9567 3
## 9568 3
## 9569 3
## 9570 3
## 9571 3
## 9572 3
## 9573 3
## 9574 3
## 9575 3
## 9576 3
## 9577 3
## 9578 3
## 9579 3
## 9580 0
## 9581 3
## 9582 3
## 9583 3
## 9584 3
## 9585 3
## 9586 3
## 9587 3
## 9588 3
## 9589 3
## 9590 3
## 9591 3
## 9592 3
## 9593 3
## 9594 3
## 9595 3
## 9596 3
## 9597 3
## 9598 3
## 9599 3
## 9600 3
## 9601 3
## 9602 3
## 9603 3
## 9604 3
## 9605 3
## 9606 3
## 9607 3
## 9608 3
## 9609 2
## 9610 3
## 9611 3
## 9612 1
## 9613 3
## 9614 3
## 9615 3
## 9616 3
## 9617 3
## 9618 3
## 9619 3
## 9620 3
## 9621 3
## 9622 2
## 9623 3
## 9624 3
## 9625 3
## 9626 3
## 9627 3
## 9628 3
## 9629 3
## 9630 3
## 9631 3
## 9632 3
## 9633 3
## 9634 3
## 9635 3
## 9636 3
## 9637 3
## 9638 3
## 9639 3
## 9640 3
## 9641 3
## 9642 3
## 9643 3
## 9644 3
## 9645 3
## 9646 3
## 9647 3
## 9648 3
## 9649 3
## 9650 3
## 9651 3
## 9652 3
## 9653 3
## 9654 3
## 9655 3
## 9656 3
## 9657 3
## 9658 3
## 9659 3
## 9660 3
## 9661 3
## 9662 3
## 9663 3
## 9664 3
## 9665 3
## 9666 3
## 9667 3
## 9668 3
## 9669 3
## 9670 3
## 9671 3
## 9672 3
## 9673 3
## 9674 3
## 9675 3
## 9676 3
## 9677 3
## 9678 3
## 9679 3
## 9680 3
## 9681 3
## 9682 2
## 9683 3
## 9684 3
## 9685 3
## 9686 3
## 9687 3
## 9688 3
## 9689 3
## 9690 3
## 9691 3
## 9692 3
## 9693 3
## 9694 3
## 9695 3
## 9696 3
## 9697 3
## 9698 3
## 9699 3
## 9700 3
## 9701 3
## 9702 3
## 9703 3
## 9704 3
## 9705 3
## 9706 3
## 9707 3
## 9708 3
## 9709 3
## 9710 3
## 9711 3
## 9712 3
## 9713 3
## 9714 3
## 9715 3
## 9716 3
## 9717 3
## 9718 3
## 9719 3
## 9720 3
## 9721 3
## 9722 3
## 9723 3
## 9724 3
## 9725 3
## 9726 3
## 9727 3
## 9728 3
## 9729 3
## 9730 3
## 9731 3
## 9732 3
## 9733 3
## 9734 3
## 9735 3
## 9736 3
## 9737 3
## 9738 3
## 9739 3
## 9740 3
## 9741 3
## 9742 3
## 9743 3
## 9744 3
## 9745 3
## 9746 3
## 9747 3
## 9748 3
## 9749 3
## 9750 3
## 9751 1
## 9752 3
## 9753 3
## 9754 3
## 9755 3
## 9756 3
## 9757 3
## 9758 0
## 9759 3
## 9760 3
## 9761 3
## 9762 3
## 9763 3
## 9764 3
## 9765 3
## 9766 3
## 9767 3
## 9768 3
## 9769 3
## 9770 3
## 9771 3
## 9772 3
## 9773 3
## 9774 3
## 9775 3
## 9776 3
## 9777 3
## 9778 3
## 9779 3
## 9780 3
## 9781 3
## 9782 3
## 9783 3
## 9784 3
## 9785 3
## 9786 3
## 9787 3
## 9788 2
## 9789 3
## 9790 1
## 9791 3
## 9792 3
## 9793 3
## 9794 1
## 9795 3
## 9796 3
## 9797 3
## 9798 3
## 9799 3
## 9800 3
## 9801 3
## 9802 3
## 9803 3
## 9804 3
## 9805 3
## 9806 1
## 9807 3
## 9808 3
## 9809 3
## 9810 3
## 9811 3
## 9812 3
## 9813 3
## 9814 3
## 9815 3
## 9816 3
## 9817 3
## 9818 3
## 9819 3
## 9820 3
## 9821 3
## 9822 3
## 9823 3
## 9824 3
## 9825 3
## 9826 3
## 9827 3
## 9828 3
## 9829 3
## 9830 3
## 9831 3
## 9832 3
## 9833 3
## 9834 3
## 9835 3
## 9836 3
## 9837 3
## 9838 3
## 9839 3
## 9840 2
## 9841 3
## 9842 2
## 9843 3
## 9844 3
## 9845 3
## 9846 3
## 9847 3
## 9848 3
## 9849 3
## 9850 3
## 9851 2
## 9852 3
## 9853 3
## 9854 3
## 9855 3
## 9856 1
## 9857 3
## 9858 3
## 9859 3
## 9860 3
## 9861 3
## 9862 3
## 9863 3
## 9864 3
## 9865 3
## 9866 3
## 9867 3
## 9868 3
## 9869 3
## 9870 3
## 9871 3
## 9872 3
## 9873 3
## 9874 3
## 9875 3
## 9876 3
## 9877 3
## 9878 2
## 9879 3
## 9880 3
## 9881 3
## 9882 3
## 9883 3
## 9884 3
## 9885 3
## 9886 3
## 9887 3
## 9888 3
## 9889 3
## 9890 3
## 9891 3
## 9892 3
## 9893 3
## 9894 3
## 9895 3
## 9896 3
## 9897 3
## 9898 3
## 9899 3
## 9900 3
## 9901 3
## 9902 3
## 9903 1
## 9904 3
## 9905 3
## 9906 3
## 9907 3
## 9908 3
## 9909 3
## 9910 3
## 9911 3
## 9912 3
## 9913 3
## 9914 3
## 9915 3
## 9916 3
## 9917 3
## 9918 3
## 9919 3
## 9920 3
## 9921 3
## 9922 3
## 9923 3
## 9924 3
## 9925 3
## 9926 3
## 9927 3
## 9928 2
## 9929 3
## 9930 3
## 9931 2
## 9932 3
## 9933 3
## 9934 3
## 9935 3
## 9936 3
## 9937 3
## 9938 3
## 9939 3
## 9940 3
## 9941 3
## 9942 3
## 9943 3
## 9944 3
## 9945 3
## 9946 3
## 9947 3
## 9948 3
## 9949 3
## 9950 3
## 9951 3
## 9952 3
## 9953 3
## 9954 3
## 9955 3
## 9956 3
## 9957 2
## 9958 3
## 9959 3
## 9960 3
## 9961 3
## 9962 3
## 9963 3
## 9964 3
## 9965 3
## 9966 3
## 9967 2
## 9968 3
## 9969 3
## 9970 3
## 9971 3
## 9972 3
## 9973 3
## 9974 3
## 9975 3
## 9976 3
## 9977 3
## 9978 3
## 9979 1
## 9980 3
## 9981 3
## 9982 3
## 9983 2
## 9984 3
## 9985 3
## 9986 3
## 9987 3
## 9988 3
## 9989 3
## 9990 3
## 9991 3
## 9992 3
## 9993 3
## 9994 3
## 9995 3
## 9996 3
## 9997 3
## 9998 3
## 9999 3
## 10000 3
## 10001 0
## 10002 3
## 10003 3
## 10004 3
## 10005 3
## 10006 3
## 10007 3
## 10008 3
## 10009 3
## 10010 3
## 10011 3
## 10012 3
## 10013 3
## 10014 3
## 10015 3
## 10016 3
## 10017 3
## 10018 3
## 10019 3
## 10020 3
## 10021 3
## 10022 3
## 10023 3
## 10024 2
## 10025 3
## 10026 2
## 10027 3
## 10028 3
## 10029 3
## 10030 3
## 10031 3
## 10032 3
## 10033 3
## 10034 3
## 10035 3
## 10036 3
## 10037 3
## 10038 3
## 10039 3
## 10040 3
## 10041 3
## 10042 3
## 10043 3
## 10044 3
## 10045 3
## 10046 3
## 10047 3
## 10048 3
## 10049 3
## 10050 3
## 10051 3
## 10052 3
## 10053 3
## 10054 3
## 10055 3
## 10056 3
## 10057 2
## 10058 2
## 10059 3
## 10060 3
## 10061 3
## 10062 3
## 10063 3
## 10064 3
## 10065 3
## 10066 3
## 10067 3
## 10068 3
## 10069 1
## 10070 3
## 10071 3
## 10072 3
## 10073 3
## 10074 3
## 10075 3
## 10076 3
## 10077 3
## 10078 3
## 10079 3
## 10080 3
## 10081 3
## 10082 3
## 10083 3
## 10084 3
## 10085 3
## 10086 3
## 10087 3
## 10088 3
## 10089 3
## 10090 3
## 10091 3
## 10092 3
## 10093 3
## 10094 3
## 10095 3
## 10096 3
## 10097 3
## 10098 3
## 10099 3
## 10100 3
## 10101 3
## 10102 3
## 10103 3
## 10104 3
## 10105 3
## 10106 3
## 10107 3
## 10108 3
## 10109 3
## 10110 3
## 10111 3
## 10112 3
## 10113 3
## 10114 3
## 10115 3
## 10116 3
## 10117 3
## 10118 3
## 10119 3
## 10120 3
## 10121 3
## 10122 3
## 10123 3
## 10124 3
## 10125 3
## 10126 3
## 10127 3
## 10128 3
## 10129 3
## 10130 3
## 10131 3
## 10132 3
## 10133 1
## 10134 3
## 10135 3
## 10136 3
## 10137 3
## 10138 3
## 10139 3
## 10140 3
## 10141 3
## 10142 3
## 10143 3
## 10144 3
## 10145 3
## 10146 3
## 10147 3
## 10148 3
## 10149 3
## 10150 3
## 10151 3
## 10152 3
## 10153 3
## 10154 3
## 10155 3
## 10156 3
## 10157 3
## 10158 3
## 10159 2
## 10160 1
## 10161 3
## 10162 3
## 10163 3
## 10164 3
## 10165 3
## 10166 3
## 10167 3
## 10168 3
## 10169 3
## 10170 3
## 10171 3
## 10172 3
## 10173 3
## 10174 3
## 10175 3
## 10176 3
## 10177 3
## 10178 3
## 10179 3
## 10180 3
## 10181 3
## 10182 3
## 10183 3
## 10184 3
## 10185 3
## 10186 3
## 10187 3
## 10188 3
## 10189 3
## 10190 3
## 10191 3
## 10192 3
## 10193 3
## 10194 3
## 10195 3
## 10196 3
## 10197 3
## 10198 3
## 10199 3
## 10200 3
## 10201 3
## 10202 3
## 10203 3
## 10204 3
## 10205 3
## 10206 3
## 10207 3
## 10208 3
## 10209 3
## 10210 3
## 10211 3
## 10212 3
## 10213 3
## 10214 3
## 10215 3
## 10216 3
## 10217 3
## 10218 3
## 10219 3
## 10220 1
## 10221 3
## 10222 3
## 10223 3
## 10224 3
## 10225 3
## 10226 3
## 10227 3
## 10228 3
## 10229 3
## 10230 3
## 10231 3
## 10232 3
## 10233 3
## 10234 3
## 10235 3
## 10236 3
## 10237 3
## 10238 3
## 10239 3
## 10240 3
## 10241 3
## 10242 3
## 10243 3
## 10244 3
## 10245 3
## 10246 3
## 10247 3
## 10248 3
## 10249 3
## 10250 3
## 10251 3
## 10252 1
## 10253 3
## 10254 3
## 10255 3
## 10256 3
## 10257 3
## 10258 3
## 10259 3
## 10260 3
## 10261 3
## 10262 0
## 10263 3
## 10264 3
## 10265 3
## 10266 3
## 10267 3
## 10268 3
## 10269 3
## 10270 2
## 10271 3
## 10272 3
## 10273 3
## 10274 3
## 10275 3
## 10276 3
## 10277 3
## 10278 3
## 10279 3
## 10280 3
## 10281 3
## 10282 3
## 10283 3
## 10284 3
## 10285 3
## 10286 3
## 10287 1
## 10288 3
## 10289 3
## 10290 3
## 10291 3
## 10292 3
## 10293 3
## 10294 3
## 10295 3
## 10296 3
## 10297 3
## 10298 3
## 10299 3
## 10300 3
## 10301 3
## 10302 3
## 10303 3
## 10304 3
## 10305 3
## 10306 3
## 10307 3
## 10308 3
## 10309 3
## 10310 3
## 10311 3
## 10312 3
## 10313 3
## 10314 3
## 10315 3
## 10316 3
## 10317 3
## 10318 3
## 10319 3
## 10320 3
## 10321 3
## 10322 3
## 10323 3
## 10324 3
## 10325 3
## 10326 3
## 10327 3
## 10328 3
## 10329 3
## 10330 3
## 10331 3
## 10332 3
## 10333 3
## 10334 2
## 10335 3
## 10336 3
## 10337 3
## 10338 3
## 10339 3
## 10340 3
## 10341 3
## 10342 3
## 10343 3
## 10344 3
## 10345 3
## 10346 3
## 10347 3
## 10348 3
## 10349 3
## 10350 3
## 10351 3
## 10352 3
## 10353 3
## 10354 3
## 10355 3
## 10356 3
## 10357 3
## 10358 3
## 10359 2
## 10360 3
## 10361 3
## 10362 3
## 10363 3
## 10364 3
## 10365 3
## 10366 3
## 10367 3
## 10368 3
## 10369 3
## 10370 3
## 10371 3
## 10372 3
## 10373 3
## 10374 3
## 10375 3
## 10376 3
## 10377 3
## 10378 2
## 10379 3
## 10380 3
## 10381 3
## 10382 3
## 10383 3
## 10384 1
## 10385 3
## 10386 3
## 10387 3
## 10388 3
## 10389 1
## 10390 3
## 10391 3
## 10392 3
## 10393 3
## 10394 3
## 10395 3
## 10396 3
## 10397 3
## 10398 3
## 10399 3
## 10400 3
## 10401 3
## 10402 2
## 10403 3
## 10404 3
## 10405 3
## 10406 3
## 10407 3
## 10408 3
## 10409 3
## 10410 3
## 10411 3
## 10412 3
## 10413 3
## 10414 3
## 10415 3
## 10416 3
## 10417 3
## 10418 3
## 10419 3
## 10420 3
## 10421 3
## 10422 3
## 10423 3
## 10424 3
## 10425 3
## 10426 3
## 10427 3
## 10428 3
## 10429 3
## 10430 3
## 10431 3
## 10432 3
## 10433 3
## 10434 3
## 10435 3
## 10436 3
## 10437 3
## 10438 3
## 10439 3
## 10440 3
## 10441 3
## 10442 3
## 10443 3
## 10444 3
## 10445 3
## 10446 3
## 10447 3
## 10448 3
## 10449 3
## 10450 3
## 10451 3
## 10452 3
## 10453 3
## 10454 3
## 10455 3
## 10456 3
## 10457 3
## 10458 3
## 10459 3
## 10460 3
## 10461 3
## 10462 3
## 10463 3
## 10464 3
## 10465 3
## 10466 3
## 10467 3
## 10468 3
## 10469 3
## 10470 3
## 10471 3
## 10472 3
## 10473 3
## 10474 3
## 10475 3
## 10476 3
## 10477 2
## 10478 3
## 10479 3
## 10480 3
## 10481 3
## 10482 3
## 10483 3
## 10484 3
## 10485 3
## 10486 3
## 10487 3
## 10488 3
## 10489 3
## 10490 3
## 10491 3
## 10492 3
## 10493 3
## 10494 3
## 10495 3
## 10496 3
## 10497 3
## 10498 3
## 10499 3
## 10500 3
## 10501 3
## 10502 3
## 10503 3
## 10504 3
## 10505 3
## 10506 3
## 10507 3
## 10508 3
## 10509 3
## 10510 3
## 10511 3
## 10512 3
## 10513 3
## 10514 3
## 10515 3
## 10516 3
## 10517 3
## 10518 3
## 10519 3
## 10520 3
## 10521 3
## 10522 3
## 10523 3
## 10524 3
## 10525 3
## 10526 3
## 10527 3
## 10528 3
## 10529 3
## 10530 3
## 10531 3
## 10532 3
## 10533 3
## 10534 3
## 10535 2
## 10536 3
## 10537 3
## 10538 3
## 10539 3
## 10540 3
## 10541 3
## 10542 3
## 10543 3
## 10544 3
## 10545 3
## 10546 3
## 10547 3
## 10548 3
## 10549 3
## 10550 3
## 10551 3
## 10552 3
## 10553 3
## 10554 3
## 10555 2
## 10556 3
## 10557 3
## 10558 3
## 10559 3
## 10560 3
## 10561 3
## 10562 3
## 10563 3
## 10564 3
## 10565 3
## 10566 3
## 10567 3
## 10568 3
## 10569 3
## 10570 3
## 10571 3
## 10572 3
## 10573 3
## 10574 3
## 10575 3
## 10576 3
## 10577 3
## 10578 3
## 10579 3
## 10580 3
## 10581 3
## 10582 3
## 10583 3
## 10584 3
## 10585 3
## 10586 3
## 10587 3
## 10588 3
## 10589 3
## 10590 3
## 10591 3
## 10592 3
## 10593 3
## 10594 3
## 10595 3
## 10596 3
## 10597 3
## 10598 3
## 10599 3
## 10600 3
## 10601 3
## 10602 3
## 10603 3
## 10604 3
## 10605 3
## 10606 3
## 10607 3
## 10608 3
## 10609 1
## 10610 3
## 10611 3
## 10612 2
## 10613 3
## 10614 3
## 10615 3
## 10616 3
## 10617 3
## 10618 3
## 10619 3
## 10620 3
## 10621 3
## 10622 3
## 10623 3
## 10624 2
## 10625 3
## 10626 3
## 10627 3
## 10628 3
## 10629 3
## 10630 3
## 10631 3
## 10632 3
## 10633 3
## 10634 3
## 10635 3
## 10636 3
## 10637 3
## 10638 3
## 10639 3
## 10640 3
## 10641 1
## 10642 3
## 10643 3
## 10644 3
## 10645 3
## 10646 3
## 10647 3
## 10648 3
## 10649 3
## 10650 3
## 10651 3
## 10652 3
## 10653 3
## 10654 3
## 10655 3
## 10656 3
## 10657 3
## 10658 3
## 10659 3
## 10660 3
## 10661 3
## 10662 3
## 10663 3
## 10664 3
## 10665 3
## 10666 3
## 10667 3
## 10668 3
## 10669 3
## 10670 3
## 10671 3
## 10672 3
## 10673 3
## 10674 3
## 10675 3
## 10676 3
## 10677 3
## 10678 3
## 10679 3
## 10680 3
## 10681 3
## 10682 3
## 10683 3
## 10684 3
## 10685 3
## 10686 3
## 10687 3
## 10688 3
## 10689 3
## 10690 3
## 10691 3
## 10692 3
## 10693 3
## 10694 3
## 10695 3
## 10696 3
## 10697 3
## 10698 3
## 10699 3
## 10700 3
## 10701 3
## 10702 3
## 10703 1
## 10704 3
## 10705 3
## 10706 3
## 10707 3
## 10708 3
## 10709 3
## 10710 3
## 10711 3
## 10712 3
## 10713 3
## 10714 3
## 10715 3
## 10716 2
## 10717 3
## 10718 3
## 10719 3
## 10720 3
## 10721 3
## 10722 3
## 10723 3
## 10724 3
## 10725 3
## 10726 3
## 10727 1
## 10728 3
## 10729 3
## 10730 3
## 10731 3
## 10732 3
## 10733 3
## 10734 3
## 10735 2
## 10736 3
## 10737 3
## 10738 3
## 10739 3
## 10740 3
## 10741 3
## 10742 3
## 10743 3
## 10744 3
## 10745 3
## 10746 3
## 10747 3
## 10748 3
## 10749 3
## 10750 3
## 10751 3
## 10752 3
## 10753 3
## 10754 3
## 10755 2
## 10756 3
## 10757 3
## 10758 3
## 10759 3
## 10760 3
## 10761 3
## 10762 3
## 10763 3
## 10764 3
## 10765 0
## 10766 2
## 10767 3
## 10768 3
## 10769 3
## 10770 3
## 10771 3
## 10772 3
## 10773 3
## 10774 3
## 10775 3
## 10776 2
## 10777 3
## 10778 3
## 10779 3
## 10780 3
## 10781 3
## 10782 3
## 10783 3
## 10784 3
## 10785 3
## 10786 2
## 10787 3
## 10788 3
## 10789 3
## 10790 3
## 10791 3
## 10792 3
## 10793 3
## 10794 2
## 10795 3
## 10796 3
## 10797 3
## 10798 3
## 10799 3
## 10800 3
## 10801 3
## 10802 3
## 10803 1
## 10804 3
## 10805 3
## 10806 3
## 10807 3
## 10808 3
## 10809 3
## 10810 3
## 10811 3
## 10812 3
## 10813 3
## 10814 3
## 10815 3
## 10816 3
## 10817 1
## 10818 3
## 10819 3
## 10820 0
## 10821 3
## 10822 3
## 10823 3
## 10824 2
## 10825 3
## 10826 3
## 10827 3
## 10828 3
## 10829 3
## 10830 3
## 10831 3
## 10832 3
## 10833 3
## 10834 3
## 10835 3
## 10836 3
## 10837 3
## 10838 3
## 10839 3
## 10840 3
## 10841 3
## 10842 3
## 10843 3
## 10844 3
## 10845 3
## 10846 3
## 10847 3
## 10848 3
## 10849 3
## 10850 3
## 10851 3
## 10852 3
## 10853 3
## 10854 3
## 10855 3
## 10856 3
## 10857 3
## 10858 3
## 10859 3
## 10860 3
## 10861 3
## 10862 3
## 10863 3
## 10864 3
## 10865 3
## 10866 3
## 10867 3
## 10868 3
## 10869 3
## 10870 3
## 10871 2
## 10872 3
## 10873 3
## 10874 3
## 10875 3
## 10876 3
## 10877 3
## 10878 3
## 10879 3
## 10880 3
## 10881 3
## 10882 3
## 10883 3
## 10884 3
## 10885 3
## 10886 3
## 10887 3
## 10888 3
## 10889 3
## 10890 3
## 10891 3
## 10892 3
## 10893 3
## 10894 3
## 10895 3
## 10896 3
## 10897 3
## 10898 3
## 10899 3
## 10900 3
## 10901 3
## 10902 3
## 10903 3
## 10904 3
## 10905 3
## 10906 3
## 10907 3
## 10908 3
## 10909 3
## 10910 3
## 10911 3
## 10912 3
## 10913 3
## 10914 3
## 10915 3
## 10916 3
## 10917 3
## 10918 3
## 10919 3
## 10920 3
## 10921 3
## 10922 3
## 10923 3
## 10924 3
## 10925 3
## 10926 3
## 10927 3
## 10928 3
## 10929 3
## 10930 3
## 10931 3
## 10932 3
## 10933 3
## 10934 3
## 10935 3
## 10936 3
## 10937 3
## 10938 3
## 10939 3
## 10940 3
## 10941 1
## 10942 1
## 10943 3
## 10944 3
## 10945 3
## 10946 3
## 10947 3
## 10948 3
## 10949 3
## 10950 3
## 10951 3
## 10952 3
## 10953 3
## 10954 3
## 10955 3
## 10956 3
## 10957 3
## 10958 3
## 10959 2
## 10960 3
## 10961 3
## 10962 3
## 10963 3
## 10964 3
## 10965 3
## 10966 3
## 10967 3
## 10968 3
## 10969 3
## 10970 3
## 10971 3
## 10972 3
## 10973 3
## 10974 3
## 10975 2
## 10976 3
## 10977 3
## 10978 3
## 10979 3
## 10980 3
## 10981 3
## 10982 3
## 10983 3
## 10984 3
## 10985 3
## 10986 3
## 10987 3
## 10988 3
## 10989 3
## 10990 3
## 10991 3
## 10992 3
## 10993 3
## 10994 1
## 10995 3
## 10996 3
## 10997 3
## 10998 3
## 10999 3
## 11000 3
## 11001 3
## 11002 3
## 11003 3
## 11004 3
## 11005 3
## 11006 3
## 11007 3
## 11008 3
## 11009 3
## 11010 3
## 11011 1
## 11012 3
## 11013 3
## 11014 3
## 11015 3
## 11016 3
## 11017 3
## 11018 3
## 11019 3
## 11020 3
## 11021 3
## 11022 3
## 11023 3
## 11024 1
## 11025 3
## 11026 3
## 11027 3
## 11028 3
## 11029 3
## 11030 3
## 11031 3
## 11032 3
## 11033 2
## 11034 3
## 11035 3
## 11036 3
## 11037 3
## 11038 3
## 11039 0
## 11040 3
## 11041 3
## 11042 3
## 11043 3
## 11044 3
## 11045 3
## 11046 3
## 11047 3
## 11048 3
## 11049 3
## 11050 3
## 11051 3
## 11052 3
## 11053 3
## 11054 3
## 11055 3
## 11056 3
## 11057 3
## 11058 3
## 11059 3
## 11060 3
## 11061 3
## 11062 2
## 11063 3
## 11064 3
## 11065 3
## 11066 3
## 11067 3
## 11068 3
## 11069 3
## 11070 3
## 11071 2
## 11072 3
## 11073 3
## 11074 3
## 11075 3
## 11076 3
## 11077 2
## 11078 3
## 11079 3
## 11080 3
## 11081 3
## 11082 3
## 11083 3
## 11084 2
## 11085 3
## 11086 3
## 11087 3
## 11088 3
## 11089 3
## 11090 3
## 11091 3
## 11092 3
## 11093 3
## 11094 3
## 11095 3
## 11096 3
## 11097 3
## 11098 3
## 11099 3
## 11100 3
## 11101 2
## 11102 3
## 11103 3
## 11104 3
## 11105 3
## 11106 3
## 11107 3
## 11108 3
## 11109 3
## 11110 3
## 11111 3
## 11112 3
## 11113 3
## 11114 3
## 11115 3
## 11116 3
## 11117 3
## 11118 2
## 11119 3
## 11120 3
## 11121 3
## 11122 3
## 11123 3
## 11124 3
## 11125 3
## 11126 3
## 11127 3
## 11128 3
## 11129 3
## 11130 3
## 11131 3
## 11132 3
## 11133 3
## 11134 3
## 11135 3
## 11136 3
## 11137 3
## 11138 1
## 11139 3
## 11140 3
## 11141 3
## 11142 3
## 11143 3
## 11144 3
## 11145 3
## 11146 3
## 11147 3
## 11148 3
## 11149 2
## 11150 3
## 11151 3
## 11152 3
## 11153 3
## 11154 3
## 11155 3
## 11156 3
## 11157 3
## 11158 3
## 11159 3
## 11160 3
## 11161 3
## 11162 3
## 11163 3
## 11164 1
## 11165 3
## 11166 3
## 11167 3
## 11168 3
## 11169 3
## 11170 3
## 11171 3
## 11172 1
## 11173 3
## 11174 3
## 11175 3
## 11176 3
## 11177 3
## 11178 3
## 11179 3
## 11180 3
## 11181 3
## 11182 3
## 11183 3
## 11184 3
## 11185 3
## 11186 2
## 11187 3
## 11188 3
## 11189 3
## 11190 3
## 11191 3
## 11192 1
## 11193 3
## 11194 0
## 11195 3
## 11196 3
## 11197 3
## 11198 3
## 11199 3
## 11200 3
## 11201 3
## 11202 3
## 11203 3
## 11204 3
## 11205 3
## 11206 3
## 11207 2
## 11208 3
## 11209 3
## 11210 3
## 11211 3
## 11212 3
## 11213 3
## 11214 3
## 11215 3
## 11216 3
## 11217 3
## 11218 3
## 11219 3
## 11220 3
## 11221 3
## 11222 3
## 11223 3
## 11224 3
## 11225 3
## 11226 3
## 11227 3
## 11228 3
## 11229 3
## 11230 2
## 11231 3
## 11232 2
## 11233 3
## 11234 3
## 11235 3
## 11236 3
## 11237 3
## 11238 3
## 11239 3
## 11240 3
## 11241 3
## 11242 3
## 11243 3
## 11244 3
## 11245 3
## 11246 3
## 11247 3
## 11248 3
## 11249 3
## 11250 2
## 11251 3
## 11252 3
## 11253 3
## 11254 3
## 11255 3
## 11256 3
## 11257 3
## 11258 2
## 11259 3
## 11260 3
## 11261 3
## 11262 1
## 11263 3
## 11264 3
## 11265 3
## 11266 3
## 11267 3
## 11268 3
## 11269 3
## 11270 3
## 11271 3
## 11272 1
## 11273 3
## 11274 3
## 11275 3
## 11276 3
## 11277 3
## 11278 3
## 11279 3
## 11280 3
## 11281 3
## 11282 3
## 11283 3
## 11284 3
## 11285 2
## 11286 3
## 11287 3
## 11288 2
## 11289 3
## 11290 3
## 11291 3
## 11292 3
## 11293 3
## 11294 3
## 11295 3
## 11296 3
## 11297 3
## 11298 3
## 11299 3
## 11300 3
## 11301 3
## 11302 3
## 11303 3
## 11304 3
## 11305 3
## 11306 1
## 11307 3
## 11308 3
## 11309 3
## 11310 3
## 11311 0
## 11312 3
## 11313 3
## 11314 3
## 11315 3
## 11316 3
## 11317 3
## 11318 3
## 11319 2
## 11320 2
## 11321 3
## 11322 3
## 11323 3
## 11324 3
## 11325 3
## 11326 3
## 11327 3
## 11328 3
## 11329 3
## 11330 3
## 11331 3
## 11332 3
## 11333 3
## 11334 3
## 11335 3
## 11336 3
## 11337 3
## 11338 3
## 11339 3
## 11340 3
## 11341 2
## 11342 3
## 11343 1
## 11344 3
## 11345 3
## 11346 3
## 11347 3
## 11348 3
## 11349 3
## 11350 3
## 11351 3
## 11352 3
## 11353 3
## 11354 3
## 11355 3
## 11356 3
## 11357 3
## 11358 3
## 11359 3
## 11360 3
## 11361 2
## 11362 3
## 11363 1
## 11364 3
## 11365 3
## 11366 3
## 11367 2
## 11368 3
## 11369 3
## 11370 3
## 11371 3
## 11372 3
## 11373 3
## 11374 3
## 11375 3
## 11376 3
## 11377 1
## 11378 3
## 11379 3
## 11380 3
## 11381 2
## 11382 3
## 11383 3
## 11384 3
## 11385 3
## 11386 0
## 11387 3
## 11388 3
## 11389 3
## 11390 3
## 11391 3
## 11392 3
## 11393 3
## 11394 3
## 11395 3
## 11396 3
## 11397 3
## 11398 3
## 11399 3
## 11400 3
## 11401 3
## 11402 3
## 11403 3
## 11404 3
## 11405 3
## 11406 3
## 11407 3
## 11408 3
## 11409 3
## 11410 3
## 11411 3
## 11412 3
## 11413 1
## 11414 3
## 11415 3
## 11416 3
## 11417 3
## 11418 3
## 11419 3
## 11420 3
## 11421 3
## 11422 3
## 11423 3
## 11424 3
## 11425 3
## 11426 3
## 11427 3
## 11428 3
## 11429 3
## 11430 3
## 11431 3
## 11432 3
## 11433 3
## 11434 3
## 11435 3
## 11436 3
## 11437 3
## 11438 3
## 11439 3
## 11440 3
## 11441 3
## 11442 3
## 11443 3
## 11444 3
## 11445 3
## 11446 3
## 11447 3
## 11448 3
## 11449 3
## 11450 3
## 11451 3
## 11452 3
## 11453 3
## 11454 3
## 11455 3
## 11456 3
## 11457 3
## 11458 3
## 11459 3
## 11460 3
## 11461 3
## 11462 3
## 11463 3
## 11464 3
## 11465 3
## 11466 3
## 11467 3
## 11468 3
## 11469 3
## 11470 3
## 11471 3
## 11472 3
## 11473 3
## 11474 3
## 11475 3
## 11476 3
## 11477 3
## 11478 1
## 11479 3
## 11480 3
## 11481 3
## 11482 3
## 11483 3
## 11484 3
## 11485 3
## 11486 3
## 11487 3
## 11488 3
## 11489 3
## 11490 3
## 11491 3
## 11492 3
## 11493 2
## 11494 3
## 11495 3
## 11496 3
## 11497 3
## 11498 3
## 11499 3
## 11500 3
## 11501 3
## 11502 2
## 11503 3
## 11504 3
## 11505 3
## 11506 3
## 11507 3
## 11508 3
## 11509 3
## 11510 2
## 11511 3
## 11512 3
## 11513 3
## 11514 3
## 11515 3
## 11516 3
## 11517 3
## 11518 3
## 11519 2
## 11520 3
## 11521 3
## 11522 3
## 11523 3
## 11524 3
## 11525 3
## 11526 3
## 11527 3
## 11528 3
## 11529 3
## 11530 3
## 11531 3
## 11532 3
## 11533 3
## 11534 3
## 11535 3
## 11536 3
## 11537 3
## 11538 3
## 11539 3
## 11540 3
## 11541 3
## 11542 3
## 11543 3
## 11544 3
## 11545 3
## 11546 2
## 11547 3
## 11548 3
## 11549 3
## 11550 3
## 11551 3
## 11552 3
## 11553 3
## 11554 3
## 11555 3
## 11556 3
## 11557 3
## 11558 3
## 11559 3
## 11560 3
## 11561 3
## 11562 3
## 11563 3
## 11564 3
## 11565 3
## 11566 1
## 11567 3
## 11568 2
## 11569 3
## 11570 3
## 11571 3
## 11572 3
## 11573 3
## 11574 3
## 11575 3
## 11576 3
## 11577 3
## 11578 3
## 11579 3
## 11580 3
## 11581 1
## 11582 3
## 11583 3
## 11584 3
## 11585 3
## 11586 3
## 11587 3
## 11588 3
## 11589 3
## 11590 3
## 11591 3
## 11592 3
## 11593 2
## 11594 3
## 11595 3
## 11596 3
## 11597 3
## 11598 3
## 11599 3
## 11600 3
## 11601 3
## 11602 0
## 11603 3
## 11604 3
## 11605 3
## 11606 3
## 11607 3
## 11608 3
## 11609 3
## 11610 3
## 11611 3
## 11612 3
## 11613 3
## 11614 3
## 11615 3
## 11616 3
## 11617 3
## 11618 3
## 11619 3
## 11620 3
## 11621 3
## 11622 3
## 11623 3
## 11624 3
## 11625 3
## 11626 3
## 11627 2
## 11628 3
## 11629 3
## 11630 3
## 11631 3
## 11632 3
## 11633 3
## 11634 3
## 11635 3
## 11636 3
## 11637 3
## 11638 3
## 11639 3
## 11640 3
## 11641 3
## 11642 3
## 11643 3
## 11644 3
## 11645 3
## 11646 3
## 11647 3
## 11648 3
## 11649 3
## 11650 3
## 11651 3
## 11652 3
## 11653 3
## 11654 3
## 11655 3
## 11656 3
## 11657 3
## 11658 0
## 11659 3
## 11660 3
## 11661 3
## 11662 2
## 11663 3
## 11664 3
## 11665 3
## 11666 3
## 11667 3
## 11668 3
## 11669 3
## 11670 3
## 11671 3
## 11672 3
## 11673 3
## 11674 3
## 11675 3
## 11676 3
## 11677 3
## 11678 3
## 11679 3
## 11680 3
## 11681 3
## 11682 3
## 11683 3
## 11684 3
## 11685 3
## 11686 3
## 11687 3
## 11688 3
## 11689 2
## 11690 3
## 11691 3
## 11692 3
## 11693 3
## 11694 3
## 11695 3
## 11696 3
## 11697 3
## 11698 3
## 11699 3
## 11700 3
## 11701 3
## 11702 3
## 11703 3
## 11704 3
## 11705 3
## 11706 3
## 11707 3
## 11708 3
## 11709 3
## 11710 3
## 11711 3
## 11712 3
## 11713 3
## 11714 3
## 11715 3
## 11716 3
## 11717 3
## 11718 3
## 11719 3
## 11720 3
## 11721 3
## 11722 3
## 11723 3
## 11724 3
## 11725 3
## 11726 3
## 11727 3
## 11728 3
## 11729 3
## 11730 3
## 11731 3
## 11732 3
## 11733 3
## 11734 3
## 11735 3
## 11736 3
## 11737 3
## 11738 3
## 11739 3
## 11740 3
## 11741 2
## 11742 3
## 11743 2
## 11744 3
## 11745 3
## 11746 3
## 11747 3
## 11748 3
## 11749 3
## 11750 3
## 11751 3
## 11752 3
## 11753 3
## 11754 3
## 11755 3
## 11756 3
## 11757 3
## 11758 3
## 11759 3
## 11760 3
## 11761 3
## 11762 3
## 11763 3
## 11764 3
## 11765 3
## 11766 3
## 11767 3
## 11768 2
## 11769 3
## 11770 3
## 11771 3
## 11772 3
## 11773 3
## 11774 3
## 11775 3
## 11776 3
## 11777 1
## 11778 3
## 11779 3
## 11780 3
## 11781 3
## 11782 3
## 11783 3
## 11784 3
## 11785 3
## 11786 3
## 11787 3
## 11788 3
## 11789 3
## 11790 3
## 11791 3
## 11792 1
## 11793 3
## 11794 3
## 11795 3
## 11796 3
## 11797 3
## 11798 3
## 11799 3
## 11800 3
## 11801 3
## 11802 3
## 11803 3
## 11804 3
## 11805 2
## 11806 3
## 11807 3
## 11808 3
## 11809 3
## 11810 3
## 11811 3
## 11812 3
## 11813 3
## 11814 3
## 11815 3
## 11816 3
## 11817 3
## 11818 3
## 11819 1
## 11820 3
## 11821 3
## 11822 3
## 11823 3
## 11824 3
## 11825 3
## 11826 3
## 11827 3
## 11828 3
## 11829 3
## 11830 3
## 11831 3
## 11832 3
## 11833 3
## 11834 3
## 11835 3
## 11836 3
## 11837 3
## 11838 3
## 11839 3
## 11840 3
## 11841 3
## 11842 3
## 11843 3
## 11844 2
## 11845 3
## 11846 3
## 11847 3
## 11848 3
## 11849 3
## 11850 3
## 11851 3
## 11852 2
## 11853 3
## 11854 3
## 11855 3
## 11856 3
## 11857 3
## 11858 3
## 11859 3
## 11860 3
## 11861 3
## 11862 3
## 11863 3
## 11864 3
## 11865 3
## 11866 3
## 11867 2
## 11868 3
## 11869 3
## 11870 3
## 11871 3
## 11872 3
## 11873 3
## 11874 3
## 11875 3
## 11876 3
## 11877 3
## 11878 3
## 11879 3
## 11880 3
## 11881 3
## 11882 3
## 11883 3
## 11884 3
## 11885 3
## 11886 3
## 11887 3
## 11888 3
## 11889 3
## 11890 3
## 11891 3
## 11892 3
## 11893 2
## 11894 3
## 11895 3
## 11896 2
## 11897 3
## 11898 3
## 11899 3
## 11900 3
## 11901 3
## 11902 3
## 11903 3
## 11904 2
## 11905 3
## 11906 3
## 11907 3
## 11908 3
## 11909 3
## 11910 3
## 11911 3
## 11912 3
## 11913 3
## 11914 3
## 11915 3
## 11916 3
## 11917 3
## 11918 3
## 11919 3
## 11920 3
## 11921 3
## 11922 3
## 11923 3
## 11924 1
## 11925 3
## 11926 3
## 11927 3
## 11928 3
## 11929 2
## 11930 3
## 11931 3
## 11932 3
## 11933 3
## 11934 3
## 11935 3
## 11936 3
## 11937 3
## 11938 3
## 11939 3
## 11940 1
## 11941 3
## 11942 3
## 11943 3
## 11944 3
## 11945 3
## 11946 3
## 11947 3
## 11948 3
## 11949 3
## 11950 3
## 11951 3
## 11952 3
## 11953 3
## 11954 3
## 11955 3
## 11956 3
## 11957 3
## 11958 3
## 11959 3
## 11960 3
## 11961 3
## 11962 2
## 11963 3
## 11964 3
## 11965 3
## 11966 3
## 11967 3
## 11968 3
## 11969 3
## 11970 3
## 11971 3
## 11972 3
## 11973 3
## 11974 3
## 11975 3
## 11976 3
## 11977 2
## 11978 3
## 11979 1
## 11980 3
## 11981 3
## 11982 3
## 11983 3
## 11984 3
## 11985 3
## 11986 3
## 11987 3
## 11988 3
## 11989 3
## 11990 3
## 11991 3
## 11992 3
## 11993 3
## 11994 3
## 11995 3
## 11996 3
## 11997 3
## 11998 3
## 11999 3
## 12000 3
## 12001 3
## 12002 3
## 12003 3
## 12004 3
## 12005 3
## 12006 3
## 12007 3
## 12008 3
## 12009 3
## 12010 3
## 12011 3
## 12012 3
## 12013 3
## 12014 3
## 12015 3
## 12016 3
## 12017 3
## 12018 3
## 12019 3
## 12020 3
## 12021 3
## 12022 3
## 12023 3
## 12024 3
## 12025 3
## 12026 3
## 12027 3
## 12028 3
## 12029 3
## 12030 3
## 12031 3
## 12032 3
## 12033 3
## 12034 3
## 12035 3
## 12036 3
## 12037 3
## 12038 3
## 12039 3
## 12040 3
## 12041 1
## 12042 3
## 12043 3
## 12044 3
## 12045 3
## 12046 3
## 12047 3
## 12048 3
## 12049 3
## 12050 3
## 12051 3
## 12052 3
## 12053 3
## 12054 3
## 12055 2
## 12056 3
## 12057 3
## 12058 3
## 12059 3
## 12060 3
## 12061 3
## 12062 3
## 12063 3
## 12064 3
## 12065 3
## 12066 3
## 12067 3
## 12068 3
## 12069 3
## 12070 3
## 12071 0
## 12072 3
## 12073 3
## 12074 3
## 12075 3
## 12076 3
## 12077 3
## 12078 3
## 12079 3
## 12080 3
## 12081 3
## 12082 3
## 12083 3
## 12084 3
## 12085 3
## 12086 3
## 12087 3
## 12088 3
## 12089 3
## 12090 3
## 12091 3
## 12092 3
## 12093 3
## 12094 3
## 12095 3
## 12096 3
## 12097 3
## 12098 3
## 12099 3
## 12100 3
## 12101 3
## 12102 3
## 12103 3
## 12104 1
## 12105 3
## 12106 3
## 12107 3
## 12108 3
## 12109 3
## 12110 3
## 12111 1
## 12112 3
## 12113 3
## 12114 3
## 12115 2
## 12116 3
## 12117 3
## 12118 3
## 12119 3
## 12120 3
## 12121 3
## 12122 3
## 12123 3
## 12124 3
## 12125 3
## 12126 3
## 12127 3
## 12128 3
## 12129 3
## 12130 3
## 12131 3
## 12132 3
## 12133 3
## 12134 3
## 12135 3
## 12136 3
## 12137 3
## 12138 3
## 12139 3
## 12140 3
## 12141 3
## 12142 3
## 12143 3
## 12144 3
## 12145 3
## 12146 3
## 12147 3
## 12148 3
## 12149 3
## 12150 2
## 12151 3
## 12152 3
## 12153 3
## 12154 3
## 12155 3
## 12156 3
## 12157 3
## 12158 1
## 12159 3
## 12160 3
## 12161 3
## 12162 3
## 12163 3
## 12164 3
## 12165 3
## 12166 3
## 12167 3
## 12168 3
## 12169 2
## 12170 3
## 12171 3
## 12172 3
## 12173 3
## 12174 3
## 12175 3
## 12176 3
## 12177 3
## 12178 3
## 12179 3
## 12180 3
## 12181 3
## 12182 3
## 12183 3
## 12184 3
## 12185 3
## 12186 3
## 12187 3
## 12188 3
## 12189 3
## 12190 3
## 12191 3
## 12192 3
## 12193 3
## 12194 2
## 12195 3
## 12196 3
## 12197 3
## 12198 3
## 12199 3
## 12200 3
## 12201 3
## 12202 3
## 12203 3
## 12204 3
## 12205 3
## 12206 3
## 12207 2
## 12208 3
## 12209 3
## 12210 3
## 12211 3
## 12212 3
## 12213 3
## 12214 2
## 12215 3
## 12216 3
## 12217 3
## 12218 3
## 12219 3
## 12220 3
## 12221 3
## 12222 2
## 12223 3
## 12224 3
## 12225 1
## 12226 3
## 12227 3
## 12228 3
## 12229 3
## 12230 3
## 12231 3
## 12232 3
## 12233 3
## 12234 3
## 12235 3
## 12236 3
## 12237 3
## 12238 3
## 12239 3
## 12240 3
## 12241 3
## 12242 3
## 12243 3
## 12244 3
## 12245 3
## 12246 1
## 12247 3
## 12248 3
## 12249 3
## 12250 3
## 12251 3
## 12252 3
## 12253 3
## 12254 2
## 12255 3
## 12256 1
## 12257 3
## 12258 3
## 12259 3
## 12260 3
## 12261 3
## 12262 3
## 12263 3
## 12264 3
## 12265 3
## 12266 3
## 12267 3
## 12268 3
## 12269 3
## 12270 3
## 12271 3
## 12272 3
## 12273 3
## 12274 3
## 12275 3
## 12276 3
## 12277 3
## 12278 3
## 12279 3
## 12280 3
## 12281 3
## 12282 3
## 12283 3
## 12284 3
## 12285 3
## 12286 1
## 12287 3
## 12288 3
## 12289 3
## 12290 3
## 12291 3
## 12292 2
## 12293 3
## 12294 3
## 12295 3
## 12296 3
## 12297 3
## 12298 3
## 12299 3
## 12300 1
## 12301 3
## 12302 3
## 12303 3
## 12304 3
## 12305 3
## 12306 3
## 12307 3
## 12308 3
## 12309 3
## 12310 3
## 12311 1
## 12312 3
## 12313 3
## 12314 3
## 12315 3
## 12316 3
## 12317 3
## 12318 3
## 12319 3
## 12320 3
## 12321 3
## 12322 3
## 12323 3
## 12324 3
## 12325 3
## 12326 3
## 12327 3
## 12328 2
## 12329 3
## 12330 3
## 12331 3
## 12332 3
## 12333 3
## 12334 3
## 12335 3
## 12336 3
## 12337 3
## 12338 3
## 12339 3
## 12340 3
## 12341 2
## 12342 3
## 12343 3
## 12344 3
## 12345 3
## 12346 3
## 12347 3
## 12348 3
## 12349 3
## 12350 3
## 12351 3
## 12352 3
## 12353 3
## 12354 3
## 12355 3
## 12356 3
## 12357 3
## 12358 3
## 12359 3
## 12360 3
## 12361 3
## 12362 3
## 12363 3
## 12364 3
## 12365 3
## 12366 3
## 12367 2
## 12368 3
## 12369 3
## 12370 3
## 12371 3
## 12372 3
## 12373 3
## 12374 3
## 12375 3
## 12376 2
## 12377 3
## 12378 3
## 12379 3
## 12380 3
## 12381 3
## 12382 3
## 12383 3
## 12384 2
## 12385 3
## 12386 2
## 12387 3
## 12388 3
## 12389 3
## 12390 3
## 12391 3
## 12392 3
## 12393 3
## 12394 3
## 12395 3
## 12396 3
## 12397 3
## 12398 3
## 12399 3
## 12400 3
## 12401 3
## 12402 3
## 12403 3
## 12404 2
## 12405 3
## 12406 3
## 12407 3
## 12408 3
## 12409 3
## 12410 3
## 12411 3
## 12412 3
## 12413 3
## 12414 3
## 12415 3
## 12416 3
## 12417 3
## 12418 3
## 12419 3
## 12420 3
## 12421 3
## 12422 3
## 12423 3
## 12424 3
## 12425 3
## 12426 3
## 12427 3
## 12428 3
## 12429 3
## 12430 3
## 12431 1
## 12432 3
## 12433 3
## 12434 3
## 12435 3
## 12436 3
## 12437 3
## 12438 3
## 12439 3
## 12440 3
## 12441 2
## 12442 3
## 12443 3
## 12444 3
## 12445 3
## 12446 3
## 12447 3
## 12448 3
## 12449 3
## 12450 3
## 12451 3
## 12452 1
## 12453 3
## 12454 3
## 12455 0
## 12456 3
## 12457 3
## 12458 3
## 12459 3
## 12460 3
## 12461 3
## 12462 3
## 12463 3
## 12464 3
## 12465 3
## 12466 3
## 12467 3
## 12468 3
## 12469 3
## 12470 3
## 12471 3
## 12472 3
## 12473 3
## 12474 3
## 12475 3
## 12476 3
## 12477 3
## 12478 3
## 12479 3
## 12480 3
## 12481 3
## 12482 3
## 12483 3
## 12484 3
## 12485 3
## 12486 3
## 12487 3
## 12488 3
## 12489 3
## 12490 3
## 12491 3
## 12492 3
## 12493 2
## 12494 3
## 12495 3
## 12496 3
## 12497 3
## 12498 3
## 12499 3
## 12500 3
## 12501 3
## 12502 3
## 12503 3
## 12504 3
## 12505 3
## 12506 3
## 12507 3
## 12508 3
## 12509 3
## 12510 3
## 12511 3
## 12512 3
## 12513 3
## 12514 3
## 12515 3
## 12516 3
## 12517 3
## 12518 3
## 12519 3
## 12520 3
## 12521 3
## 12522 3
## 12523 3
## 12524 1
## 12525 3
## 12526 3
## 12527 3
## 12528 3
## 12529 3
## 12530 3
## 12531 3
## 12532 3
## 12533 3
## 12534 3
## 12535 3
## 12536 3
## 12537 3
## 12538 3
## 12539 3
## 12540 3
## 12541 3
## 12542 3
## 12543 3
## 12544 3
## 12545 3
## 12546 3
## 12547 3
## 12548 1
## 12549 3
## 12550 3
## 12551 3
## 12552 3
## 12553 3
## 12554 3
## 12555 3
## 12556 2
## 12557 3
## 12558 3
## 12559 3
## 12560 3
## 12561 3
## 12562 3
## 12563 3
## 12564 3
## 12565 3
## 12566 3
## 12567 0
## 12568 3
## 12569 3
## 12570 3
## 12571 3
## 12572 3
## 12573 3
## 12574 3
## 12575 3
## 12576 3
## 12577 3
## 12578 3
## 12579 3
## 12580 3
## 12581 3
## 12582 3
## 12583 3
## 12584 3
## 12585 3
## 12586 3
## 12587 3
## 12588 3
## 12589 3
## 12590 3
## 12591 3
## 12592 3
## 12593 3
## 12594 3
## 12595 3
## 12596 3
## 12597 1
## 12598 3
## 12599 3
## 12600 3
## 12601 3
## 12602 3
## 12603 3
## 12604 3
## 12605 3
## 12606 3
## 12607 3
## 12608 3
## 12609 3
## 12610 3
## 12611 3
## 12612 3
## 12613 3
## 12614 3
## 12615 3
## 12616 3
## 12617 3
## 12618 3
## 12619 3
## 12620 3
## 12621 3
## 12622 3
## 12623 3
## 12624 3
## 12625 3
## 12626 3
## 12627 3
## 12628 3
## 12629 3
## 12630 3
## 12631 3
## 12632 3
## 12633 3
## 12634 3
## 12635 3
## 12636 3
## 12637 3
## 12638 3
## 12639 3
## 12640 3
## 12641 3
## 12642 3
## 12643 3
## 12644 3
## 12645 3
## 12646 3
## 12647 3
## 12648 3
## 12649 3
## 12650 3
## 12651 3
## 12652 3
## 12653 3
## 12654 3
## 12655 2
## 12656 3
## 12657 3
## 12658 3
## 12659 3
## 12660 3
## 12661 3
## 12662 1
## 12663 3
## 12664 3
## 12665 3
## 12666 3
## 12667 3
## 12668 3
## 12669 3
## 12670 3
## 12671 3
## 12672 3
## 12673 3
## 12674 3
## 12675 3
## 12676 3
## 12677 3
## 12678 3
## 12679 3
## 12680 3
## 12681 3
## 12682 3
## 12683 3
## 12684 3
## 12685 3
## 12686 3
## 12687 3
## 12688 3
## 12689 3
## 12690 3
## 12691 3
## 12692 3
## 12693 3
## 12694 3
## 12695 3
## 12696 3
## 12697 3
## 12698 3
## 12699 3
## 12700 3
## 12701 3
## 12702 3
## 12703 3
## 12704 3
## 12705 3
## 12706 3
## 12707 3
## 12708 3
## 12709 3
## 12710 3
## 12711 3
## 12712 3
## 12713 3
## 12714 3
## 12715 3
## 12716 3
## 12717 3
## 12718 3
## 12719 3
## 12720 3
## 12721 3
## 12722 3
## 12723 3
## 12724 3
## 12725 3
## 12726 3
## 12727 3
## 12728 3
## 12729 3
## 12730 2
## 12731 3
## 12732 3
## 12733 3
## 12734 3
## 12735 3
## 12736 3
## 12737 3
## 12738 3
## 12739 3
## 12740 1
## 12741 3
## 12742 3
## 12743 3
## 12744 3
## 12745 3
## 12746 3
## 12747 3
## 12748 3
## 12749 3
## 12750 3
## 12751 3
## 12752 3
## 12753 3
## 12754 2
## 12755 3
## 12756 3
## 12757 3
## 12758 3
## 12759 3
## 12760 3
## 12761 3
## 12762 3
## 12763 3
## 12764 3
## 12765 3
## 12766 3
## 12767 3
## 12768 3
## 12769 3
## 12770 3
## 12771 3
## 12772 3
## 12773 2
## 12774 3
## 12775 3
## 12776 3
## 12777 3
## 12778 3
## 12779 3
## 12780 3
## 12781 3
## 12782 3
## 12783 3
## 12784 3
## 12785 3
## 12786 3
## 12787 3
## 12788 3
## 12789 3
## 12790 3
## 12791 3
## 12792 3
## 12793 3
## 12794 3
## 12795 3
## 12796 3
## 12797 3
## 12798 3
## 12799 3
## 12800 3
## 12801 3
## 12802 3
## 12803 3
## 12804 3
## 12805 3
## 12806 3
## 12807 3
## 12808 3
## 12809 3
## 12810 3
## 12811 3
## 12812 3
## 12813 3
## 12814 3
## 12815 3
## 12816 3
## 12817 3
## 12818 3
## 12819 3
## 12820 3
## 12821 3
## 12822 2
## 12823 3
## 12824 3
## 12825 3
## 12826 3
## 12827 3
## 12828 3
## 12829 3
## 12830 3
## 12831 2
## 12832 3
## 12833 3
## 12834 3
## 12835 3
## 12836 3
## 12837 3
## 12838 3
## 12839 3
## 12840 3
## 12841 3
## 12842 3
## 12843 3
## 12844 3
## 12845 3
## 12846 3
## 12847 3
## 12848 3
## 12849 3
## 12850 3
## 12851 3
## 12852 3
## 12853 3
## 12854 3
## 12855 1
## 12856 1
## 12857 3
## 12858 3
## 12859 3
## 12860 3
## 12861 3
## 12862 3
## 12863 3
## 12864 3
## 12865 3
## 12866 3
## 12867 3
## 12868 3
## 12869 3
## 12870 2
## 12871 3
## 12872 3
## 12873 3
## 12874 3
## 12875 3
## 12876 3
## 12877 3
## 12878 2
## 12879 3
## 12880 3
## 12881 3
## 12882 3
## 12883 3
## 12884 3
## 12885 3
## 12886 3
## 12887 3
## 12888 3
## 12889 3
## 12890 3
## 12891 3
## 12892 3
## 12893 3
## 12894 3
## 12895 3
## 12896 3
## 12897 3
## 12898 3
## 12899 3
## 12900 3
## 12901 3
## 12902 3
## 12903 3
## 12904 3
## 12905 3
## 12906 3
## 12907 3
## 12908 3
## 12909 3
## 12910 1
## 12911 3
## 12912 3
## 12913 3
## 12914 3
## 12915 3
## 12916 3
## 12917 3
## 12918 3
## 12919 3
## 12920 3
## 12921 3
## 12922 3
## 12923 3
## 12924 3
## 12925 2
## 12926 3
## 12927 3
## 12928 3
## 12929 3
## 12930 3
## 12931 3
## 12932 3
## 12933 3
## 12934 3
## 12935 3
## 12936 3
## 12937 3
## 12938 3
## 12939 3
## 12940 3
## 12941 3
## 12942 3
## 12943 3
## 12944 3
## 12945 3
## 12946 3
## 12947 3
## 12948 3
## 12949 3
## 12950 3
## 12951 3
## 12952 2
## 12953 3
## 12954 3
## 12955 3
## 12956 3
## 12957 3
## 12958 3
## 12959 3
## 12960 3
## 12961 3
## 12962 3
## 12963 3
## 12964 3
## 12965 3
## 12966 3
## 12967 3
## 12968 3
## 12969 3
## 12970 3
## 12971 3
## 12972 3
## 12973 3
## 12974 3
## 12975 3
## 12976 3
## 12977 0
## 12978 3
## 12979 3
## 12980 3
## 12981 3
## 12982 3
## 12983 3
## 12984 0
## 12985 3
## 12986 3
## 12987 3
## 12988 3
## 12989 3
## 12990 3
## 12991 3
## 12992 1
## 12993 3
## 12994 3
## 12995 3
## 12996 3
## 12997 3
## 12998 3
## 12999 3
## 13000 3
## 13001 3
## 13002 0
## 13003 3
## 13004 3
## 13005 3
## 13006 3
## 13007 3
## 13008 3
## 13009 3
## 13010 3
## 13011 3
## 13012 3
## 13013 3
## 13014 3
## 13015 3
## 13016 3
## 13017 3
## 13018 3
## 13019 3
## 13020 3
## 13021 3
## 13022 3
## 13023 3
## 13024 3
## 13025 3
## 13026 3
## 13027 3
## 13028 3
## 13029 3
## 13030 3
## 13031 1
## 13032 3
## 13033 3
## 13034 3
## 13035 3
## 13036 2
## 13037 3
## 13038 3
## 13039 3
## 13040 3
## 13041 3
## 13042 3
## 13043 3
## 13044 3
## 13045 3
## 13046 3
## 13047 3
## 13048 3
## 13049 3
## 13050 2
## 13051 3
## 13052 3
## 13053 3
## 13054 3
## 13055 3
## 13056 3
## 13057 3
## 13058 3
## 13059 3
## 13060 3
## 13061 3
## 13062 3
## 13063 3
## 13064 3
## 13065 3
## 13066 3
## 13067 3
## 13068 3
## 13069 3
## 13070 3
## 13071 3
## 13072 3
## 13073 3
## 13074 3
## 13075 3
## 13076 3
## 13077 0
## 13078 3
## 13079 3
## 13080 3
## 13081 3
## 13082 3
## 13083 3
## 13084 3
## 13085 3
## 13086 3
## 13087 3
## 13088 3
## 13089 3
## 13090 3
## 13091 3
## 13092 3
## 13093 3
## 13094 3
## 13095 3
## 13096 3
## 13097 3
## 13098 3
## 13099 3
## 13100 3
## 13101 3
## 13102 3
## 13103 3
## 13104 3
## 13105 2
## 13106 3
## 13107 3
## 13108 3
## 13109 3
## 13110 2
## 13111 3
## 13112 3
## 13113 3
## 13114 3
## 13115 3
## 13116 3
## 13117 0
## 13118 3
## 13119 3
## 13120 3
## 13121 3
## 13122 3
## 13123 3
## 13124 3
## 13125 3
## 13126 3
## 13127 3
## 13128 3
## 13129 3
## 13130 3
## 13131 3
## 13132 1
## 13133 3
## 13134 3
## 13135 3
## 13136 3
## 13137 3
## 13138 3
## 13139 3
## 13140 3
## 13141 3
## 13142 3
## 13143 3
## 13144 3
## 13145 3
## 13146 3
## 13147 3
## 13148 3
## 13149 2
## 13150 3
## 13151 3
## 13152 3
## 13153 1
## 13154 1
## 13155 3
## 13156 3
## 13157 3
## 13158 3
## 13159 3
## 13160 3
## 13161 3
## 13162 3
## 13163 3
## 13164 3
## 13165 3
## 13166 3
## 13167 3
## 13168 3
## 13169 3
## 13170 3
## 13171 3
## 13172 3
## 13173 3
## 13174 3
## 13175 3
## 13176 3
## 13177 3
## 13178 3
## 13179 3
## 13180 3
## 13181 3
## 13182 3
## 13183 1
## 13184 3
## 13185 3
## 13186 3
## 13187 3
## 13188 3
## 13189 3
## 13190 3
## 13191 3
## 13192 3
## 13193 3
## 13194 3
## 13195 3
## 13196 3
## 13197 3
## 13198 3
## 13199 3
## 13200 2
## 13201 3
## 13202 3
## 13203 3
## 13204 3
## 13205 3
## 13206 3
## 13207 3
## 13208 3
## 13209 2
## 13210 3
## 13211 3
## 13212 3
## 13213 3
## 13214 3
## 13215 3
## 13216 3
## 13217 3
## 13218 3
## 13219 3
## 13220 3
## 13221 3
## 13222 3
## 13223 3
## 13224 3
## 13225 3
## 13226 3
## 13227 3
## 13228 3
## 13229 3
## 13230 3
## 13231 3
## 13232 3
## 13233 3
## 13234 3
## 13235 3
## 13236 2
## 13237 2
## 13238 3
## 13239 3
## 13240 3
## 13241 3
## 13242 3
## 13243 3
## 13244 3
## 13245 3
## 13246 3
## 13247 3
## 13248 3
## 13249 3
## 13250 3
## 13251 3
## 13252 3
## 13253 3
## 13254 3
## 13255 3
## 13256 3
## 13257 3
## 13258 3
## 13259 3
## 13260 3
## 13261 3
## 13262 3
## 13263 3
## 13264 3
## 13265 3
## 13266 3
## 13267 3
## 13268 3
## 13269 3
## 13270 3
## 13271 3
## 13272 3
## 13273 3
## 13274 3
## 13275 3
## 13276 3
## 13277 3
## 13278 3
## 13279 2
## 13280 3
## 13281 3
## 13282 3
## 13283 3
## 13284 3
## 13285 3
## 13286 3
## 13287 3
## 13288 3
## 13289 1
## 13290 3
## 13291 3
## 13292 3
## 13293 3
## 13294 3
## 13295 3
## 13296 3
## 13297 3
## 13298 3
## 13299 3
## 13300 3
## 13301 3
## 13302 3
## 13303 3
## 13304 3
## 13305 3
## 13306 3
## 13307 3
## 13308 3
## 13309 3
## 13310 3
## 13311 3
## 13312 3
## 13313 3
## 13314 3
## 13315 3
## 13316 3
## 13317 3
## 13318 3
## 13319 3
## 13320 3
## 13321 3
## 13322 3
## 13323 3
## 13324 3
## 13325 3
## 13326 3
## 13327 3
## 13328 3
## 13329 3
## 13330 3
## 13331 3
## 13332 3
## 13333 3
## 13334 3
## 13335 3
## 13336 3
## 13337 3
## 13338 3
## 13339 3
## 13340 3
## 13341 3
## 13342 2
## 13343 2
## 13344 3
## 13345 3
## 13346 3
## 13347 3
## 13348 3
## 13349 3
## 13350 3
## 13351 3
## 13352 3
## 13353 2
## 13354 3
## 13355 3
## 13356 3
## 13357 3
## 13358 3
## 13359 3
## 13360 3
## 13361 3
## 13362 3
## 13363 3
## 13364 3
## 13365 3
## 13366 3
## 13367 3
## 13368 3
## 13369 3
## 13370 3
## 13371 3
## 13372 3
## 13373 3
## 13374 3
## 13375 3
## 13376 3
## 13377 3
## 13378 3
## 13379 3
## 13380 3
## 13381 3
## 13382 3
## 13383 3
## 13384 3
## 13385 3
## 13386 1
## 13387 3
## 13388 3
## 13389 3
## 13390 3
## 13391 3
## 13392 3
## 13393 3
## 13394 3
## 13395 3
## 13396 3
## 13397 3
## 13398 3
## 13399 3
## 13400 3
## 13401 3
## 13402 3
## 13403 3
## 13404 3
## 13405 3
## 13406 2
## 13407 3
## 13408 3
## 13409 3
## 13410 3
## 13411 3
## 13412 3
## 13413 3
## 13414 1
## 13415 3
## 13416 3
## 13417 3
## 13418 3
## 13419 3
## 13420 3
## 13421 3
## 13422 3
## 13423 3
## 13424 3
## 13425 3
## 13426 3
## 13427 3
## 13428 3
## 13429 3
## 13430 3
## 13431 3
## 13432 3
## 13433 3
## 13434 3
## 13435 3
## 13436 1
## 13437 3
## 13438 3
## 13439 3
## 13440 3
## 13441 3
## 13442 3
## 13443 3
## 13444 3
## 13445 3
## 13446 3
## 13447 3
## 13448 3
## 13449 3
## 13450 3
## 13451 3
## 13452 3
## 13453 3
## 13454 3
## 13455 3
## 13456 2
## 13457 3
## 13458 3
## 13459 3
## 13460 3
## 13461 3
## 13462 3
## 13463 3
## 13464 3
## 13465 3
## 13466 3
## 13467 3
## 13468 3
## 13469 3
## 13470 3
## 13471 3
## 13472 3
## 13473 3
## 13474 1
## 13475 3
## 13476 3
## 13477 3
## 13478 3
## 13479 3
## 13480 3
## 13481 3
## 13482 3
## 13483 3
## 13484 3
## 13485 3
## 13486 3
## 13487 3
## 13488 3
## 13489 3
## 13490 3
## 13491 3
## 13492 1
## 13493 3
## 13494 3
## 13495 3
## 13496 1
## 13497 3
## 13498 2
## 13499 3
## 13500 3
## 13501 3
## 13502 3
## 13503 3
## 13504 3
## 13505 3
## 13506 2
## 13507 3
## 13508 3
## 13509 3
## 13510 3
## 13511 3
## 13512 3
## 13513 3
## 13514 3
## 13515 3
## 13516 3
## 13517 3
## 13518 3
## 13519 3
## 13520 3
## 13521 3
## 13522 3
## 13523 2
## 13524 3
## 13525 1
## 13526 3
## 13527 3
## 13528 3
## 13529 3
## 13530 3
## 13531 3
## 13532 3
## 13533 3
## 13534 3
## 13535 0
## 13536 3
## 13537 1
## 13538 3
## 13539 3
## 13540 3
## 13541 3
## 13542 3
## 13543 3
## 13544 3
## 13545 3
## 13546 3
## 13547 3
## 13548 3
## 13549 3
## 13550 3
## 13551 3
## 13552 3
## 13553 3
## 13554 3
## 13555 3
## 13556 3
## 13557 3
## 13558 3
## 13559 3
## 13560 1
## 13561 3
## 13562 3
## 13563 3
## 13564 3
## 13565 3
## 13566 3
## 13567 2
## 13568 3
## 13569 3
## 13570 3
## 13571 3
## 13572 3
## 13573 3
## 13574 3
## 13575 3
## 13576 3
## 13577 3
## 13578 3
## 13579 3
## 13580 3
## 13581 3
## 13582 2
## 13583 3
## 13584 3
## 13585 3
## 13586 3
## 13587 3
## 13588 3
## 13589 3
## 13590 3
## 13591 3
## 13592 2
## 13593 3
## 13594 3
## 13595 3
## 13596 3
## 13597 3
## 13598 3
## 13599 3
## 13600 3
## 13601 3
## 13602 3
## 13603 2
## 13604 3
## 13605 3
## 13606 3
## 13607 3
## 13608 3
## 13609 3
## 13610 3
## 13611 3
## 13612 3
## 13613 2
## 13614 3
## 13615 3
## 13616 3
## 13617 3
## 13618 1
## 13619 3
## 13620 3
## 13621 3
## 13622 3
## 13623 3
## 13624 3
## 13625 3
## 13626 3
## 13627 3
## 13628 3
## 13629 3
## 13630 3
## 13631 2
## 13632 3
## 13633 3
## 13634 3
## 13635 3
## 13636 3
## 13637 3
## 13638 3
## 13639 3
## 13640 3
## 13641 3
## 13642 3
## 13643 3
## 13644 1
## 13645 3
## 13646 3
## 13647 1
## 13648 3
## 13649 3
## 13650 3
## 13651 3
## 13652 3
## 13653 1
## 13654 3
## 13655 3
## 13656 3
## 13657 3
## 13658 3
## 13659 3
## 13660 3
## 13661 3
## 13662 3
## 13663 3
## 13664 3
## 13665 3
## 13666 3
## 13667 2
## 13668 3
## 13669 3
## 13670 3
## 13671 3
## 13672 3
## 13673 3
## 13674 2
## 13675 3
## 13676 3
## 13677 3
## 13678 3
## 13679 1
## 13680 1
## 13681 2
## 13682 3
## 13683 3
## 13684 3
## 13685 0
## 13686 2
## 13687 3
## 13688 3
## 13689 3
## 13690 3
## 13691 3
## 13692 3
## 13693 3
## 13694 3
## 13695 3
## 13696 3
## 13697 3
## 13698 3
## 13699 3
## 13700 3
## 13701 3
## 13702 3
## 13703 3
## 13704 3
## 13705 2
## 13706 3
## 13707 3
## 13708 3
## 13709 3
## 13710 3
## 13711 3
## 13712 1
## 13713 3
## 13714 3
## 13715 3
## 13716 2
## 13717 3
## 13718 3
## 13719 3
## 13720 3
## 13721 3
## 13722 3
## 13723 3
## 13724 3
## 13725 3
## 13726 3
## 13727 3
## 13728 3
## 13729 3
## 13730 3
## 13731 3
## 13732 3
## 13733 3
## 13734 3
## 13735 3
## 13736 3
## 13737 3
## 13738 3
## 13739 3
## 13740 3
## 13741 3
## 13742 3
## 13743 3
## 13744 3
## 13745 3
## 13746 3
## 13747 3
## 13748 3
## 13749 3
## 13750 1
## 13751 3
## 13752 3
## 13753 3
## 13754 3
## 13755 3
## 13756 3
## 13757 3
## 13758 3
## 13759 3
## 13760 3
## 13761 3
## 13762 2
## 13763 3
## 13764 3
## 13765 3
## 13766 3
## 13767 2
## 13768 3
## 13769 3
## 13770 3
## 13771 3
## 13772 3
## 13773 3
## 13774 3
## 13775 3
## 13776 3
## 13777 3
## 13778 3
## 13779 3
## 13780 3
## 13781 3
## 13782 3
## 13783 3
## 13784 3
## 13785 3
## 13786 3
## 13787 3
## 13788 3
## 13789 3
## 13790 3
## 13791 3
## 13792 3
## 13793 3
## 13794 3
## 13795 3
## 13796 3
## 13797 3
## 13798 3
## 13799 3
## 13800 3
## 13801 3
## 13802 3
## 13803 3
## 13804 3
## 13805 3
## 13806 3
## 13807 3
## 13808 3
## 13809 3
## 13810 3
## 13811 3
## 13812 3
## 13813 3
## 13814 3
## 13815 3
## 13816 3
## 13817 3
## 13818 3
## 13819 3
## 13820 3
## 13821 3
## 13822 2
## 13823 2
## 13824 3
## 13825 3
## 13826 3
## 13827 3
## 13828 3
## 13829 3
## 13830 3
## 13831 3
## 13832 1
## 13833 3
## 13834 3
## 13835 3
## 13836 3
## 13837 3
## 13838 3
## 13839 3
## 13840 1
## 13841 3
## 13842 3
## 13843 3
## 13844 3
## 13845 3
## 13846 3
## 13847 3
## 13848 3
## 13849 2
## 13850 1
## 13851 3
## 13852 3
## 13853 3
## 13854 3
## 13855 3
## 13856 3
## 13857 3
## 13858 3
## 13859 3
## 13860 3
## 13861 3
## 13862 3
## 13863 3
## 13864 3
## 13865 3
## 13866 3
## 13867 3
## 13868 3
## 13869 3
## 13870 3
## 13871 3
## 13872 3
## 13873 3
## 13874 3
## 13875 3
## 13876 3
## 13877 3
## 13878 3
## 13879 3
## 13880 3
## 13881 3
## 13882 3
## 13883 3
## 13884 3
## 13885 3
## 13886 3
## 13887 3
## 13888 3
## 13889 3
## 13890 3
## 13891 3
## 13892 3
## 13893 3
## 13894 3
## 13895 3
## 13896 3
## 13897 3
## 13898 3
## 13899 3
## 13900 3
## 13901 3
## 13902 3
## 13903 3
## 13904 2
## 13905 3
## 13906 3
## 13907 3
## 13908 3
## 13909 3
## 13910 3
## 13911 3
## 13912 3
## 13913 3
## 13914 3
## 13915 3
## 13916 3
## 13917 3
## 13918 3
## 13919 3
## 13920 3
## 13921 3
## 13922 3
## 13923 3
## 13924 3
## 13925 3
## 13926 3
## 13927 3
## 13928 3
## 13929 3
## 13930 3
## 13931 3
## 13932 3
## 13933 3
## 13934 3
## 13935 3
## 13936 3
## 13937 3
## 13938 3
## 13939 3
## 13940 3
## 13941 3
## 13942 3
## 13943 3
## 13944 3
## 13945 3
## 13946 2
## 13947 3
## 13948 3
## 13949 3
## 13950 3
## 13951 3
## 13952 3
## 13953 3
## 13954 3
## 13955 3
## 13956 3
## 13957 3
## 13958 3
## 13959 3
## 13960 3
## 13961 3
## 13962 3
## 13963 3
## 13964 3
## 13965 3
## 13966 3
## 13967 3
## 13968 3
## 13969 3
## 13970 3
## 13971 3
## 13972 3
## 13973 3
## 13974 3
## 13975 2
## 13976 3
## 13977 3
## 13978 3
## 13979 3
## 13980 3
## 13981 1
## 13982 3
## 13983 3
## 13984 3
## 13985 3
## 13986 3
## 13987 3
## 13988 3
## 13989 3
## 13990 3
## 13991 3
## 13992 3
## 13993 3
## 13994 3
## 13995 3
## 13996 3
## 13997 3
## 13998 3
## 13999 3
## 14000 3
## 14001 3
## 14002 3
## 14003 3
## 14004 3
## 14005 3
## 14006 3
## 14007 3
## 14008 3
## 14009 3
## 14010 3
## 14011 3
## 14012 3
## 14013 3
## 14014 3
## 14015 3
## 14016 3
## 14017 3
## 14018 3
## 14019 3
## 14020 3
## 14021 1
## 14022 3
## 14023 2
## 14024 3
## 14025 3
## 14026 3
## 14027 2
## 14028 3
## 14029 3
## 14030 3
## 14031 3
## 14032 3
## 14033 3
## 14034 3
## 14035 3
## 14036 3
## 14037 3
## 14038 3
## 14039 3
## 14040 3
## 14041 3
## 14042 3
## 14043 3
## 14044 3
## 14045 3
## 14046 3
## 14047 3
## 14048 0
## 14049 3
## 14050 3
## 14051 3
## 14052 3
## 14053 3
## 14054 3
## 14055 3
## 14056 3
## 14057 3
## 14058 3
## 14059 3
## 14060 3
## 14061 3
## 14062 3
## 14063 3
## 14064 3
## 14065 3
## 14066 3
## 14067 3
## 14068 3
## 14069 3
## 14070 1
## 14071 3
## 14072 3
## 14073 3
## 14074 3
## 14075 3
## 14076 3
## 14077 2
## 14078 3
## 14079 1
## 14080 3
## 14081 3
## 14082 3
## 14083 3
## 14084 3
## 14085 3
## 14086 3
## 14087 3
## 14088 3
## 14089 3
## 14090 3
## 14091 3
## 14092 3
## 14093 3
## 14094 3
## 14095 3
## 14096 3
## 14097 3
## 14098 3
## 14099 3
## 14100 3
## 14101 3
## 14102 3
## 14103 2
## 14104 3
## 14105 3
## 14106 3
## 14107 3
## 14108 3
## 14109 3
## 14110 3
## 14111 3
## 14112 3
## 14113 3
## 14114 3
## 14115 3
## 14116 3
## 14117 3
## 14118 3
## 14119 3
## 14120 3
## 14121 3
## 14122 3
## 14123 3
## 14124 3
## 14125 3
## 14126 3
## 14127 3
## 14128 3
## 14129 3
## 14130 3
## 14131 3
## 14132 3
## 14133 3
## 14134 3
## 14135 3
## 14136 3
## 14137 3
## 14138 3
## 14139 3
## 14140 3
## 14141 3
## 14142 3
## 14143 3
## 14144 3
## 14145 3
## 14146 3
## 14147 1
## 14148 3
## 14149 3
## 14150 3
## 14151 3
## 14152 3
## 14153 3
## 14154 3
## 14155 3
## 14156 3
## 14157 3
## 14158 3
## 14159 3
## 14160 3
## 14161 3
## 14162 3
## 14163 3
## 14164 3
## 14165 3
## 14166 3
## 14167 3
## 14168 3
## 14169 3
## 14170 3
## 14171 3
## 14172 3
## 14173 3
## 14174 3
## 14175 3
## 14176 3
## 14177 2
## 14178 3
## 14179 3
## 14180 3
## 14181 3
## 14182 3
## 14183 3
## 14184 3
## 14185 3
## 14186 3
## 14187 3
## 14188 3
## 14189 3
## 14190 3
## 14191 3
## 14192 3
## 14193 3
## 14194 1
## 14195 3
## 14196 3
## 14197 3
## 14198 3
## 14199 3
## 14200 3
## 14201 3
## 14202 3
## 14203 3
## 14204 3
## 14205 3
## 14206 3
## 14207 3
## 14208 3
## 14209 3
## 14210 3
## 14211 3
## 14212 3
## 14213 3
## 14214 3
## 14215 3
## 14216 3
## 14217 2
## 14218 3
## 14219 3
## 14220 3
## 14221 3
## 14222 3
## 14223 2
## 14224 3
## 14225 3
## 14226 2
## 14227 3
## 14228 3
## 14229 3
## 14230 3
## 14231 3
## 14232 3
## 14233 3
## 14234 3
## 14235 3
## 14236 3
## 14237 3
## 14238 3
## 14239 2
## 14240 3
## 14241 3
## 14242 3
## 14243 3
## 14244 3
## 14245 3
## 14246 3
## 14247 3
## 14248 3
## 14249 3
## 14250 3
## 14251 3
## 14252 3
## 14253 3
## 14254 3
## 14255 3
## 14256 3
## 14257 3
## 14258 3
## 14259 3
## 14260 3
## 14261 3
## 14262 3
## 14263 2
## 14264 3
## 14265 3
## 14266 3
## 14267 3
## 14268 3
## 14269 3
## 14270 3
## 14271 3
## 14272 3
## 14273 3
## 14274 3
## 14275 3
## 14276 3
## 14277 2
## 14278 3
## 14279 1
## 14280 3
## 14281 3
## 14282 3
## 14283 3
## 14284 3
## 14285 3
## 14286 3
## 14287 3
## 14288 3
## 14289 3
## 14290 3
## 14291 3
## 14292 3
## 14293 3
## 14294 3
## 14295 3
## 14296 3
## 14297 3
## 14298 3
## 14299 3
## 14300 3
## 14301 3
## 14302 3
## 14303 3
## 14304 3
## 14305 3
## 14306 3
## 14307 3
## 14308 3
## 14309 3
## 14310 3
## 14311 3
## 14312 3
## 14313 1
## 14314 3
## 14315 3
## 14316 3
## 14317 3
## 14318 3
## 14319 3
## 14320 3
## 14321 3
## 14322 3
## 14323 3
## 14324 3
## 14325 3
## 14326 3
## 14327 3
## 14328 3
## 14329 3
## 14330 3
## 14331 0
## 14332 3
## 14333 3
## 14334 3
## 14335 3
## 14336 3
## 14337 3
## 14338 3
## 14339 3
## 14340 3
## 14341 3
## 14342 3
## 14343 3
## 14344 3
## 14345 3
## 14346 3
## 14347 3
## 14348 3
## 14349 1
## 14350 3
## 14351 3
## 14352 3
## 14353 3
## 14354 3
## 14355 3
## 14356 3
## 14357 3
## 14358 3
## 14359 3
## 14360 3
## 14361 3
## 14362 3
## 14363 3
## 14364 3
## 14365 3
## 14366 3
## 14367 3
## 14368 3
## 14369 3
## 14370 3
## 14371 3
## 14372 3
## 14373 3
## 14374 3
## 14375 3
## 14376 3
## 14377 3
## 14378 1
## 14379 3
## 14380 3
## 14381 3
## 14382 3
## 14383 3
## 14384 3
## 14385 3
## 14386 2
## 14387 3
## 14388 3
## 14389 3
## 14390 3
## 14391 3
## 14392 3
## 14393 3
## 14394 3
## 14395 3
## 14396 3
## 14397 3
## 14398 3
## 14399 3
## 14400 3
## 14401 3
## 14402 3
## 14403 3
## 14404 3
## 14405 3
## 14406 1
## 14407 3
## 14408 3
## 14409 3
## 14410 2
## 14411 3
## 14412 3
## 14413 3
## 14414 3
## 14415 3
## 14416 3
## 14417 3
## 14418 3
## 14419 3
## 14420 3
## 14421 3
## 14422 3
## 14423 3
## 14424 3
## 14425 3
## 14426 3
## 14427 3
## 14428 3
## 14429 3
## 14430 3
## 14431 3
## 14432 3
## 14433 3
## 14434 3
## 14435 3
## 14436 3
## 14437 3
## 14438 3
## 14439 3
## 14440 2
## 14441 3
## 14442 3
## 14443 3
## 14444 3
## 14445 3
## 14446 3
## 14447 2
## 14448 3
## 14449 3
## 14450 3
## 14451 3
## 14452 3
## 14453 3
## 14454 3
## 14455 3
## 14456 3
## 14457 2
## 14458 3
## 14459 3
## 14460 3
## 14461 3
## 14462 2
## 14463 3
## 14464 3
## 14465 3
## 14466 3
## 14467 3
## 14468 3
## 14469 3
## 14470 3
## 14471 3
## 14472 3
## 14473 3
## 14474 3
## 14475 3
## 14476 3
## 14477 3
## 14478 3
## 14479 3
## 14480 3
## 14481 3
## 14482 3
## 14483 3
## 14484 3
## 14485 3
## 14486 3
## 14487 3
## 14488 3
## 14489 3
## 14490 3
## 14491 3
## 14492 3
## 14493 2
## 14494 3
## 14495 3
## 14496 2
## 14497 3
## 14498 3
## 14499 3
## 14500 3
## 14501 3
## 14502 3
## 14503 3
## 14504 3
## 14505 2
## 14506 3
## 14507 3
## 14508 3
## 14509 3
## 14510 3
## 14511 3
## 14512 3
## 14513 3
## 14514 3
## 14515 3
## 14516 3
## 14517 3
## 14518 3
## 14519 3
## 14520 3
## 14521 1
## 14522 3
## 14523 0
## 14524 3
## 14525 3
## 14526 3
## 14527 3
## 14528 3
## 14529 3
## 14530 3
## 14531 3
## 14532 3
## 14533 3
## 14534 3
## 14535 2
## 14536 3
## 14537 3
## 14538 3
## 14539 3
## 14540 3
## 14541 3
## 14542 3
## 14543 3
## 14544 2
## 14545 3
## 14546 3
## 14547 3
## 14548 3
## 14549 3
## 14550 3
## 14551 3
## 14552 3
## 14553 3
## 14554 3
## 14555 3
## 14556 3
## 14557 3
## 14558 3
## 14559 3
## 14560 3
## 14561 3
## 14562 3
## 14563 3
## 14564 3
## 14565 3
## 14566 3
## 14567 3
## 14568 3
## 14569 3
## 14570 3
## 14571 3
## 14572 3
## 14573 1
## 14574 3
## 14575 2
## 14576 3
## 14577 3
## 14578 3
## 14579 3
## 14580 3
## 14581 3
## 14582 3
## 14583 3
## 14584 3
## 14585 3
## 14586 3
## 14587 3
## 14588 3
## 14589 3
## 14590 3
## 14591 3
## 14592 3
## 14593 3
## 14594 3
## 14595 2
## 14596 3
## 14597 3
## 14598 3
## 14599 3
## 14600 3
## 14601 3
## 14602 3
## 14603 3
## 14604 3
## 14605 3
## 14606 3
## 14607 3
## 14608 3
## 14609 3
## 14610 3
## 14611 3
## 14612 3
## 14613 3
## 14614 3
## 14615 3
## 14616 3
## 14617 3
## 14618 3
## 14619 3
## 14620 3
## 14621 3
## 14622 3
## 14623 3
## 14624 3
## 14625 3
## 14626 3
## 14627 3
## 14628 3
## 14629 3
## 14630 3
## 14631 3
## 14632 3
## 14633 3
## 14634 3
## 14635 3
## 14636 3
## 14637 3
## 14638 3
## 14639 3
## 14640 3
## 14641 3
## 14642 1
## 14643 0
## 14644 3
## 14645 3
## 14646 3
## 14647 3
## 14648 3
## 14649 3
## 14650 3
## 14651 3
## 14652 3
## 14653 3
## 14654 3
## 14655 3
## 14656 3
## 14657 2
## 14658 3
## 14659 3
## 14660 3
## 14661 3
## 14662 3
## 14663 3
## 14664 3
## 14665 3
## 14666 3
## 14667 3
## 14668 3
## 14669 3
## 14670 3
## 14671 3
## 14672 1
## 14673 3
## 14674 3
## 14675 3
## 14676 1
## 14677 3
## 14678 3
## 14679 3
## 14680 3
## 14681 3
## 14682 3
## 14683 3
## 14684 3
## 14685 3
## 14686 3
## 14687 1
## 14688 3
## 14689 3
## 14690 3
## 14691 3
## 14692 3
## 14693 3
## 14694 3
## 14695 3
## 14696 3
## 14697 3
## 14698 3
## 14699 3
## 14700 3
## 14701 3
## 14702 2
## 14703 3
## 14704 3
## 14705 3
## 14706 3
## 14707 3
## 14708 3
## 14709 3
## 14710 3
## 14711 3
## 14712 3
## 14713 3
## 14714 3
## 14715 3
## 14716 3
## 14717 3
## 14718 3
## 14719 2
## 14720 3
## 14721 3
## 14722 3
## 14723 3
## 14724 3
## 14725 3
## 14726 3
## 14727 3
## 14728 3
## 14729 3
## 14730 3
## 14731 3
## 14732 3
## 14733 3
## 14734 3
## 14735 3
## 14736 3
## 14737 3
## 14738 3
## 14739 3
## 14740 3
## 14741 3
## 14742 3
## 14743 3
## 14744 3
## 14745 3
## 14746 2
## 14747 3
## 14748 3
## 14749 3
## 14750 0
## 14751 3
## 14752 3
## 14753 3
## 14754 3
## 14755 3
## 14756 3
## 14757 3
## 14758 3
## 14759 3
## 14760 3
## 14761 3
## 14762 3
## 14763 3
## 14764 3
## 14765 3
## 14766 3
## 14767 3
## 14768 3
## 14769 3
## 14770 3
## 14771 3
## 14772 3
## 14773 3
## 14774 3
## 14775 3
## 14776 3
## 14777 3
## 14778 3
## 14779 3
## 14780 3
## 14781 3
## 14782 3
## 14783 3
## 14784 3
## 14785 3
## 14786 3
## 14787 3
## 14788 3
## 14789 3
## 14790 3
## 14791 3
## 14792 3
## 14793 3
## 14794 3
## 14795 2
## 14796 3
## 14797 3
## 14798 3
## 14799 3
## 14800 3
## 14801 3
## 14802 3
## 14803 3
## 14804 3
## 14805 3
## 14806 3
## 14807 2
## 14808 3
## 14809 1
## 14810 3
## 14811 3
## 14812 3
## 14813 3
## 14814 3
## 14815 3
## 14816 3
## 14817 2
## 14818 3
## 14819 2
## 14820 3
## 14821 3
## 14822 3
## 14823 3
## 14824 3
## 14825 3
## 14826 3
## 14827 3
## 14828 3
## 14829 2
## 14830 3
## 14831 3
## 14832 3
## 14833 3
## 14834 3
## 14835 3
## 14836 2
## 14837 3
## 14838 3
## 14839 3
## 14840 3
## 14841 3
## 14842 3
## 14843 2
## 14844 3
## 14845 3
## 14846 3
## 14847 3
## 14848 3
## 14849 3
## 14850 3
## 14851 3
## 14852 3
## 14853 3
## 14854 3
## 14855 2
## 14856 3
## 14857 3
## 14858 3
## 14859 3
## 14860 3
## 14861 3
## 14862 3
## 14863 3
## 14864 3
## 14865 3
## 14866 3
## 14867 3
## 14868 3
## 14869 3
## 14870 1
## 14871 3
## 14872 3
## 14873 3
## 14874 3
## 14875 3
## 14876 3
## 14877 3
## 14878 3
## 14879 3
## 14880 3
## 14881 3
## 14882 3
## 14883 3
## 14884 3
## 14885 3
## 14886 3
## 14887 3
## 14888 3
## 14889 3
## 14890 3
## 14891 3
## 14892 3
## 14893 3
## 14894 3
## 14895 3
## 14896 3
## 14897 3
## 14898 3
## 14899 3
## 14900 3
## 14901 3
## 14902 3
## 14903 3
## 14904 3
## 14905 3
## 14906 3
## 14907 3
## 14908 3
## 14909 3
## 14910 3
## 14911 2
## 14912 3
## 14913 3
## 14914 3
## 14915 3
## 14916 3
## 14917 3
## 14918 3
## 14919 3
## 14920 3
## 14921 3
## 14922 3
## 14923 3
## 14924 3
## 14925 3
## 14926 3
## 14927 3
## 14928 2
## 14929 3
## 14930 3
## 14931 3
## 14932 3
## 14933 3
## 14934 3
## 14935 3
## 14936 3
## 14937 3
## 14938 3
## 14939 3
## 14940 3
## 14941 2
## 14942 3
## 14943 3
## 14944 3
## 14945 3
## 14946 3
## 14947 3
## 14948 3
## 14949 3
## 14950 3
## 14951 3
## 14952 3
## 14953 3
## 14954 3
## 14955 3
## 14956 3
## 14957 3
## 14958 3
## 14959 3
## 14960 3
## 14961 3
## 14962 3
## 14963 3
## 14964 3
## 14965 3
## 14966 3
## 14967 3
## 14968 3
## 14969 3
## 14970 3
## 14971 3
## 14972 3
## 14973 3
## 14974 3
## 14975 3
## 14976 3
## 14977 1
## 14978 3
## 14979 3
## 14980 3
## 14981 3
## 14982 3
## 14983 3
## 14984 3
## 14985 3
## 14986 3
## 14987 3
## 14988 3
## 14989 3
## 14990 3
## 14991 3
## 14992 3
## 14993 3
## 14994 3
## 14995 3
## 14996 3
## 14997 3
## 14998 3
## 14999 3
## 15000 3
## 15001 3
## 15002 3
## 15003 3
## 15004 3
## 15005 3
## 15006 3
## 15007 3
## 15008 3
## 15009 3
## 15010 3
## 15011 3
## 15012 3
## 15013 3
## 15014 3
## 15015 3
## 15016 3
## 15017 3
## 15018 3
## 15019 3
## 15020 3
## 15021 3
## 15022 3
## 15023 2
## 15024 3
## 15025 3
## 15026 3
## 15027 3
## 15028 3
## 15029 3
## 15030 3
## 15031 3
## 15032 3
## 15033 3
## 15034 3
## 15035 3
## 15036 3
## 15037 2
## 15038 3
## 15039 3
## 15040 3
## 15041 1
## 15042 3
## 15043 3
## 15044 3
## 15045 3
## 15046 3
## 15047 3
## 15048 3
## 15049 3
## 15050 3
## 15051 3
## 15052 3
## 15053 3
## 15054 3
## 15055 3
## 15056 3
## 15057 3
## 15058 3
## 15059 3
## 15060 3
## 15061 3
## 15062 3
## 15063 2
## 15064 3
## 15065 3
## 15066 3
## 15067 3
## 15068 3
## 15069 1
## 15070 3
## 15071 3
## 15072 3
## 15073 3
## 15074 3
## 15075 3
## 15076 3
## 15077 3
## 15078 1
## 15079 3
## 15080 2
## 15081 3
## 15082 3
## 15083 3
## 15084 3
## 15085 3
## 15086 3
## 15087 3
## 15088 3
## 15089 3
## 15090 3
## 15091 3
## 15092 3
## 15093 3
## 15094 3
## 15095 3
## 15096 1
## 15097 3
## 15098 3
## 15099 3
## 15100 3
## 15101 3
## 15102 3
## 15103 1
## 15104 3
## 15105 3
## 15106 3
## 15107 3
## 15108 3
## 15109 3
## 15110 3
## 15111 3
## 15112 2
## 15113 3
## 15114 2
## 15115 3
## 15116 3
## 15117 3
## 15118 3
## 15119 3
## 15120 3
## 15121 3
## 15122 3
## 15123 3
## 15124 2
## 15125 3
## 15126 3
## 15127 3
## 15128 3
## 15129 3
## 15130 3
## 15131 3
## 15132 3
## 15133 3
## 15134 3
## 15135 3
## 15136 3
## 15137 3
## 15138 3
## 15139 2
## 15140 3
## 15141 3
## 15142 3
## 15143 3
## 15144 3
## 15145 3
## 15146 3
## 15147 3
## 15148 3
## 15149 3
## 15150 3
## 15151 3
## 15152 3
## 15153 3
## 15154 3
## 15155 3
## 15156 3
## 15157 3
## 15158 3
## 15159 3
## 15160 3
## 15161 3
## 15162 3
## 15163 3
## 15164 3
## 15165 3
## 15166 2
## 15167 1
## 15168 3
## 15169 3
## 15170 3
## 15171 3
## 15172 3
## 15173 3
## 15174 3
## 15175 3
## 15176 3
## 15177 3
## 15178 3
## 15179 2
## 15180 3
## 15181 3
## 15182 3
## 15183 3
## 15184 3
## 15185 1
## 15186 3
## 15187 3
## 15188 3
## 15189 3
## 15190 3
## 15191 3
## 15192 3
## 15193 3
## 15194 3
## 15195 3
## 15196 3
## 15197 3
## 15198 3
## 15199 3
## 15200 3
## 15201 3
## 15202 3
## 15203 3
## 15204 3
## 15205 3
## 15206 3
## 15207 3
## 15208 3
## 15209 3
## 15210 3
## 15211 3
## 15212 3
## 15213 2
## 15214 3
## 15215 3
## 15216 3
## 15217 3
## 15218 1
## 15219 3
## 15220 3
## 15221 1
## 15222 3
## 15223 3
## 15224 3
## 15225 3
## 15226 3
## 15227 3
## 15228 3
## 15229 3
## 15230 3
## 15231 3
## 15232 3
## 15233 3
## 15234 3
## 15235 3
## 15236 3
## 15237 3
## 15238 3
## 15239 3
## 15240 3
## 15241 3
## 15242 3
## 15243 3
## 15244 3
## 15245 3
## 15246 3
## 15247 3
## 15248 3
## 15249 3
## 15250 3
## 15251 3
## 15252 3
## 15253 3
## 15254 3
## 15255 3
## 15256 3
## 15257 3
## 15258 3
## 15259 1
## 15260 3
## 15261 3
## 15262 3
## 15263 3
## 15264 3
## 15265 3
## 15266 3
## 15267 3
## 15268 3
## 15269 3
## 15270 3
## 15271 3
## 15272 3
## 15273 3
## 15274 3
## 15275 2
## 15276 3
## 15277 3
## 15278 3
## 15279 3
## 15280 3
## 15281 1
## 15282 3
## 15283 3
## 15284 3
## 15285 3
## 15286 3
## 15287 3
## 15288 3
## 15289 3
## 15290 3
## 15291 3
## 15292 3
## 15293 3
## 15294 3
## 15295 3
## 15296 3
## 15297 3
## 15298 3
## 15299 3
## 15300 3
## 15301 3
## 15302 3
## 15303 3
## 15304 3
## 15305 3
## 15306 3
## 15307 3
## 15308 3
## 15309 3
## 15310 3
## 15311 3
## 15312 2
## 15313 3
## 15314 3
## 15315 3
## 15316 3
## 15317 3
## 15318 3
## 15319 3
## 15320 2
## 15321 3
## 15322 3
## 15323 3
## 15324 3
## 15325 3
## 15326 3
## 15327 3
## 15328 3
## 15329 3
## 15330 3
## 15331 3
## 15332 3
## 15333 3
## 15334 3
## 15335 3
## 15336 3
## 15337 3
## 15338 3
## 15339 3
## 15340 3
## 15341 3
## 15342 3
## 15343 3
## 15344 3
## 15345 3
## 15346 3
## 15347 3
## 15348 3
## 15349 3
## 15350 3
## 15351 3
## 15352 3
## 15353 3
## 15354 3
## 15355 3
## 15356 3
## 15357 3
## 15358 3
## 15359 3
## 15360 2
## 15361 3
## 15362 3
## 15363 3
## 15364 3
## 15365 3
## 15366 3
## 15367 3
## 15368 3
## 15369 3
## 15370 3
## 15371 2
## 15372 3
## 15373 3
## 15374 3
## 15375 3
## 15376 3
## 15377 3
## 15378 3
## 15379 1
## 15380 3
## 15381 3
## 15382 3
## 15383 3
## 15384 3
## 15385 3
## 15386 3
## 15387 3
## 15388 3
## 15389 3
## 15390 3
## 15391 3
## 15392 3
## 15393 3
## 15394 3
## 15395 3
## 15396 3
## 15397 3
## 15398 3
## 15399 3
## 15400 3
## 15401 3
## 15402 3
## 15403 3
## 15404 3
## 15405 3
## 15406 3
## 15407 3
## 15408 3
## 15409 3
## 15410 3
## 15411 3
## 15412 3
## 15413 1
## 15414 1
## 15415 3
## 15416 3
## 15417 3
## 15418 3
## 15419 3
## 15420 3
## 15421 3
## 15422 3
## 15423 3
## 15424 3
## 15425 3
## 15426 3
## 15427 3
## 15428 3
## 15429 3
## 15430 3
## 15431 3
## 15432 3
## 15433 3
## 15434 3
## 15435 3
## 15436 3
## 15437 3
## 15438 3
## 15439 3
## 15440 3
## 15441 3
## 15442 3
## 15443 3
## 15444 3
## 15445 3
## 15446 3
## 15447 3
## 15448 3
## 15449 3
## 15450 3
## 15451 3
## 15452 3
## 15453 3
## 15454 3
## 15455 3
## 15456 3
## 15457 3
## 15458 3
## 15459 3
## 15460 3
## 15461 3
## 15462 3
## 15463 3
## 15464 3
## 15465 3
## 15466 3
## 15467 3
## 15468 3
## 15469 3
## 15470 3
## 15471 3
## 15472 1
## 15473 3
## 15474 2
## 15475 3
## 15476 3
## 15477 3
## 15478 3
## 15479 3
## 15480 3
## 15481 3
## 15482 3
## 15483 3
## 15484 3
## 15485 3
## 15486 3
## 15487 3
## 15488 3
## 15489 3
## 15490 3
## 15491 3
## 15492 3
## 15493 3
## 15494 3
## 15495 3
## 15496 3
## 15497 3
## 15498 3
## 15499 3
## 15500 3
## 15501 3
## 15502 3
## 15503 3
## 15504 3
## 15505 3
## 15506 3
## 15507 3
## 15508 3
## 15509 3
## 15510 3
## 15511 3
## 15512 3
## 15513 3
## 15514 3
## 15515 3
## 15516 3
## 15517 3
## 15518 3
## 15519 3
## 15520 3
## 15521 3
## 15522 3
## 15523 3
## 15524 3
## 15525 3
## 15526 1
## 15527 3
## 15528 3
## 15529 3
## 15530 3
## 15531 3
## 15532 3
## 15533 3
## 15534 3
## 15535 3
## 15536 3
## 15537 3
## 15538 3
## 15539 3
## 15540 3
## 15541 3
## 15542 3
## 15543 3
## 15544 3
## 15545 3
## 15546 3
## 15547 3
## 15548 3
## 15549 3
## 15550 3
## 15551 3
## 15552 3
## 15553 3
## 15554 3
## 15555 3
## 15556 3
## 15557 2
## 15558 3
## 15559 3
## 15560 3
## 15561 3
## 15562 2
## 15563 3
## 15564 3
## 15565 3
## 15566 3
## 15567 3
## 15568 3
## 15569 3
## 15570 3
## 15571 3
## 15572 3
## 15573 3
## 15574 3
## 15575 3
## 15576 3
## 15577 3
## 15578 3
## 15579 3
## 15580 3
## 15581 3
## 15582 3
## 15583 3
## 15584 3
## 15585 3
## 15586 3
## 15587 3
## 15588 3
## 15589 3
## 15590 3
## 15591 3
## 15592 3
## 15593 3
## 15594 3
## 15595 3
## 15596 3
## 15597 3
## 15598 3
## 15599 3
## 15600 3
## 15601 3
## 15602 3
## 15603 3
## 15604 3
## 15605 3
## 15606 3
## 15607 3
## 15608 3
## 15609 3
## 15610 3
## 15611 3
## 15612 3
## 15613 3
## 15614 3
## 15615 3
## 15616 3
## 15617 3
## 15618 2
## 15619 3
## 15620 3
## 15621 3
## 15622 3
## 15623 3
## 15624 3
## 15625 3
## 15626 3
## 15627 3
## 15628 3
## 15629 1
## 15630 3
## 15631 1
## 15632 3
## 15633 3
## 15634 3
## 15635 3
## 15636 3
## 15637 3
## 15638 3
## 15639 3
## 15640 3
## 15641 3
## 15642 3
## 15643 3
## 15644 3
## 15645 3
## 15646 3
## 15647 3
## 15648 3
## 15649 3
## 15650 3
## 15651 3
## 15652 3
## 15653 3
## 15654 3
## 15655 3
## 15656 3
## 15657 3
## 15658 3
## 15659 3
## 15660 3
## 15661 3
## 15662 3
## 15663 3
## 15664 3
## 15665 3
## 15666 3
## 15667 3
## 15668 3
## 15669 3
## 15670 3
## 15671 1
## 15672 3
## 15673 1
## 15674 3
## 15675 3
## 15676 3
## 15677 3
## 15678 3
## 15679 3
## 15680 3
## 15681 2
## 15682 3
## 15683 3
## 15684 3
## 15685 3
## 15686 3
## 15687 3
## 15688 3
## 15689 3
## 15690 3
## 15691 3
## 15692 3
## 15693 3
## 15694 3
## 15695 3
## 15696 1
## 15697 3
## 15698 3
## 15699 3
## 15700 3
## 15701 3
## 15702 1
## 15703 3
## 15704 3
## 15705 3
## 15706 1
## 15707 3
## 15708 2
## 15709 3
## 15710 3
## 15711 3
## 15712 1
## 15713 3
## 15714 3
## 15715 3
## 15716 3
## 15717 3
## 15718 3
## 15719 3
## 15720 3
## 15721 3
## 15722 3
## 15723 3
## 15724 3
## 15725 3
## 15726 3
## 15727 3
## 15728 3
## 15729 3
## 15730 3
## 15731 3
## 15732 3
## 15733 2
## 15734 3
## 15735 3
## 15736 3
## 15737 3
## 15738 1
## 15739 3
## 15740 3
## 15741 3
## 15742 3
## 15743 3
## 15744 1
## 15745 3
## 15746 3
## 15747 3
## 15748 3
## 15749 3
## 15750 3
## 15751 3
## 15752 3
## 15753 3
## 15754 3
## 15755 3
## 15756 3
## 15757 3
## 15758 3
## 15759 3
## 15760 3
## 15761 3
## 15762 3
## 15763 3
## 15764 3
## 15765 2
## 15766 3
## 15767 3
## 15768 3
## 15769 3
## 15770 3
## 15771 3
## 15772 3
## 15773 3
## 15774 3
## 15775 3
## 15776 3
## 15777 3
## 15778 3
## 15779 3
## 15780 3
## 15781 3
## 15782 3
## 15783 3
## 15784 3
## 15785 1
## 15786 3
## 15787 3
## 15788 3
## 15789 3
## 15790 3
## 15791 3
## 15792 3
## 15793 3
## 15794 3
## 15795 3
## 15796 3
## 15797 3
## 15798 3
## 15799 3
## 15800 3
## 15801 3
## 15802 3
## 15803 3
## 15804 3
## 15805 3
## 15806 3
## 15807 3
## 15808 3
## 15809 3
## 15810 3
## 15811 3
## 15812 3
## 15813 3
## 15814 3
## 15815 3
## 15816 3
## 15817 3
## 15818 3
## 15819 3
## 15820 3
## 15821 3
## 15822 3
## 15823 3
## 15824 3
## 15825 1
## 15826 2
## 15827 3
## 15828 3
## 15829 3
## 15830 3
## 15831 3
## 15832 3
## 15833 3
## 15834 3
## 15835 3
## 15836 3
## 15837 3
## 15838 3
## 15839 3
## 15840 3
## 15841 3
## 15842 3
## 15843 3
## 15844 3
## 15845 3
## 15846 3
## 15847 3
## 15848 3
## 15849 3
## 15850 3
## 15851 3
## 15852 3
## 15853 3
## 15854 3
## 15855 3
## 15856 3
## 15857 3
## 15858 3
## 15859 3
## 15860 3
## 15861 3
## 15862 3
## 15863 3
## 15864 3
## 15865 3
## 15866 3
## 15867 3
## 15868 3
## 15869 3
## 15870 3
## 15871 3
## 15872 3
## 15873 3
## 15874 3
## 15875 3
## 15876 3
## 15877 3
## 15878 3
## 15879 3
## 15880 3
## 15881 3
## 15882 3
## 15883 3
## 15884 3
## 15885 3
## 15886 3
## 15887 3
## 15888 3
## 15889 3
## 15890 3
## 15891 3
## 15892 3
## 15893 2
## 15894 3
## 15895 3
## 15896 3
## 15897 3
## 15898 3
## 15899 3
## 15900 3
## 15901 3
## 15902 3
## 15903 2
## 15904 3
## 15905 3
## 15906 2
## 15907 3
## 15908 3
## 15909 3
## 15910 3
## 15911 3
## 15912 3
## 15913 3
## 15914 3
## 15915 3
## 15916 3
## 15917 3
## 15918 3
## 15919 3
## 15920 3
## 15921 3
## 15922 3
## 15923 3
## 15924 3
## 15925 3
## 15926 3
## 15927 3
## 15928 3
## 15929 3
## 15930 3
## 15931 3
## 15932 3
## 15933 3
## 15934 3
## 15935 3
## 15936 3
## 15937 3
## 15938 3
## 15939 3
## 15940 3
## 15941 3
## 15942 3
## 15943 2
## 15944 3
## 15945 3
## 15946 3
## 15947 3
## 15948 3
## 15949 3
## 15950 3
## 15951 3
## 15952 3
## 15953 3
## 15954 3
## 15955 3
## 15956 3
## 15957 3
## 15958 3
## 15959 3
## 15960 3
## 15961 3
## 15962 3
## 15963 3
## 15964 3
## 15965 3
## 15966 3
## 15967 3
## 15968 3
## 15969 3
## 15970 3
## 15971 3
## 15972 3
## 15973 3
## 15974 3
## 15975 3
## 15976 3
## 15977 3
## 15978 3
## 15979 3
## 15980 3
## 15981 0
## 15982 3
## 15983 3
## 15984 3
## 15985 3
## 15986 3
## 15987 3
## 15988 3
## 15989 3
## 15990 3
## 15991 3
## 15992 3
## 15993 3
## 15994 3
## 15995 3
## 15996 3
## 15997 2
## 15998 3
## 15999 3
## 16000 3
## 16001 3
## 16002 3
## 16003 3
## 16004 3
## 16005 3
## 16006 3
## 16007 3
## 16008 3
## 16009 3
## 16010 3
## 16011 3
## 16012 3
## 16013 3
## 16014 3
## 16015 3
## 16016 3
## 16017 3
## 16018 3
## 16019 3
## 16020 3
## 16021 3
## 16022 3
## 16023 3
## 16024 3
## 16025 3
## 16026 3
## 16027 3
## 16028 3
## 16029 3
## 16030 3
## 16031 3
## 16032 3
## 16033 3
## 16034 3
## 16035 3
## 16036 3
## 16037 3
## 16038 3
## 16039 3
## 16040 3
## 16041 3
## 16042 3
## 16043 3
## 16044 3
## 16045 3
## 16046 3
## 16047 2
## 16048 3
## 16049 3
## 16050 3
## 16051 3
## 16052 3
## 16053 3
## 16054 3
## 16055 3
## 16056 3
## 16057 3
## 16058 3
## 16059 3
## 16060 3
## 16061 3
## 16062 3
## 16063 1
## 16064 3
## 16065 3
## 16066 3
## 16067 3
## 16068 3
## 16069 3
## 16070 3
## 16071 3
## 16072 3
## 16073 3
## 16074 3
## 16075 3
## 16076 3
## 16077 3
## 16078 3
## 16079 3
## 16080 3
## 16081 3
## 16082 3
## 16083 3
## 16084 3
## 16085 1
## 16086 3
## 16087 3
## 16088 3
## 16089 2
## 16090 3
## 16091 3
## 16092 3
## 16093 3
## 16094 3
## 16095 3
## 16096 2
## 16097 3
## 16098 3
## 16099 3
## 16100 3
## 16101 3
## 16102 3
## 16103 3
## 16104 3
## 16105 3
## 16106 3
## 16107 3
## 16108 3
## 16109 3
## 16110 3
## 16111 3
## 16112 3
## 16113 3
## 16114 3
## 16115 3
## 16116 3
## 16117 3
## 16118 3
## 16119 3
## 16120 3
## 16121 3
## 16122 3
## 16123 1
## 16124 3
## 16125 3
## 16126 3
## 16127 3
## 16128 3
## 16129 3
## 16130 3
## 16131 3
## 16132 3
## 16133 1
## 16134 3
## 16135 3
## 16136 3
## 16137 3
## 16138 3
## 16139 0
## 16140 3
## 16141 3
## 16142 3
## 16143 3
## 16144 3
## 16145 3
## 16146 3
## 16147 3
## 16148 3
## 16149 3
## 16150 3
## 16151 3
## 16152 3
## 16153 2
## 16154 3
## 16155 2
## 16156 1
## 16157 3
## 16158 3
## 16159 3
## 16160 3
## 16161 3
## 16162 3
## 16163 3
## 16164 3
## 16165 3
## 16166 3
## 16167 3
## 16168 3
## 16169 3
## 16170 3
## 16171 3
## 16172 3
## 16173 3
## 16174 3
## 16175 3
## 16176 3
## 16177 3
## 16178 3
## 16179 3
## 16180 3
## 16181 3
## 16182 3
## 16183 3
## 16184 3
## 16185 3
## 16186 3
## 16187 3
## 16188 3
## 16189 3
## 16190 3
## 16191 3
## 16192 3
## 16193 3
## 16194 3
## 16195 3
## 16196 3
## 16197 3
## 16198 3
## 16199 3
## 16200 3
## 16201 3
## 16202 3
## 16203 3
## 16204 3
## 16205 2
## 16206 3
## 16207 3
## 16208 3
## 16209 3
## 16210 3
## 16211 3
## 16212 3
## 16213 3
## 16214 3
## 16215 3
## 16216 3
## 16217 3
## 16218 3
## 16219 3
## 16220 3
## 16221 3
## 16222 3
## 16223 3
## 16224 3
## 16225 3
## 16226 3
## 16227 3
## 16228 3
## 16229 3
## 16230 3
## 16231 3
## 16232 3
## 16233 3
## 16234 3
## 16235 1
## 16236 3
## 16237 2
## 16238 3
## 16239 3
## 16240 3
## 16241 3
## 16242 3
## 16243 3
## 16244 3
## 16245 3
## 16246 3
## 16247 3
## 16248 3
## 16249 3
## 16250 3
## 16251 3
## 16252 3
## 16253 3
## 16254 3
## 16255 3
## 16256 3
## 16257 3
## 16258 2
## 16259 3
## 16260 2
## 16261 3
## 16262 3
## 16263 3
## 16264 3
## 16265 3
## 16266 3
## 16267 3
## 16268 3
## 16269 3
## 16270 3
## 16271 3
## 16272 3
## 16273 3
## 16274 3
## 16275 3
## 16276 3
## 16277 3
## 16278 3
## 16279 3
## 16280 3
## 16281 3
## 16282 3
## 16283 3
## 16284 3
## 16285 3
## 16286 1
## 16287 2
## 16288 3
## 16289 3
## 16290 3
## 16291 3
## 16292 3
## 16293 3
## 16294 3
## 16295 3
## 16296 3
## 16297 3
## 16298 3
## 16299 3
## 16300 3
## 16301 3
## 16302 3
## 16303 3
## 16304 3
## 16305 3
## 16306 3
## 16307 3
## 16308 3
## 16309 3
## 16310 3
## 16311 3
## 16312 3
## 16313 3
## 16314 1
## 16315 3
## 16316 3
## 16317 3
## 16318 3
## 16319 3
## 16320 3
## 16321 3
## 16322 3
## 16323 3
## 16324 3
## 16325 3
## 16326 3
## 16327 3
## 16328 3
## 16329 2
## 16330 3
## 16331 3
## 16332 3
## 16333 3
## 16334 3
## 16335 2
## 16336 3
## 16337 3
## 16338 3
## 16339 3
## 16340 3
## 16341 3
## 16342 3
## 16343 3
## 16344 3
## 16345 3
## 16346 3
## 16347 3
## 16348 3
## 16349 3
## 16350 2
## 16351 1
## 16352 2
## 16353 3
## 16354 3
## 16355 3
## 16356 3
## 16357 3
## 16358 3
## 16359 3
## 16360 3
## 16361 3
## 16362 3
## 16363 3
## 16364 3
## 16365 3
## 16366 3
## 16367 3
## 16368 3
## 16369 3
## 16370 3
## 16371 3
## 16372 3
## 16373 3
## 16374 2
## 16375 3
## 16376 3
## 16377 3
## 16378 3
## 16379 3
## 16380 3
## 16381 3
## 16382 2
## 16383 3
## 16384 3
## 16385 3
## 16386 3
## 16387 3
## 16388 3
## 16389 1
## 16390 3
## 16391 3
## 16392 3
## 16393 3
## 16394 3
## 16395 2
## 16396 1
## 16397 3
## 16398 3
## 16399 3
## 16400 3
## 16401 3
## 16402 3
## 16403 3
## 16404 3
## 16405 3
## 16406 3
## 16407 3
## 16408 3
## 16409 3
## 16410 3
## 16411 3
## 16412 3
## 16413 3
## 16414 3
## 16415 3
## 16416 3
## 16417 3
## 16418 3
## 16419 3
## 16420 3
## 16421 3
## 16422 3
## 16423 3
## 16424 3
## 16425 3
## 16426 3
## 16427 3
## 16428 0
## 16429 3
## 16430 3
## 16431 3
## 16432 2
## 16433 3
## 16434 3
## 16435 3
## 16436 3
## 16437 3
## 16438 3
## 16439 3
## 16440 3
## 16441 3
## 16442 3
## 16443 3
## 16444 3
## 16445 3
## 16446 3
## 16447 3
## 16448 3
## 16449 3
## 16450 3
## 16451 3
## 16452 3
## 16453 3
## 16454 3
## 16455 3
## 16456 3
## 16457 3
## 16458 3
## 16459 3
## 16460 3
## 16461 3
## 16462 3
## 16463 3
## 16464 3
## 16465 3
## 16466 3
## 16467 3
## 16468 3
## 16469 3
## 16470 3
## 16471 3
## 16472 3
## 16473 3
## 16474 3
## 16475 3
## 16476 3
## 16477 3
## 16478 3
## 16479 3
## 16480 2
## 16481 3
## 16482 3
## 16483 3
## 16484 3
## 16485 3
## 16486 3
## 16487 3
## 16488 3
## 16489 3
## 16490 3
## 16491 3
## 16492 2
## 16493 3
## 16494 3
## 16495 3
## 16496 3
## 16497 3
## 16498 3
## 16499 3
## 16500 3
## 16501 3
## 16502 3
## 16503 3
## 16504 3
## 16505 3
## 16506 3
## 16507 3
## 16508 3
## 16509 3
## 16510 3
## 16511 3
## 16512 3
## 16513 3
## 16514 3
## 16515 3
## 16516 3
## 16517 3
## 16518 3
## 16519 3
## 16520 3
## 16521 3
## 16522 3
## 16523 3
## 16524 3
## 16525 3
## 16526 3
## 16527 3
## 16528 3
## 16529 3
## 16530 3
## 16531 3
## 16532 3
## 16533 3
## 16534 3
## 16535 3
## 16536 3
## 16537 3
## 16538 2
## 16539 2
## 16540 3
## 16541 3
## 16542 3
## 16543 3
## 16544 3
## 16545 3
## 16546 3
## 16547 3
## 16548 3
## 16549 1
## 16550 3
## 16551 3
## 16552 2
## 16553 3
## 16554 3
## 16555 3
## 16556 3
## 16557 3
## 16558 3
## 16559 3
## 16560 3
## 16561 3
## 16562 3
## 16563 3
## 16564 3
## 16565 3
## 16566 3
## 16567 3
## 16568 3
## 16569 3
## 16570 3
## 16571 3
## 16572 1
## 16573 3
## 16574 3
## 16575 1
## 16576 0
## 16577 2
## 16578 3
## 16579 3
## 16580 3
## 16581 3
## 16582 3
## 16583 3
## 16584 3
## 16585 3
## 16586 3
## 16587 3
## 16588 3
## 16589 3
## 16590 3
## 16591 3
## 16592 3
## 16593 3
## 16594 3
## 16595 3
## 16596 3
## 16597 3
## 16598 3
## 16599 3
## 16600 3
## 16601 3
## 16602 3
## 16603 3
## 16604 3
## 16605 3
## 16606 3
## 16607 3
## 16608 2
## 16609 3
## 16610 3
## 16611 3
## 16612 3
## 16613 3
## 16614 3
## 16615 3
## 16616 3
## 16617 3
## 16618 3
## 16619 3
## 16620 2
## 16621 3
## 16622 3
## 16623 3
## 16624 3
## 16625 3
## 16626 3
## 16627 3
## 16628 3
## 16629 3
## 16630 3
## 16631 3
## 16632 3
## 16633 3
## 16634 3
## 16635 3
## 16636 3
## 16637 3
## 16638 3
## 16639 3
## 16640 3
## 16641 3
## 16642 3
## 16643 3
## 16644 3
## 16645 3
## 16646 3
## 16647 3
## 16648 3
## 16649 3
## 16650 3
## 16651 3
## 16652 3
## 16653 3
## 16654 3
## 16655 3
## 16656 3
## 16657 3
## 16658 3
## 16659 3
## 16660 3
## 16661 3
## 16662 3
## 16663 3
## 16664 3
## 16665 3
## 16666 3
## 16667 3
## 16668 3
## 16669 3
## 16670 3
## 16671 3
## 16672 3
## 16673 3
## 16674 3
## 16675 3
## 16676 3
## 16677 3
## 16678 3
## 16679 3
## 16680 3
## 16681 3
## 16682 3
## 16683 3
## 16684 3
## 16685 3
## 16686 3
## 16687 3
## 16688 3
## 16689 3
## 16690 3
## 16691 3
## 16692 3
## 16693 3
## 16694 1
## 16695 3
## 16696 3
## 16697 3
## 16698 3
## 16699 3
## 16700 3
## 16701 2
## 16702 3
## 16703 3
## 16704 3
## 16705 3
## 16706 3
## 16707 3
## 16708 3
## 16709 3
## 16710 3
## 16711 3
## 16712 3
## 16713 3
## 16714 3
## 16715 3
## 16716 3
## 16717 3
## 16718 3
## 16719 3
## 16720 3
## 16721 3
## 16722 3
## 16723 3
## 16724 3
## 16725 3
## 16726 3
## 16727 3
## 16728 1
## 16729 3
## 16730 3
## 16731 3
## 16732 2
## 16733 3
## 16734 3
## 16735 3
## 16736 3
## 16737 3
## 16738 3
## 16739 3
## 16740 3
## 16741 3
## 16742 3
## 16743 3
## 16744 1
## 16745 3
## 16746 3
## 16747 2
## 16748 3
## 16749 3
## 16750 3
## 16751 3
## 16752 3
## 16753 3
## 16754 3
## 16755 3
## 16756 1
## 16757 3
## 16758 3
## 16759 3
## 16760 3
## 16761 3
## 16762 3
## 16763 3
## 16764 3
## 16765 3
## 16766 3
## 16767 3
## 16768 3
## 16769 3
## 16770 3
## 16771 3
## 16772 3
## 16773 3
## 16774 3
## 16775 3
## 16776 3
## 16777 3
## 16778 3
## 16779 3
## 16780 3
## 16781 3
## 16782 3
## 16783 3
## 16784 3
## 16785 3
## 16786 3
## 16787 3
## 16788 3
## 16789 3
## 16790 3
## 16791 3
## 16792 3
## 16793 3
## 16794 3
## 16795 3
## 16796 3
## 16797 3
## 16798 3
## 16799 3
## 16800 3
## 16801 3
## 16802 3
## 16803 3
## 16804 3
## 16805 2
## 16806 3
## 16807 3
## 16808 3
## 16809 3
## 16810 3
## 16811 3
## 16812 3
## 16813 3
## 16814 3
## 16815 3
## 16816 3
## 16817 3
## 16818 3
## 16819 1
## 16820 3
## 16821 3
## 16822 3
## 16823 3
## 16824 3
## 16825 3
## 16826 3
## 16827 3
## 16828 3
## 16829 3
## 16830 3
## 16831 3
## 16832 3
## 16833 3
## 16834 3
## 16835 1
## 16836 3
## 16837 3
## 16838 3
## 16839 3
## 16840 3
## 16841 3
## 16842 3
## 16843 3
## 16844 3
## 16845 3
## 16846 3
## 16847 3
## 16848 1
## 16849 3
## 16850 1
## 16851 3
## 16852 3
## 16853 3
## 16854 3
## 16855 3
## 16856 3
## 16857 3
## 16858 3
## 16859 3
## 16860 3
## 16861 3
## 16862 3
## 16863 3
## 16864 3
## 16865 3
## 16866 3
## 16867 2
## 16868 3
## 16869 3
## 16870 3
## 16871 3
## 16872 3
## 16873 3
## 16874 3
## 16875 3
## 16876 3
## 16877 3
## 16878 3
## 16879 3
## 16880 3
## 16881 3
## 16882 3
## 16883 2
## 16884 3
## 16885 3
## 16886 3
## 16887 3
## 16888 3
## 16889 3
## 16890 3
## 16891 3
## 16892 3
## 16893 3
## 16894 3
## 16895 3
## 16896 3
## 16897 3
## 16898 3
## 16899 3
## 16900 3
## 16901 3
## 16902 3
## 16903 3
## 16904 3
## 16905 3
## 16906 3
## 16907 3
## 16908 3
## 16909 3
## 16910 3
## 16911 3
## 16912 3
## 16913 3
## 16914 0
## 16915 3
## 16916 3
## 16917 3
## 16918 3
## 16919 3
## 16920 3
## 16921 3
## 16922 3
## 16923 3
## 16924 3
## 16925 3
## 16926 3
## 16927 3
## 16928 3
## 16929 3
## 16930 3
## 16931 3
## 16932 0
## 16933 3
## 16934 3
## 16935 3
## 16936 3
## 16937 3
## 16938 3
## 16939 2
## 16940 3
## 16941 3
## 16942 3
## 16943 3
## 16944 3
## 16945 3
## 16946 3
## 16947 3
## 16948 3
## 16949 3
## 16950 3
## 16951 3
## 16952 3
## 16953 3
## 16954 3
## 16955 3
## 16956 3
## 16957 3
## 16958 3
## 16959 3
## 16960 3
## 16961 3
## 16962 3
## 16963 3
## 16964 3
## 16965 3
## 16966 3
## 16967 3
## 16968 3
## 16969 3
## 16970 3
## 16971 3
## 16972 3
## 16973 3
## 16974 3
## 16975 3
## 16976 3
## 16977 3
## 16978 3
## 16979 3
## 16980 3
## 16981 3
## 16982 3
## 16983 3
## 16984 3
## 16985 3
## 16986 3
## 16987 3
## 16988 3
## 16989 3
## 16990 3
## 16991 3
## 16992 3
## 16993 3
## 16994 3
## 16995 3
## 16996 3
## 16997 3
## 16998 3
## 16999 1
## 17000 3
## 17001 3
## 17002 3
## 17003 3
## 17004 3
## 17005 3
## 17006 3
## 17007 3
## 17008 3
## 17009 3
## 17010 3
## 17011 3
## 17012 3
## 17013 3
## 17014 3
## 17015 3
## 17016 3
## 17017 3
## 17018 3
## 17019 3
## 17020 1
## 17021 3
## 17022 3
## 17023 3
## 17024 3
## 17025 3
## 17026 3
## 17027 3
## 17028 3
## 17029 3
## 17030 1
## 17031 3
## 17032 3
## 17033 3
## 17034 3
## 17035 3
## 17036 3
## 17037 3
## 17038 3
## 17039 3
## 17040 3
## 17041 3
## 17042 3
## 17043 3
## 17044 3
## 17045 3
## 17046 3
## 17047 3
## 17048 3
## 17049 3
## 17050 3
## 17051 3
## 17052 3
## 17053 3
## 17054 3
## 17055 3
## 17056 3
## 17057 3
## 17058 3
## 17059 3
## 17060 3
## 17061 3
## 17062 3
## 17063 3
## 17064 3
## 17065 3
## 17066 3
## 17067 3
## 17068 3
## 17069 3
## 17070 3
## 17071 3
## 17072 3
## 17073 3
## 17074 3
## 17075 3
## 17076 3
## 17077 3
## 17078 3
## 17079 3
## 17080 3
## 17081 3
## 17082 3
## 17083 3
## 17084 3
## 17085 1
## 17086 3
## 17087 3
## 17088 3
## 17089 3
## 17090 3
## 17091 3
## 17092 3
## 17093 3
## 17094 3
## 17095 3
## 17096 3
## 17097 3
## 17098 3
## 17099 3
## 17100 3
## 17101 3
## 17102 3
## 17103 3
## 17104 3
## 17105 3
## 17106 3
## 17107 2
## 17108 3
## 17109 3
## 17110 3
## 17111 3
## 17112 3
## 17113 3
## 17114 3
## 17115 3
## 17116 3
## 17117 3
## 17118 3
## 17119 3
## 17120 3
## 17121 3
## 17122 3
## 17123 3
## 17124 3
## 17125 3
## 17126 1
## 17127 3
## 17128 3
## 17129 3
## 17130 3
## 17131 3
## 17132 3
## 17133 3
## 17134 3
## 17135 3
## 17136 3
## 17137 3
## 17138 3
## 17139 3
## 17140 3
## 17141 3
## 17142 3
## 17143 3
## 17144 3
## 17145 3
## 17146 3
## 17147 3
## 17148 3
## 17149 2
## 17150 3
## 17151 3
## 17152 3
## 17153 3
## 17154 3
## 17155 3
## 17156 3
## 17157 3
## 17158 3
## 17159 3
## 17160 3
## 17161 3
## 17162 3
## 17163 3
## 17164 3
## 17165 3
## 17166 3
## 17167 3
## 17168 3
## 17169 3
## 17170 3
## 17171 3
## 17172 3
## 17173 3
## 17174 3
## 17175 3
## 17176 3
## 17177 3
## 17178 3
## 17179 3
## 17180 3
## 17181 3
## 17182 0
## 17183 1
## 17184 3
## 17185 3
## 17186 3
## 17187 2
## 17188 3
## 17189 3
## 17190 3
## 17191 3
## 17192 3
## 17193 3
## 17194 3
## 17195 3
## 17196 3
## 17197 3
## 17198 3
## 17199 3
## 17200 3
## 17201 3
## 17202 3
## 17203 3
## 17204 3
## 17205 3
## 17206 3
## 17207 3
## 17208 3
## 17209 3
## 17210 1
## 17211 3
## 17212 3
## 17213 3
## 17214 3
## 17215 1
## 17216 3
## 17217 3
## 17218 3
## 17219 3
## 17220 3
## 17221 3
## 17222 3
## 17223 3
## 17224 3
## 17225 3
## 17226 2
## 17227 3
## 17228 3
## 17229 3
## 17230 3
## 17231 3
## 17232 3
## 17233 3
## 17234 3
## 17235 3
## 17236 3
## 17237 3
## 17238 1
## 17239 3
## 17240 3
## 17241 3
## 17242 3
## 17243 3
## 17244 3
## 17245 3
## 17246 3
## 17247 3
## 17248 3
## 17249 2
## 17250 3
## 17251 3
## 17252 3
## 17253 3
## 17254 3
## 17255 3
## 17256 3
## 17257 3
## 17258 3
## 17259 3
## 17260 3
## 17261 3
## 17262 2
## 17263 3
## 17264 3
## 17265 3
## 17266 3
## 17267 3
## 17268 3
## 17269 3
## 17270 3
## 17271 3
## 17272 3
## 17273 3
## 17274 3
## 17275 3
## 17276 3
## 17277 3
## 17278 3
## 17279 3
## 17280 3
## 17281 3
## 17282 3
## 17283 3
## 17284 3
## 17285 3
## 17286 3
## 17287 3
## 17288 3
## 17289 3
## 17290 3
## 17291 3
## 17292 3
## 17293 1
## 17294 3
## 17295 2
## 17296 3
## 17297 3
## 17298 3
## 17299 3
## 17300 3
## 17301 3
## 17302 3
## 17303 3
## 17304 3
## 17305 3
## 17306 3
## 17307 3
## 17308 2
## 17309 3
## 17310 2
## 17311 3
## 17312 3
## 17313 3
## 17314 2
## 17315 3
## 17316 3
## 17317 3
## 17318 3
## 17319 3
## 17320 3
## 17321 3
## 17322 3
## 17323 3
## 17324 3
## 17325 3
## 17326 3
## 17327 3
## 17328 3
## 17329 1
## 17330 3
## 17331 3
## 17332 3
## 17333 3
## 17334 3
## 17335 3
## 17336 3
## 17337 3
## 17338 3
## 17339 3
## 17340 3
## 17341 3
## 17342 3
## 17343 3
## 17344 3
## 17345 3
## 17346 3
## 17347 3
## 17348 3
## 17349 3
## 17350 3
## 17351 3
## 17352 3
## 17353 3
## 17354 3
## 17355 3
## 17356 3
## 17357 1
## 17358 3
## 17359 1
## 17360 3
## 17361 3
## 17362 3
## 17363 3
## 17364 3
## 17365 3
## 17366 3
## 17367 3
## 17368 3
## 17369 3
## 17370 3
## 17371 3
## 17372 3
## 17373 3
## 17374 3
## 17375 3
## 17376 3
## 17377 3
## 17378 3
## 17379 3
## 17380 3
## 17381 3
## 17382 3
## 17383 3
## 17384 3
## 17385 3
## 17386 3
## 17387 3
## 17388 3
## 17389 3
## 17390 3
## 17391 3
## 17392 3
## 17393 3
## 17394 3
## 17395 3
## 17396 2
## 17397 3
## 17398 3
## 17399 3
## 17400 3
## 17401 3
## 17402 3
## 17403 3
## 17404 3
## 17405 3
## 17406 3
## 17407 3
## 17408 3
## 17409 3
## 17410 3
## 17411 3
## 17412 3
## 17413 3
## 17414 3
## 17415 3
## 17416 3
## 17417 3
## 17418 3
## 17419 3
## 17420 3
## 17421 3
## 17422 3
## 17423 3
## 17424 3
## 17425 3
## 17426 3
## 17427 3
## 17428 3
## 17429 3
## 17430 3
## 17431 3
## 17432 3
## 17433 3
## 17434 3
## 17435 3
## 17436 3
## 17437 3
## 17438 3
## 17439 3
## 17440 3
## 17441 3
## 17442 3
## 17443 3
## 17444 3
## 17445 1
## 17446 3
## 17447 3
## 17448 3
## 17449 3
## 17450 3
## 17451 3
## 17452 3
## 17453 3
## 17454 3
## 17455 3
## 17456 3
## 17457 1
## 17458 3
## 17459 3
## 17460 3
## 17461 3
## 17462 3
## 17463 3
## 17464 3
## 17465 3
## 17466 3
## 17467 3
## 17468 3
## 17469 3
## 17470 3
## 17471 3
## 17472 3
## 17473 3
## 17474 3
## 17475 3
## 17476 3
## 17477 3
## 17478 3
## 17479 3
## 17480 3
## 17481 3
## 17482 3
## 17483 1
## 17484 3
## 17485 3
## 17486 3
## 17487 3
## 17488 3
## 17489 3
## 17490 3
## 17491 3
## 17492 3
## 17493 3
## 17494 3
## 17495 3
## 17496 3
## 17497 1
## 17498 3
## 17499 3
## 17500 3
## 17501 3
## 17502 3
## 17503 3
## 17504 3
## 17505 3
## 17506 3
## 17507 3
## 17508 3
## 17509 3
## 17510 3
## 17511 3
## 17512 3
## 17513 3
## 17514 3
## 17515 3
## 17516 3
## 17517 3
## 17518 3
## 17519 3
## 17520 3
## 17521 3
## 17522 3
## 17523 3
## 17524 3
## 17525 3
## 17526 3
## 17527 3
## 17528 3
## 17529 3
## 17530 3
## 17531 3
## 17532 3
## 17533 2
## 17534 3
## 17535 1
## 17536 3
## 17537 3
## 17538 3
## 17539 3
## 17540 3
## 17541 3
## 17542 3
## 17543 3
## 17544 3
## 17545 3
## 17546 3
## 17547 2
## 17548 3
## 17549 3
## 17550 3
## 17551 3
## 17552 2
## 17553 3
## 17554 3
## 17555 3
## 17556 3
## 17557 3
## 17558 3
## 17559 3
## 17560 3
## 17561 3
## 17562 3
## 17563 3
## 17564 3
## 17565 3
## 17566 3
## 17567 3
## 17568 3
## 17569 3
## 17570 3
## 17571 3
## 17572 3
## 17573 3
## 17574 3
## 17575 3
## 17576 3
## 17577 3
## 17578 3
## 17579 3
## 17580 3
## 17581 3
## 17582 3
## 17583 3
## 17584 3
## 17585 3
## 17586 3
## 17587 3
## 17588 3
## 17589 3
## 17590 3
## 17591 3
## 17592 1
## 17593 3
## 17594 3
## 17595 3
## 17596 3
## 17597 3
## 17598 3
## 17599 3
## 17600 3
## 17601 3
## 17602 3
## 17603 3
## 17604 3
## 17605 3
## 17606 3
## 17607 1
## 17608 3
## 17609 3
## 17610 3
## 17611 3
## 17612 0
## 17613 3
## 17614 3
## 17615 3
## 17616 3
## 17617 3
## 17618 3
## 17619 3
## 17620 3
## 17621 3
## 17622 3
## 17623 3
## 17624 3
## 17625 3
## 17626 3
## 17627 1
## 17628 3
## 17629 3
## 17630 2
## 17631 2
## 17632 3
## 17633 3
## 17634 3
## 17635 2
## 17636 3
## 17637 3
## 17638 3
## 17639 3
## 17640 3
## 17641 3
## 17642 3
## 17643 3
## 17644 3
## 17645 3
## 17646 3
## 17647 3
## 17648 3
## 17649 3
## 17650 3
## 17651 3
## 17652 3
## 17653 3
## 17654 3
## 17655 3
## 17656 3
## 17657 3
## 17658 3
## 17659 3
## 17660 3
## 17661 3
## 17662 2
## 17663 3
## 17664 3
## 17665 3
## 17666 3
## 17667 3
## 17668 3
## 17669 3
## 17670 1
## 17671 3
## 17672 3
## 17673 3
## 17674 3
## 17675 3
## 17676 3
## 17677 3
## 17678 3
## 17679 3
## 17680 3
## 17681 3
## 17682 3
## 17683 3
## 17684 3
## 17685 3
## 17686 3
## 17687 3
## 17688 3
## 17689 3
## 17690 3
## 17691 3
## 17692 3
## 17693 3
## 17694 3
## 17695 3
## 17696 1
## 17697 3
## 17698 3
## 17699 3
## 17700 3
## 17701 3
## 17702 3
## 17703 3
## 17704 3
## 17705 3
## 17706 3
## 17707 3
## 17708 2
## 17709 3
## 17710 3
## 17711 3
## 17712 3
## 17713 3
## 17714 3
## 17715 3
## 17716 3
## 17717 3
## 17718 3
## 17719 3
## 17720 3
## 17721 3
## 17722 3
## 17723 3
## 17724 3
## 17725 3
## 17726 3
## 17727 3
## 17728 3
## 17729 3
## 17730 3
## 17731 3
## 17732 3
## 17733 3
## 17734 1
## 17735 3
## 17736 3
## 17737 3
## 17738 3
## 17739 3
## 17740 3
## 17741 3
## 17742 3
## 17743 3
## 17744 3
## 17745 3
## 17746 3
## 17747 3
## 17748 3
## 17749 3
## 17750 3
## 17751 3
## 17752 3
## 17753 2
## 17754 3
## 17755 3
## 17756 0
## 17757 3
## 17758 3
## 17759 3
## 17760 3
## 17761 3
## 17762 3
## 17763 3
## 17764 3
## 17765 3
## 17766 3
## 17767 3
## 17768 3
## 17769 3
## 17770 3
## 17771 3
## 17772 3
## 17773 3
## 17774 3
## 17775 3
## 17776 3
## 17777 3
## 17778 3
## 17779 0
## 17780 3
## 17781 3
## 17782 3
## 17783 3
## 17784 3
## 17785 3
## 17786 3
## 17787 3
## 17788 3
## 17789 3
## 17790 3
## 17791 3
## 17792 3
## 17793 3
## 17794 3
## 17795 2
## 17796 3
## 17797 3
## 17798 3
## 17799 3
## 17800 3
## 17801 3
## 17802 3
## 17803 3
## 17804 3
## 17805 3
## 17806 3
## 17807 3
## 17808 3
## 17809 3
## 17810 3
## 17811 3
## 17812 3
## 17813 3
## 17814 3
## 17815 3
## 17816 3
## 17817 3
## 17818 3
## 17819 3
## 17820 3
## 17821 3
## 17822 3
## 17823 3
## 17824 3
## 17825 3
## 17826 3
## 17827 3
## 17828 3
## 17829 3
## 17830 3
## 17831 3
## 17832 3
## 17833 3
## 17834 2
## 17835 3
## 17836 3
## 17837 3
## 17838 3
## 17839 3
## 17840 3
## 17841 3
## 17842 2
## 17843 3
## 17844 3
## 17845 3
## 17846 3
## 17847 1
## 17848 3
## 17849 3
## 17850 3
## 17851 3
## 17852 3
## 17853 3
## 17854 3
## 17855 1
## 17856 3
## 17857 2
## 17858 3
## 17859 3
## 17860 3
## 17861 3
## 17862 3
## 17863 3
## 17864 3
## 17865 3
## 17866 2
## 17867 3
## 17868 3
## 17869 3
## 17870 3
## 17871 3
## 17872 3
## 17873 3
## 17874 3
## 17875 3
## 17876 3
## 17877 3
## 17878 3
## 17879 3
## 17880 3
## 17881 3
## 17882 3
## 17883 3
## 17884 3
## 17885 3
## 17886 3
## 17887 3
## 17888 3
## 17889 3
## 17890 3
## 17891 3
## 17892 3
## 17893 3
## 17894 3
## 17895 3
## 17896 3
## 17897 3
## 17898 3
## 17899 3
## 17900 3
## 17901 3
## 17902 3
## 17903 3
## 17904 3
## 17905 3
## 17906 1
## 17907 3
## 17908 3
## 17909 3
## 17910 3
## 17911 3
## 17912 3
## 17913 3
## 17914 3
## 17915 3
## 17916 3
## 17917 1
## 17918 3
## 17919 3
## 17920 3
## 17921 3
## 17922 2
## 17923 3
## 17924 3
## 17925 3
## 17926 3
## 17927 3
## 17928 3
## 17929 3
## 17930 3
## 17931 3
## 17932 3
## 17933 3
## 17934 3
## 17935 3
## 17936 3
## 17937 3
## 17938 3
## 17939 3
## 17940 3
## 17941 3
## 17942 2
## 17943 3
## 17944 3
## 17945 3
## 17946 3
## 17947 3
## 17948 1
## 17949 3
## 17950 3
## 17951 3
## 17952 3
## 17953 3
## 17954 3
## 17955 3
## 17956 3
## 17957 3
## 17958 3
## 17959 3
## 17960 3
## 17961 3
## 17962 3
## 17963 3
## 17964 3
## 17965 3
## 17966 3
## 17967 3
## 17968 3
## 17969 3
## 17970 3
## 17971 3
## 17972 3
## 17973 3
## 17974 3
## 17975 3
## 17976 3
## 17977 3
## 17978 3
## 17979 3
## 17980 3
## 17981 3
## 17982 3
## 17983 3
## 17984 3
## 17985 3
## 17986 3
## 17987 3
## 17988 3
## 17989 3
## 17990 3
## 17991 3
## 17992 3
## 17993 3
## 17994 3
## 17995 3
## 17996 3
## 17997 3
## 17998 3
## 17999 3
## 18000 3
## 18001 3
## 18002 3
## 18003 3
## 18004 3
## 18005 2
## 18006 3
## 18007 2
## 18008 3
## 18009 3
## 18010 3
## 18011 3
## 18012 3
## 18013 3
## 18014 3
## 18015 3
## 18016 3
## 18017 2
## 18018 3
## 18019 3
## 18020 3
## 18021 3
## 18022 3
## 18023 3
## 18024 3
## 18025 2
## 18026 3
## 18027 3
## 18028 2
## 18029 2
## 18030 3
## 18031 3
## 18032 3
## 18033 3
## 18034 3
## 18035 3
## 18036 3
## 18037 3
## 18038 3
## 18039 3
## 18040 3
## 18041 3
## 18042 3
## 18043 3
## 18044 3
## 18045 3
## 18046 3
## 18047 3
## 18048 3
## 18049 3
## 18050 3
## 18051 3
## 18052 3
## 18053 3
## 18054 1
## 18055 3
## 18056 3
## 18057 3
## 18058 3
## 18059 3
## 18060 3
## 18061 3
## 18062 3
## 18063 3
## 18064 3
## 18065 3
## 18066 3
## 18067 3
## 18068 3
## 18069 3
## 18070 3
## 18071 3
## 18072 3
## 18073 3
## 18074 3
## 18075 3
## 18076 3
## 18077 3
## 18078 3
## 18079 3
## 18080 3
## 18081 3
## 18082 3
## 18083 3
## 18084 3
## 18085 3
## 18086 3
## 18087 3
## 18088 2
## 18089 3
## 18090 3
## 18091 3
## 18092 3
## 18093 3
## 18094 3
## 18095 3
## 18096 3
## 18097 3
## 18098 3
## 18099 3
## 18100 3
## 18101 3
## 18102 3
## 18103 3
## 18104 3
## 18105 3
## 18106 2
## 18107 1
## 18108 3
## 18109 3
## 18110 1
## 18111 3
## 18112 3
## 18113 3
## 18114 3
## 18115 3
## 18116 3
## 18117 3
## 18118 3
## 18119 3
## 18120 1
## 18121 3
## 18122 3
## 18123 3
## 18124 3
## 18125 3
## 18126 3
## 18127 3
## 18128 3
## 18129 3
## 18130 3
## 18131 3
## 18132 3
## 18133 3
## 18134 3
## 18135 3
## 18136 3
## 18137 3
## 18138 3
## 18139 3
## 18140 3
## 18141 3
## 18142 1
## 18143 3
## 18144 3
## 18145 3
## 18146 3
## 18147 3
## 18148 3
## 18149 3
## 18150 3
## 18151 3
## 18152 3
## 18153 3
## 18154 3
## 18155 3
## 18156 3
## 18157 3
## 18158 3
## 18159 3
## 18160 3
## 18161 3
## 18162 3
## 18163 3
## 18164 3
## 18165 3
## 18166 3
## 18167 3
## 18168 3
## 18169 3
## 18170 3
## 18171 3
## 18172 3
## 18173 0
## 18174 3
## 18175 3
## 18176 3
## 18177 3
## 18178 3
## 18179 3
## 18180 3
## 18181 3
## 18182 3
## 18183 3
## 18184 3
## 18185 3
## 18186 3
## 18187 3
## 18188 3
## 18189 3
## 18190 3
## 18191 3
## 18192 3
## 18193 3
## 18194 3
## 18195 3
## 18196 3
## 18197 3
## 18198 3
## 18199 3
## 18200 3
## 18201 3
## 18202 3
## 18203 2
## 18204 2
## 18205 3
## 18206 3
## 18207 3
## 18208 3
## 18209 3
## 18210 3
## 18211 3
## 18212 3
## 18213 3
## 18214 3
## 18215 3
## 18216 3
## 18217 3
## 18218 3
## 18219 2
## 18220 3
## 18221 3
## 18222 3
## 18223 3
## 18224 3
## 18225 3
## 18226 2
## 18227 3
## 18228 3
## 18229 3
## 18230 2
## 18231 3
## 18232 3
## 18233 3
## 18234 3
## 18235 3
## 18236 3
## 18237 3
## 18238 3
## 18239 3
## 18240 3
## 18241 3
## 18242 3
## 18243 3
## 18244 3
## 18245 3
## 18246 3
## 18247 3
## 18248 3
## 18249 3
## 18250 3
## 18251 3
## 18252 3
## 18253 3
## 18254 3
## 18255 3
## 18256 3
## 18257 3
## 18258 3
## 18259 3
## 18260 3
## 18261 3
## 18262 3
## 18263 3
## 18264 3
## 18265 3
## 18266 3
## 18267 1
## 18268 3
## 18269 3
## 18270 3
## 18271 3
## 18272 3
## 18273 3
## 18274 3
## 18275 3
## 18276 3
## 18277 3
## 18278 3
## 18279 3
## 18280 3
## 18281 3
## 18282 3
## 18283 3
## 18284 3
## 18285 3
## 18286 3
## 18287 3
## 18288 3
## 18289 3
## 18290 3
## 18291 3
## 18292 3
## 18293 3
## 18294 3
## 18295 3
## 18296 3
## 18297 3
## 18298 3
## 18299 3
## 18300 3
## 18301 3
## 18302 3
## 18303 3
## 18304 3
## 18305 3
## 18306 3
## 18307 3
## 18308 3
## 18309 3
## 18310 3
## 18311 3
## 18312 3
## 18313 3
## 18314 3
## 18315 3
## 18316 3
## 18317 3
## 18318 3
## 18319 3
## 18320 3
## 18321 3
## 18322 3
## 18323 3
## 18324 3
## 18325 3
## 18326 3
## 18327 3
## 18328 3
## 18329 3
## 18330 1
## 18331 3
## 18332 3
## 18333 3
## 18334 3
## 18335 2
## 18336 3
## 18337 3
## 18338 3
## 18339 3
## 18340 3
## 18341 3
## 18342 3
## 18343 3
## 18344 3
## 18345 3
## 18346 3
## 18347 3
## 18348 3
## 18349 3
## 18350 3
## 18351 3
## 18352 3
## 18353 3
## 18354 3
## 18355 3
## 18356 3
## 18357 3
## 18358 3
## 18359 3
## 18360 3
## 18361 3
## 18362 3
## 18363 3
## 18364 3
## 18365 3
## 18366 3
## 18367 3
## 18368 3
## 18369 3
## 18370 3
## 18371 1
## 18372 3
## 18373 3
## 18374 3
## 18375 3
## 18376 3
## 18377 3
## 18378 3
## 18379 2
## 18380 3
## 18381 3
## 18382 3
## 18383 3
## 18384 3
## 18385 2
## 18386 3
## 18387 3
## 18388 3
## 18389 3
## 18390 3
## 18391 3
## 18392 1
## 18393 3
## 18394 3
## 18395 3
## 18396 3
## 18397 1
## 18398 3
## 18399 3
## 18400 3
## 18401 3
## 18402 3
## 18403 3
## 18404 3
## 18405 3
## 18406 3
## 18407 3
## 18408 3
## 18409 3
## 18410 3
## 18411 3
## 18412 3
## 18413 1
## 18414 3
## 18415 3
## 18416 3
## 18417 3
## 18418 3
## 18419 3
## 18420 3
## 18421 3
## 18422 3
## 18423 3
## 18424 3
## 18425 3
## 18426 2
## 18427 3
## 18428 3
## 18429 3
## 18430 3
## 18431 3
## 18432 3
## 18433 3
## 18434 3
## 18435 1
## 18436 3
## 18437 3
## 18438 3
## 18439 3
## 18440 3
## 18441 3
## 18442 3
## 18443 3
## 18444 3
## 18445 3
## 18446 3
## 18447 3
## 18448 3
## 18449 3
## 18450 3
## 18451 2
## 18452 3
## 18453 3
## 18454 3
## 18455 3
## 18456 3
## 18457 3
## 18458 1
## 18459 3
## 18460 3
## 18461 3
## 18462 3
## 18463 3
## 18464 3
## 18465 3
## 18466 3
## 18467 3
## 18468 3
## 18469 3
## 18470 3
## 18471 3
## 18472 2
## 18473 3
## 18474 3
## 18475 3
## 18476 3
## 18477 3
## 18478 3
## 18479 3
## 18480 3
## 18481 3
## 18482 3
## 18483 3
## 18484 3
## 18485 3
## 18486 3
## 18487 3
## 18488 3
## 18489 3
## 18490 3
## 18491 3
## 18492 3
## 18493 3
## 18494 3
## 18495 3
## 18496 2
## 18497 3
## 18498 3
## 18499 3
## 18500 3
## 18501 3
## 18502 3
## 18503 3
## 18504 3
## 18505 3
## 18506 3
## 18507 3
## 18508 3
## 18509 3
## 18510 3
## 18511 3
## 18512 3
## 18513 3
## 18514 3
## 18515 3
## 18516 3
## 18517 3
## 18518 3
## 18519 3
## 18520 3
## 18521 3
## 18522 3
## 18523 3
## 18524 1
## 18525 3
## 18526 3
## 18527 3
## 18528 3
## 18529 3
## 18530 3
## 18531 3
## 18532 3
## 18533 3
## 18534 3
## 18535 3
## 18536 3
## 18537 3
## 18538 3
## 18539 3
## 18540 3
## 18541 3
## 18542 3
## 18543 3
## 18544 3
## 18545 3
## 18546 3
## 18547 3
## 18548 3
## 18549 3
## 18550 3
## 18551 3
## 18552 3
## 18553 3
## 18554 3
## 18555 3
## 18556 3
## 18557 3
## 18558 3
## 18559 3
## 18560 3
## 18561 3
## 18562 3
## 18563 3
## 18564 3
## 18565 3
## 18566 3
## 18567 3
## 18568 3
## 18569 3
## 18570 3
## 18571 3
## 18572 3
## 18573 3
## 18574 3
## 18575 3
## 18576 3
## 18577 3
## 18578 3
## 18579 3
## 18580 3
## 18581 3
## 18582 3
## 18583 3
## 18584 3
## 18585 3
## 18586 3
## 18587 3
## 18588 3
## 18589 3
## 18590 3
## 18591 3
## 18592 3
## 18593 3
## 18594 3
## 18595 3
## 18596 3
## 18597 3
## 18598 3
## 18599 3
## 18600 3
## 18601 3
## 18602 3
## 18603 3
## 18604 3
## 18605 3
## 18606 3
## 18607 3
## 18608 3
## 18609 3
## 18610 3
## 18611 3
## 18612 1
## 18613 3
## 18614 3
## 18615 2
## 18616 3
## 18617 3
## 18618 3
## 18619 3
## 18620 2
## 18621 3
## 18622 3
## 18623 0
## 18624 3
## 18625 3
## 18626 3
## 18627 3
## 18628 3
## 18629 3
## 18630 3
## 18631 3
## 18632 3
## 18633 3
## 18634 3
## 18635 3
## 18636 3
## 18637 3
## 18638 3
## 18639 3
## 18640 3
## 18641 3
## 18642 3
## 18643 3
## 18644 3
## 18645 3
## 18646 3
## 18647 3
## 18648 3
## 18649 3
## 18650 3
## 18651 3
## 18652 3
## 18653 3
## 18654 3
## 18655 3
## 18656 3
## 18657 3
## 18658 3
## 18659 3
## 18660 3
## 18661 2
## 18662 3
## 18663 2
## 18664 3
## 18665 3
## 18666 3
## 18667 3
## 18668 3
## 18669 3
## 18670 3
## 18671 3
## 18672 3
## 18673 3
## 18674 3
## 18675 3
## 18676 3
## 18677 3
## 18678 1
## 18679 3
## 18680 3
## 18681 3
## 18682 3
## 18683 3
## 18684 3
## 18685 3
## 18686 3
## 18687 3
## 18688 3
## 18689 3
## 18690 2
## 18691 3
## 18692 3
## 18693 3
## 18694 3
## 18695 3
## 18696 3
## 18697 3
## 18698 3
## 18699 3
## 18700 3
## 18701 3
## 18702 3
## 18703 3
## 18704 3
## 18705 3
## 18706 3
## 18707 3
## 18708 3
## 18709 3
## 18710 3
## 18711 3
## 18712 3
## 18713 3
## 18714 3
## 18715 3
## 18716 3
## 18717 3
## 18718 3
## 18719 3
## 18720 3
## 18721 3
## 18722 3
## 18723 3
## 18724 3
## 18725 3
## 18726 3
## 18727 3
## 18728 3
## 18729 3
## 18730 2
## 18731 3
## 18732 3
## 18733 3
## 18734 3
## 18735 3
## 18736 3
## 18737 3
## 18738 3
## 18739 3
## 18740 3
## 18741 3
## 18742 3
## 18743 2
## 18744 3
## 18745 3
## 18746 2
## 18747 3
## 18748 3
## 18749 3
## 18750 3
## 18751 3
## 18752 3
## 18753 2
## 18754 3
## 18755 3
## 18756 3
## 18757 3
## 18758 3
## 18759 3
## 18760 3
## 18761 3
## 18762 3
## 18763 3
## 18764 3
## 18765 3
## 18766 3
## 18767 3
## 18768 3
## 18769 3
## 18770 3
## 18771 3
## 18772 3
## 18773 2
## 18774 3
## 18775 3
## 18776 3
## 18777 2
## 18778 3
## 18779 3
## 18780 3
## 18781 3
## 18782 3
## 18783 3
## 18784 3
## 18785 3
## 18786 3
## 18787 3
## 18788 1
## 18789 3
## 18790 3
## 18791 3
## 18792 3
## 18793 3
## 18794 3
## 18795 3
## 18796 3
## 18797 3
## 18798 3
## 18799 3
## 18800 3
## 18801 3
## 18802 3
## 18803 3
## 18804 3
## 18805 3
## 18806 3
## 18807 3
## 18808 3
## 18809 3
## 18810 3
## 18811 3
## 18812 3
## 18813 3
## 18814 3
## 18815 3
## 18816 3
## 18817 3
## 18818 3
## 18819 3
## 18820 3
## 18821 3
## 18822 3
## 18823 3
## 18824 3
## 18825 3
## 18826 3
## 18827 3
## 18828 3
## 18829 3
## 18830 3
## 18831 3
## 18832 3
## 18833 3
## 18834 3
## 18835 3
## 18836 3
## 18837 3
## 18838 3
## 18839 3
## 18840 3
## 18841 3
## 18842 3
## 18843 3
## 18844 3
## 18845 3
## 18846 3
## 18847 3
## 18848 3
## 18849 3
## 18850 3
## 18851 3
## 18852 3
## 18853 3
## 18854 3
## 18855 3
## 18856 3
## 18857 3
## 18858 3
## 18859 3
## 18860 3
## 18861 3
## 18862 3
## 18863 3
## 18864 3
## 18865 3
## 18866 3
## 18867 3
## 18868 3
## 18869 3
## 18870 3
## 18871 3
## 18872 3
## 18873 3
## 18874 3
## 18875 3
## 18876 3
## 18877 3
## 18878 3
## 18879 3
## 18880 3
## 18881 3
## 18882 3
## 18883 3
## 18884 3
## 18885 3
## 18886 3
## 18887 3
## 18888 3
## 18889 3
## 18890 3
## 18891 3
## 18892 3
## 18893 3
## 18894 3
## 18895 3
## 18896 3
## 18897 3
## 18898 3
## 18899 3
## 18900 3
## 18901 3
## 18902 3
## 18903 3
## 18904 3
## 18905 3
## 18906 2
## 18907 3
## 18908 2
## 18909 3
## 18910 3
## 18911 3
## 18912 3
## 18913 3
## 18914 3
## 18915 3
## 18916 3
## 18917 3
## 18918 3
## 18919 3
## 18920 3
## 18921 3
## 18922 3
## 18923 3
## 18924 3
## 18925 3
## 18926 3
## 18927 3
## 18928 3
## 18929 3
## 18930 3
## 18931 3
## 18932 3
## 18933 3
## 18934 3
## 18935 3
## 18936 3
## 18937 3
## 18938 3
## 18939 2
## 18940 3
## 18941 3
## 18942 3
## 18943 3
## 18944 3
## 18945 3
## 18946 3
## 18947 3
## 18948 3
## 18949 3
## 18950 3
## 18951 3
## 18952 3
## 18953 3
## 18954 3
## 18955 3
## 18956 1
## 18957 3
## 18958 3
## 18959 3
## 18960 3
## 18961 3
## 18962 2
## 18963 3
## 18964 3
## 18965 3
## 18966 3
## 18967 3
## 18968 3
## 18969 3
## 18970 3
## 18971 3
## 18972 3
## 18973 3
## 18974 3
## 18975 3
## 18976 3
## 18977 2
## 18978 3
## 18979 3
## 18980 3
## 18981 3
## 18982 3
## 18983 3
## 18984 3
## 18985 3
## 18986 3
## 18987 3
## 18988 3
## 18989 3
## 18990 3
## 18991 3
## 18992 3
## 18993 3
## 18994 3
## 18995 3
## 18996 3
## 18997 3
## 18998 3
## 18999 3
## 19000 3
## 19001 3
## 19002 3
## 19003 3
## 19004 3
## 19005 3
## 19006 3
## 19007 3
## 19008 3
## 19009 3
## 19010 3
## 19011 3
## 19012 3
## 19013 3
## 19014 3
## 19015 3
## 19016 3
## 19017 3
## 19018 3
## 19019 3
## 19020 3
## 19021 3
## 19022 3
## 19023 3
## 19024 3
## 19025 3
## 19026 3
## 19027 3
## 19028 3
## 19029 3
## 19030 3
## 19031 3
## 19032 3
## 19033 3
## 19034 3
## 19035 3
## 19036 3
## 19037 3
## 19038 3
## 19039 3
## 19040 3
## 19041 3
## 19042 3
## 19043 3
## 19044 3
## 19045 3
## 19046 3
## 19047 3
## 19048 3
## 19049 3
## 19050 3
## 19051 3
## 19052 3
## 19053 3
## 19054 3
## 19055 3
## 19056 3
## 19057 3
## 19058 3
## 19059 3
## 19060 3
## 19061 3
## 19062 3
## 19063 3
## 19064 3
## 19065 3
## 19066 3
## 19067 3
## 19068 3
## 19069 3
## 19070 3
## 19071 3
## 19072 3
## 19073 3
## 19074 3
## 19075 3
## 19076 3
## 19077 3
## 19078 3
## 19079 3
## 19080 3
## 19081 3
## 19082 3
## 19083 3
## 19084 3
## 19085 3
## 19086 3
## 19087 3
## 19088 3
## 19089 3
## 19090 3
## 19091 3
## 19092 3
## 19093 3
## 19094 3
## 19095 3
## 19096 3
## 19097 3
## 19098 3
## 19099 3
## 19100 3
## 19101 3
## 19102 3
## 19103 2
## 19104 3
## 19105 3
## 19106 3
## 19107 3
## 19108 1
## 19109 3
## 19110 3
## 19111 1
## 19112 3
## 19113 3
## 19114 3
## 19115 3
## 19116 3
## 19117 3
## 19118 3
## 19119 3
## 19120 3
## 19121 3
## 19122 3
## 19123 3
## 19124 3
## 19125 3
## 19126 3
## 19127 3
## 19128 3
## 19129 3
## 19130 3
## 19131 3
## 19132 3
## 19133 3
## 19134 3
## 19135 3
## 19136 3
## 19137 3
## 19138 3
## 19139 3
## 19140 3
## 19141 3
## 19142 3
## 19143 3
## 19144 3
## 19145 3
## 19146 3
## 19147 3
## 19148 3
## 19149 3
## 19150 3
## 19151 3
## 19152 3
## 19153 3
## 19154 3
## 19155 3
## 19156 3
## 19157 3
## 19158 3
## 19159 3
## 19160 3
## 19161 3
## 19162 3
## 19163 3
## 19164 3
## 19165 3
## 19166 3
## 19167 3
## 19168 3
## 19169 3
## 19170 3
## 19171 3
## 19172 3
## 19173 3
## 19174 3
## 19175 2
## 19176 3
## 19177 3
## 19178 3
## 19179 3
## 19180 3
## 19181 3
## 19182 3
## 19183 3
## 19184 3
## 19185 3
## 19186 3
## 19187 3
## 19188 3
## 19189 3
## 19190 3
## 19191 3
## 19192 3
## 19193 3
## 19194 3
## 19195 3
## 19196 3
## 19197 3
## 19198 3
## 19199 3
## 19200 3
## 19201 3
## 19202 3
## 19203 3
## 19204 3
## 19205 3
## 19206 3
## 19207 2
## 19208 3
## 19209 3
## 19210 3
## 19211 3
## 19212 3
## 19213 3
## 19214 3
## 19215 3
## 19216 3
## 19217 3
## 19218 3
## 19219 3
## 19220 3
## 19221 3
## 19222 3
## 19223 3
## 19224 3
## 19225 3
## 19226 3
## 19227 1
## 19228 3
## 19229 3
## 19230 3
## 19231 2
## 19232 3
## 19233 3
## 19234 3
## 19235 3
## 19236 3
## 19237 3
## 19238 3
## 19239 3
## 19240 3
## 19241 3
## 19242 3
## 19243 3
## 19244 3
## 19245 2
## 19246 3
## 19247 3
## 19248 3
## 19249 3
## 19250 3
## 19251 3
## 19252 3
## 19253 3
## 19254 3
## 19255 3
## 19256 3
## 19257 3
## 19258 3
## 19259 3
## 19260 3
## 19261 3
## 19262 3
## 19263 3
## 19264 3
## 19265 3
## 19266 3
## 19267 3
## 19268 3
## 19269 3
## 19270 3
## 19271 3
## 19272 2
## 19273 3
## 19274 3
## 19275 3
## 19276 3
## 19277 3
## 19278 3
## 19279 3
## 19280 3
## 19281 3
## 19282 3
## 19283 3
## 19284 3
## 19285 3
## 19286 3
## 19287 3
## 19288 3
## 19289 3
## 19290 3
## 19291 3
## 19292 3
## 19293 3
## 19294 3
## 19295 3
## 19296 3
## 19297 3
## 19298 3
## 19299 2
## 19300 3
## 19301 3
## 19302 3
## 19303 3
## 19304 3
## 19305 3
## 19306 3
## 19307 3
## 19308 3
## 19309 3
## 19310 3
## 19311 3
## 19312 3
## 19313 3
## 19314 3
## 19315 3
## 19316 3
## 19317 3
## 19318 3
## 19319 3
## 19320 3
## 19321 3
## 19322 3
## 19323 2
## 19324 3
## 19325 3
## 19326 3
## 19327 3
## 19328 3
## 19329 3
## 19330 3
## 19331 3
## 19332 3
## 19333 3
## 19334 3
## 19335 0
## 19336 3
## 19337 3
## 19338 3
## 19339 0
## 19340 3
## 19341 3
## 19342 3
## 19343 3
## 19344 3
## 19345 3
## 19346 3
## 19347 3
## 19348 3
## 19349 3
## 19350 3
## 19351 3
## 19352 3
## 19353 3
## 19354 3
## 19355 3
## 19356 3
## 19357 3
## 19358 3
## 19359 3
## 19360 3
## 19361 3
## 19362 3
## 19363 3
## 19364 3
## 19365 3
## 19366 3
## 19367 3
## 19368 3
## 19369 3
## 19370 3
## 19371 3
## 19372 3
## 19373 3
## 19374 3
## 19375 3
## 19376 3
## 19377 3
## 19378 3
## 19379 3
## 19380 0
## 19381 3
## 19382 3
## 19383 3
## 19384 3
## 19385 3
## 19386 3
## 19387 3
## 19388 3
## 19389 3
## 19390 3
## 19391 3
## 19392 3
## 19393 3
## 19394 3
## 19395 3
## 19396 3
## 19397 3
## 19398 3
## 19399 3
## 19400 3
## 19401 3
## 19402 3
## 19403 3
## 19404 3
## 19405 3
## 19406 3
## 19407 3
## 19408 3
## 19409 3
## 19410 3
## 19411 3
## 19412 3
## 19413 0
## 19414 3
## 19415 3
## 19416 3
## 19417 3
## 19418 3
## 19419 3
## 19420 3
## 19421 3
## 19422 3
## 19423 3
## 19424 3
## 19425 3
## 19426 3
## 19427 3
## 19428 3
## 19429 3
## 19430 3
## 19431 1
## 19432 3
## 19433 3
## 19434 3
## 19435 3
## 19436 1
## 19437 3
## 19438 3
## 19439 3
## 19440 3
## 19441 3
## 19442 3
## 19443 3
## 19444 3
## 19445 0
## 19446 3
## 19447 3
## 19448 3
## 19449 3
## 19450 3
## 19451 3
## 19452 3
## 19453 2
## 19454 3
## 19455 3
## 19456 3
## 19457 3
## 19458 3
## 19459 3
## 19460 3
## 19461 3
## 19462 3
## 19463 3
## 19464 3
## 19465 3
## 19466 3
## 19467 3
## 19468 3
## 19469 3
## 19470 3
## 19471 3
## 19472 3
## 19473 3
## 19474 3
## 19475 3
## 19476 3
## 19477 3
## 19478 2
## 19479 2
## 19480 3
## 19481 3
## 19482 3
## 19483 3
## 19484 3
## 19485 3
## 19486 1
## 19487 2
## 19488 3
## 19489 3
## 19490 3
## 19491 3
## 19492 3
## 19493 3
## 19494 1
## 19495 3
## 19496 3
## 19497 3
## 19498 3
## 19499 3
## 19500 3
## 19501 3
## 19502 3
## 19503 3
## 19504 3
## 19505 3
## 19506 3
## 19507 3
## 19508 3
## 19509 3
## 19510 3
## 19511 1
## 19512 3
## 19513 2
## 19514 1
## 19515 3
## 19516 3
## 19517 3
## 19518 3
## 19519 3
## 19520 3
## 19521 3
## 19522 3
## 19523 3
## 19524 3
## 19525 3
## 19526 3
## 19527 3
## 19528 3
## 19529 3
## 19530 3
## 19531 3
## 19532 3
## 19533 3
## 19534 3
## 19535 3
## 19536 3
## 19537 3
## 19538 3
## 19539 3
## 19540 3
## 19541 3
## 19542 3
## 19543 3
## 19544 1
## 19545 3
## 19546 3
## 19547 3
## 19548 3
## 19549 3
## 19550 3
## 19551 3
## 19552 3
## 19553 3
## 19554 3
## 19555 1
## 19556 3
## 19557 3
## 19558 3
## 19559 3
## 19560 3
## 19561 3
## 19562 3
## 19563 3
## 19564 3
## 19565 3
## 19566 2
## 19567 3
## 19568 3
## 19569 3
## 19570 3
## 19571 3
## 19572 3
## 19573 2
## 19574 3
## 19575 3
## 19576 3
## 19577 3
## 19578 3
## 19579 3
## 19580 3
## 19581 3
## 19582 3
## 19583 3
## 19584 3
## 19585 3
## 19586 3
## 19587 3
## 19588 3
## 19589 3
## 19590 3
## 19591 3
## 19592 2
## 19593 3
## 19594 3
## 19595 3
## 19596 3
## 19597 3
## 19598 3
## 19599 3
## 19600 2
## 19601 3
## 19602 2
## 19603 3
## 19604 3
## 19605 3
## 19606 3
## 19607 3
## 19608 3
## 19609 3
## 19610 3
## 19611 3
## 19612 3
## 19613 2
## 19614 3
## 19615 3
## 19616 3
## 19617 3
## 19618 3
## 19619 3
## 19620 3
## 19621 3
## 19622 3
## 19623 3
## 19624 3
## 19625 3
## 19626 3
## 19627 3
## 19628 3
## 19629 3
## 19630 3
## 19631 3
## 19632 3
## 19633 3
## 19634 3
## 19635 3
## 19636 3
## 19637 3
## 19638 3
## 19639 3
## 19640 3
## 19641 3
## 19642 3
## 19643 3
## 19644 3
## 19645 3
## 19646 3
## 19647 3
## 19648 3
## 19649 3
## 19650 3
## 19651 3
## 19652 3
## 19653 3
## 19654 3
## 19655 3
## 19656 2
## 19657 3
## 19658 3
## 19659 3
## 19660 3
## 19661 3
## 19662 3
## 19663 3
## 19664 3
## 19665 3
## 19666 3
## 19667 3
## 19668 3
## 19669 3
## 19670 3
## 19671 3
## 19672 3
## 19673 3
## 19674 3
## 19675 3
## 19676 3
## 19677 3
## 19678 3
## 19679 3
## 19680 3
## 19681 3
## 19682 3
## 19683 3
## 19684 3
## 19685 3
## 19686 3
## 19687 3
## 19688 3
## 19689 3
## 19690 3
## 19691 3
## 19692 3
## 19693 3
## 19694 3
## 19695 3
## 19696 3
## 19697 3
## 19698 3
## 19699 2
## 19700 3
## 19701 1
## 19702 3
## 19703 3
## 19704 3
## 19705 3
## 19706 3
## 19707 3
## 19708 3
## 19709 3
## 19710 2
## 19711 3
## 19712 3
## 19713 3
## 19714 3
## 19715 3
## 19716 3
## 19717 3
## 19718 3
## 19719 3
## 19720 3
## 19721 3
## 19722 3
## 19723 3
## 19724 3
## 19725 3
## 19726 3
## 19727 3
## 19728 3
## 19729 3
## 19730 3
## 19731 3
## 19732 3
## 19733 3
## 19734 3
## 19735 3
## 19736 3
## 19737 3
## 19738 3
## 19739 3
## 19740 3
## 19741 3
## 19742 3
## 19743 3
## 19744 3
## 19745 3
## 19746 3
## 19747 3
## 19748 3
## 19749 3
## 19750 3
## 19751 3
## 19752 3
## 19753 3
## 19754 3
## 19755 3
## 19756 3
## 19757 3
## 19758 3
## 19759 3
## 19760 3
## 19761 3
## 19762 3
## 19763 3
## 19764 3
## 19765 3
## 19766 3
## 19767 3
## 19768 3
## 19769 3
## 19770 3
## 19771 3
## 19772 3
## 19773 3
## 19774 3
## 19775 3
## 19776 3
## 19777 3
## 19778 3
## 19779 3
## 19780 3
## 19781 3
## 19782 3
## 19783 3
## 19784 3
## 19785 2
## 19786 3
## 19787 3
## 19788 3
## 19789 3
## 19790 3
## 19791 3
## 19792 3
## 19793 3
## 19794 3
## 19795 3
## 19796 3
## 19797 3
## 19798 3
## 19799 3
## 19800 3
## 19801 3
## 19802 3
## 19803 3
## 19804 3
## 19805 3
## 19806 3
## 19807 3
## 19808 3
## 19809 3
## 19810 3
## 19811 3
## 19812 3
## 19813 3
## 19814 3
## 19815 3
## 19816 3
## 19817 3
## 19818 3
## 19819 3
## 19820 3
## 19821 2
## 19822 3
## 19823 3
## 19824 3
## 19825 3
## 19826 3
## 19827 3
## 19828 3
## 19829 3
## 19830 3
## 19831 3
## 19832 3
## 19833 3
## 19834 3
## 19835 3
## 19836 3
## 19837 3
## 19838 3
## 19839 3
## 19840 3
## 19841 3
## 19842 3
## 19843 3
## 19844 3
## 19845 3
## 19846 3
## 19847 3
## 19848 3
## 19849 3
## 19850 3
## 19851 3
## 19852 3
## 19853 3
## 19854 3
## 19855 3
## 19856 3
## 19857 3
## 19858 3
## 19859 3
## 19860 3
## 19861 3
## 19862 3
## 19863 3
## 19864 3
## 19865 3
## 19866 3
## 19867 3
## 19868 3
## 19869 3
## 19870 3
## 19871 3
## 19872 3
## 19873 3
## 19874 3
## 19875 3
## 19876 3
## 19877 3
## 19878 3
## 19879 3
## 19880 3
## 19881 3
## 19882 3
## 19883 3
## 19884 3
## 19885 3
## 19886 3
## 19887 3
## 19888 3
## 19889 3
## 19890 3
## 19891 3
## 19892 3
## 19893 3
## 19894 3
## 19895 3
## 19896 3
## 19897 3
## 19898 3
## 19899 3
## 19900 3
## 19901 1
## 19902 3
## 19903 3
## 19904 3
## 19905 3
## 19906 3
## 19907 3
## 19908 3
## 19909 3
## 19910 3
## 19911 3
## 19912 3
## 19913 3
## 19914 3
## 19915 3
## 19916 3
## 19917 3
## 19918 3
## 19919 3
## 19920 3
## 19921 3
## 19922 3
## 19923 1
## 19924 3
## 19925 3
## 19926 3
## 19927 3
## 19928 3
## 19929 3
## 19930 3
## 19931 3
## 19932 3
## 19933 3
## 19934 3
## 19935 3
## 19936 3
## 19937 3
## 19938 3
## 19939 3
## 19940 2
## 19941 3
## 19942 3
## 19943 3
## 19944 3
## 19945 3
## 19946 3
## 19947 3
## 19948 3
## 19949 3
## 19950 3
## 19951 3
## 19952 2
## 19953 3
## 19954 3
## 19955 3
## 19956 2
## 19957 3
## 19958 3
## 19959 3
## 19960 3
## 19961 1
## 19962 3
## 19963 3
## 19964 3
## 19965 3
## 19966 3
## 19967 3
## 19968 3
## 19969 3
## 19970 3
## 19971 3
## 19972 3
## 19973 3
## 19974 3
## 19975 3
## 19976 3
## 19977 3
## 19978 3
## 19979 3
## 19980 3
## 19981 3
## 19982 3
## 19983 3
## 19984 3
## 19985 3
## 19986 3
## 19987 3
## 19988 3
## 19989 3
## 19990 3
## 19991 3
## 19992 3
## 19993 2
## 19994 3
## 19995 3
## 19996 3
## 19997 3
## 19998 3
## 19999 3
## [ reached 'max' / getOption("max.print") -- omitted 546980 rows ]
money = h1b_18_filter %>%
select(prevailing_wage, pw_unit_of_pay)
summary(money)
## prevailing_wage pw_unit_of_pay
## Min. : 7.2 : 0
## 1st Qu.: 65728.0 Bi-Weekly: 29
## Median : 80974.0 Hour : 37594
## Mean : 81070.4 Month : 198
## 3rd Qu.: 97323.0 Week : 66
## Max. :456610.0 Year :529092